Open Government, India API
Overview
The Open Government India API (data.gov.in) provides access to thousands of datasets published by Indian government ministries and departments, covering agriculture, health, education, finance, and more. You need a free API key to make requests — sign up at https://data.gov.in/ to get started. It is one of the largest open government data platforms in Asia and a great resource for data-driven projects about India.
Beginner Tip
Get your free API key from your data.gov.in account dashboard, then include it as api-key=YOUR_API_KEY in the query string. Use the resource_id parameter with a dataset ID from the portal to fetch specific data.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Open Government, India",
"description": "Indian Government Open Data",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
status Request status, typically ok when successful total Total number of records available in the dataset count Number of records returned in this response records Array of data records from the requested dataset fields Metadata describing each field name and type in the records Implementation Example
const url = "https://data.gov.in/";
// 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 →City, Nantes Open Data
City, Nantes Open Data gives developers access to datasets published by Nantes Métropole in France, covering transport, environment, and urban planning.
Code.gov
Code.gov is the U.S.
Data.gov
⭐ Beginner's PickData.gov is the central repository for open data published by U.S.
Deutscher Bundestag DIP
Deutscher Bundestag DIP (Dokumentations- und Informationssystem) provides read access to official German Bundestag data including parliamentary activities, printed materials, persons, and procedures.
FEC
⭐ Beginner's PickThe FEC (Federal Election Commission) API lets you explore campaign finance data from US federal elections, including donations, candidate financials, and committee information.