Overview
Enigma Public is a platform that aggregates a broad collection of public datasets from government and other sources into a single searchable API. You need an API key to access its data catalog and query individual datasets. It is useful for researchers, journalists, and developers who need structured access to public records.
Beginner Tip
Start by browsing the Enigma data catalog on their website to find a dataset ID, then use that ID in your API request to pull the actual data rows.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Enigma Public",
"description": "Broadest collection of public data",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
datapath Unique path identifier for the dataset. info Metadata about the dataset including title and description. result Container for the query results. result.rows Array of data row objects from the dataset. result.total_results Total number of rows available in the dataset. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://developers.enigma.com/docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Black History Facts
⭐ Beginner's PickThe Black History Facts API gives you access to one of the largest databases of Black history facts on the web.
CARTO
CARTO is a geospatial platform API that provides location intelligence and data analysis tools for mapping and prediction.
Joshua Project
The Joshua Project API provides data on people groups around the world, focusing on those with the fewest followers of Christ for missionary research purposes.
Kaggle
Kaggle provides programmatic access to create and interact with datasets, notebooks, and connect with kaggle via REST API.
LinkPreview
⭐ Beginner's PickLinkPreview is an API that fetches a summary of any URL including its title, description, and preview image in JSON format.