Discover/Gov API
live

Gov APIncvbdc.mohfw.gov.in

Access state-wise surveillance data for malaria, dengue, chikungunya, kala-azar, and Japanese encephalitis from India's NCVBDC via 11 structured endpoints.

Endpoint health
monitored
get_disease_page_info
get_guidelines
get_malaria_annual_report
get_je_cases_deaths_data
get_dengue_situation_data
0/11 passing latest checkself-healing
Endpoints
11
Updated
26d ago

What is the Gov API?

This API exposes 11 endpoints covering vector-borne disease surveillance, annual reports, clinical guidelines, and official announcements from India's National Center for Vector Borne Diseases Control (NCVBDC). Endpoints like get_dengue_situation_data return state-wise case and death counts across multiple years as parsed tabular arrays, while get_malaria_annual_report provides direct PDF download URLs for reports from 2010 through 2024.

Try it

No input parameters required.

api.parse.bot/scraper/37d0d916-b0be-48e7-a68b-3df8e39698c2/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/37d0d916-b0be-48e7-a68b-3df8e39698c2/get_malaria_situation_data' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ncvbdc-mohfw-gov-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
NCVBDC India Health Data API - Usage Example

Get your API key from: https://parse.bot/settings
"""
from parse_apis.ncvbdc_india_health_data_api import Ncvbdc, Disease, ReportYear

ncvbdc = Ncvbdc()

# Fetch malaria annual report for 2023
report = ncvbdc.annualreports.get(year=ReportYear.Y2023)
print(report.year, report.url, report.title)

# Get disease page info for dengue
dengue_info = ncvbdc.diseasepageinfos.get(disease=Disease.DENGUE)
print(dengue_info.disease)
for link in dengue_info.links:
    print(link.title, link.url)

# List current guidelines
for guideline in ncvbdc.guidelines.list():
    print(guideline.title, guideline.url)

# List current vacancies
for vacancy in ncvbdc.vacancies.list():
    print(vacancy.title, vacancy.url)

# Get malaria situation overview
situation = ncvbdc.malariasituations.get()
print(situation.url)
for doc in situation.tables:
    print(doc.title, doc.url)
All endpoints · 11 totalmissing one? ·

Fetches the malaria situation page and returns the main malaria situation PDF URL and a list of all available document links (annual reports, surveillance formats, advisories). Each link includes its title and direct URL.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "url": "string — URL of the main Malaria Situation PDF",
    "tables": "array of objects with title and url for each available document link"
  },
  "sample": {
    "data": {
      "url": "https://ncvbdc.mohfw.gov.in/WriteReadData/l892s/63490427831779435732.pdf",
      "tables": [
        {
          "url": "https://ncvbdc.mohfw.gov.in/WriteReadData/l892s/63490427831779435732.pdf",
          "title": "Malaria Situation in India From 2022"
        },
        {
          "url": "https://ncvbdc.mohfw.gov.in/WriteReadData/l892s/16576134161779435753.pdf",
          "title": "Monthly Epidemiological Situation (MES)"
        }
      ]
    },
    "status": "success"
  }
}

About the Gov API

Disease Surveillance Data

The core surveillance endpoints — get_dengue_situation_data, get_chikungunya_situation_data, get_kalaazar_situation_data, and get_je_cases_deaths_data — each return state-wise epidemiological data as nested arrays of table rows. Every row is an array of strings matching the columns on the source page, including header rows. The get_chikungunya_situation_data response distinguishes suspected from confirmed cases. The get_kalaazar_situation_data response covers Visceral Leishmaniasis (Kala-azar) cases and deaths across Indian states over multiple years. All four endpoints require no input parameters.

Malaria-Specific Endpoints

get_malaria_situation_data returns the URL of the main Malaria Situation PDF alongside a tables array listing all linked documents on that page with title and url fields. get_malaria_situation_file_url narrows this to just the current document's direct download URL and title string. For historical context, get_malaria_annual_report accepts a year parameter (2010–2024) and returns the corresponding PDF's direct download URL, the requested year, and the report title.

Disease Pages, Guidelines, and Administrative Data

get_disease_page_info accepts a disease parameter — one of malaria, dengue, filaria, kala_azar, japanese_encephalitis, or chikungunya — and returns all links found on that disease's NCVBDC page as an array of {title, url} objects. get_guidelines returns the same structure for clinical and operational guideline documents. get_news_and_highlights returns recent homepage announcements as {title, url} pairs. get_vacancies returns current job postings with a details array of strings per posting alongside title and URL.

Coverage Notes

All data reflects what NCVBDC publishes on its official site. Tabular surveillance data is returned as raw string arrays preserving the original table structure, so consumers are responsible for parsing column semantics. Document endpoints return direct PDF URLs but do not decode or extract content from within those PDFs.

Reliability & maintenance

The Gov API is a managed, monitored endpoint for ncvbdc.mohfw.gov.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ncvbdc.mohfw.gov.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ncvbdc.mohfw.gov.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Latest check
0/11 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a state-wise dengue outbreak tracker using annual case and death counts from get_dengue_situation_data
  • Monitor newly published NCVBDC guidelines by polling get_guidelines for updated document links
  • Automate downloads of malaria annual reports for a given year range using get_malaria_annual_report with the year parameter
  • Aggregate Japanese Encephalitis surveillance trends across Indian states from get_je_cases_deaths_data
  • Surface NCVBDC news and policy announcements in a public health dashboard via get_news_and_highlights
  • Track Kala-azar elimination progress by pulling multi-year state-wise data from get_kalaazar_situation_data
  • Consolidate all disease-specific document links for a research index using get_disease_page_info across all six supported diseases
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does NCVBDC provide an official developer API?+
No. NCVBDC (ncvbdc.mohfw.gov.in) does not publish a documented public API or developer program. This Parse API is the structured programmatic interface to that data.
What does `get_dengue_situation_data` return, and how is it structured?+
It returns a data field containing an array of arrays. Each inner array represents one row from the state-wise dengue table, with each cell as a string. The first inner array is the header row, so consumers should slice it off when iterating records. No filter parameters are supported — all available years and states are returned in a single call.
Does the API return data for all Indian states in every surveillance endpoint?+
Coverage depends on what NCVBDC publishes for each disease. Some diseases are endemic to specific states, and NCVBDC may only report data for states with confirmed cases. The API returns whatever rows appear in the source tables without filtering or imputing missing states.
Can I filter surveillance data by year or state within a single API call?+
Not currently. The surveillance endpoints (get_dengue_situation_data, get_chikungunya_situation_data, get_kalaazar_situation_data, get_je_cases_deaths_data) return all available rows without filter parameters. You can fork this API on Parse and revise it to add year or state filtering on the returned arrays.
Does the API extract text or structured data from within the PDF documents it links to?+
No. Endpoints like get_malaria_annual_report and get_malaria_situation_file_url return direct PDF download URLs and titles only. PDF content is not parsed or extracted. You can fork this API on Parse and revise it to add a PDF-parsing step for specific documents.
Page content last updated . Spec covers 11 endpoints from ncvbdc.mohfw.gov.in.
Related APIs in Government PublicSee all →
cabi.org API
Search and retrieve detailed information about plant diseases from the CABI Digital Library, including disease characteristics, symptoms, and management strategies. Find specific disease data by name or browse the comprehensive Compendium to identify and understand plant health issues.
ncbi.nlm.nih.gov API
Search and retrieve biomedical literature from NCBI databases including PubMed, PubMed Central, and MeSH. Supports full-text extraction, metadata lookup, and research filtering.
esankhyiki.mospi.gov.in API
Access India's official macroeconomic statistics including RBI indicators, National Accounts data, and labor force surveys directly from the government's statistical database. Browse dashboards, infographics, and detailed metadata to explore economic trends, employment figures, and key financial indicators.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
plantvillage.psu.edu API
Search for crops, diseases, and pests to access detailed agricultural knowledge including treatments, management strategies, and educational content like blog posts and videos. Get comprehensive plant health information with images and disease identification to help diagnose and manage crop problems.
nirfindia.org API
Access India's NIRF rankings across multiple years and categories to compare higher education institution scores, find participating colleges, and search for specific institutions by name. Get detailed ranking parameters and stay updated with the latest notifications about institutional performance and rankings.
upag.gov.in API
Access comprehensive agricultural data including crop production estimates, minimum support prices (MSP), crop yield trends, and planting calendars for both domestic and international markets. Search through agricultural reports and statistics to track commodity prices, production forecasts, and seasonal crop information.
egazette.nic.in API
Access official Indian gazette publications including recent Extraordinary and Weekly gazettes, browse them by category, and explore the complete directory of available documents. Quickly find and retrieve the latest government publications all in one place.
NCVBDC India Vector Disease Data API · Parse