Overview
The GENESIS API provides access to official statistical data from the Federal Statistical Office of Germany (Destatis). It uses OAuth authentication and returns data such as population, economy, and environment statistics. It is valuable for researchers and developers building data-driven applications focused on Germany.
Beginner Tip
Register for a free account at destatis.de to receive OAuth credentials. Use the /data/tablefile endpoint to download a specific table by its code, which you can find in the GENESIS online database.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from GENESIS",
"description": "Federal Statistical Office Germany",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
Status Contains the status code and description indicating whether the request succeeded. Parameter Echoes back the parameters used in the request for confirmation. Object Metadata about the returned dataset including name and label. Data Array of data rows from the requested statistical table. Header Column headers describing each field in the data rows. Implementation Example
const url = "https://www.destatis.de/EN/Service/OpenData/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer 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 →Socrata
Socrata is a powerful open data platform that gives you access to thousands of government and civic datasets from around the world.
Wikidata
Wikidata is a free, collaboratively edited knowledge base maintained by the Wikimedia Foundation that stores structured data behind Wikipedia and other Wikimedia projects.
Yelp
Yelp provides programmatic access to find local business via REST API.
18F
18F provides programmatic access to unofficial us federal government api development via REST API.
API Setu
API Setu is an Indian Government platform that aggregates a wide variety of official APIs covering KYC verification, business registration, education records, and employment data.