Discover/Gov API
live

Gov APImyscheme.gov.in

Search and retrieve Indian government schemes by state, category, gender, and keyword. Access eligibility, benefits, documents, and application process data.

This API takes change requests — .
Endpoint health
verified 35m ago
search_schemes
get_scheme_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
1h ago

What is the Gov API?

The myScheme API provides access to the full catalogue of Indian government welfare schemes indexed on myscheme.gov.in, covering both Central and State-level programs. Two endpoints — search_schemes and get_scheme_details — let you filter schemes by state, category, gender, and keyword, then retrieve per-scheme detail records with up to 12 structured fields including eligibility criteria, required documents, benefits, and official references.

This call costs1 credit / call— charged only on success
Try it
Pagination offset (0-based). Combined with size to paginate through results.
Number of results per page. Maximum 100.
Sort order for results. Omitting returns results sorted by relevance.
Filter by scheme level.
Filter by beneficiary state/UT name (e.g. 'Gujarat', 'Tamil Nadu', 'Delhi'). Must match the state label exactly as used on the portal.
Filter by target gender (e.g. 'Female', 'Male', 'Transgender', 'All').
Free-text search keyword to filter schemes by name or description.
Filter by scheme category (e.g. 'Education & Learning', 'Health & Wellness'). Must match the category label exactly as used on the portal.
api.parse.bot/scraper/ea63c144-307a-4da3-b08c-025ec998afd3/<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/ea63c144-307a-4da3-b08c-025ec998afd3/search_schemes?sort=schemename-asc&level=Central&keyword=scholarship' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Search and list government schemes with optional filters and keyword search. Returns paginated results sorted by relevance or scheme name. Each result includes the scheme slug which can be used with get_scheme_details for full information. Pagination is controlled via from (offset) and size parameters.

Input
ParamTypeDescription
fromintegerPagination offset (0-based). Combined with size to paginate through results.
sizeintegerNumber of results per page. Maximum 100.
sortstringSort order for results. Omitting returns results sorted by relevance.
levelstringFilter by scheme level.
statestringFilter by beneficiary state/UT name (e.g. 'Gujarat', 'Tamil Nadu', 'Delhi'). Must match the state label exactly as used on the portal.
genderstringFilter by target gender (e.g. 'Female', 'Male', 'Transgender', 'All').
keywordstringFree-text search keyword to filter schemes by name or description.
categorystringFilter by scheme category (e.g. 'Education & Learning', 'Health & Wellness'). Must match the category label exactly as used on the portal.
Response
{
  "type": "object",
  "fields": {
    "from": "current offset",
    "size": "page size used",
    "total": "total number of matching schemes",
    "schemes": "array of scheme summary objects with id, slug, scheme_name, short_title, level, ministry, categories, tags, brief_description, beneficiary_states, and scheme_close_date",
    "page_number": "current page number (0-based)",
    "total_pages": "total number of pages"
  },
  "sample": {
    "data": {
      "from": 0,
      "size": 5,
      "total": 4772,
      "schemes": [
        {
          "id": "LBezF5gB5uF80_MGGY81",
          "slug": "sui",
          "tags": [
            "Loan",
            "Entrepreneur",
            "Finance",
            "Business"
          ],
          "level": "Central",
          "ministry": "Ministry Of Finance",
          "categories": [
            "Business & Entrepreneurship",
            "Banking,Financial Services and Insurance",
            "Social welfare & Empowerment"
          ],
          "scheme_name": "Stand-Up India",
          "short_title": "SUPI",
          "brief_description": "A scheme by Ministry of Finance for financing SC/ST and Women Entrepreneurs by facilitating bank loans for setting up a greenfield project Enterprise in manufacturing, services, trading sector and activities allied to agriculture.",
          "scheme_close_date": "2025-03-31",
          "beneficiary_states": [
            "All"
          ]
        }
      ],
      "page_number": 0,
      "total_pages": 955
    },
    "status": "success"
  }
}

About the Gov API

Search and Filter Schemes

The search_schemes endpoint accepts up to eight optional parameters to narrow results. Use state to filter by a specific Indian state or UT (e.g. 'Gujarat', 'Tamil Nadu'), category for thematic groupings like 'Education & Learning' or 'Health & Wellness', gender for beneficiary gender targeting, and keyword for free-text matching against scheme names and descriptions. The level parameter distinguishes Central from State schemes. Pagination is controlled through from (0-based offset) and size (up to 100 per page). The response includes total, total_pages, and a schemes array — each entry carrying the scheme's slug, scheme_name, ministry, categories, tags, and brief_description.

Full Scheme Details

get_scheme_details accepts a slug obtained from search_schemes results and returns a complete scheme record. Key response fields include eligibility (eligibility criteria in markdown), benefits (benefit details in markdown), department (nodal department name), ministry, references (array of objects with title and url), categories, tags, and level. This is where the operational detail lives — document checklists, application process steps, and timeline dates are bundled into this response.

Coverage and Data Shape

The source is the official myScheme portal maintained by the Government of India. Scheme records span agriculture, education, health, social welfare, financial assistance, and more. Both Central government schemes and state-specific schemes are represented. The state and category filters require exact label matching as used on the portal — check search_schemes results for canonical label spellings before building filter queries.

Reliability & maintenanceVerified

The Gov API is a managed, monitored endpoint for myscheme.gov.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when myscheme.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 myscheme.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.

Last verified
35m ago
Latest check
2/2 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 scheme eligibility checker that filters by state, gender, and category for citizen-facing apps
  • Aggregate and compare benefits across Central and State health schemes using the benefits markdown field
  • Populate a document preparation tool using the documents-required data returned by get_scheme_details
  • Index government schemes into a search engine with keyword, category, and level facets from search_schemes
  • Generate state-wise scheme reports by iterating search_schemes with a fixed state parameter
  • Surface relevant schemes in a financial advisory or NGO portal based on beneficiary gender and category filters
  • Track scheme references and official URLs using the references array in get_scheme_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does myscheme.gov.in have an official developer API?+
myScheme does not publish a documented public developer API. This Parse API provides structured programmatic access to the scheme data available on the portal.
What does `search_schemes` return for each scheme in the results array?+
Each entry in the schemes array includes the scheme's id, slug, scheme_name, short_title, level (Central or State), ministry, categories, tags, and brief_description. The slug field is what you pass to get_scheme_details to retrieve full information.
How does pagination work in `search_schemes`?+
Pagination uses an offset model. The from parameter sets the 0-based starting index and size controls how many results to return (maximum 100). The response includes total, page_number, and total_pages so you can iterate through the full result set.
Does the API return application deadlines or scheme status (active vs. closed)?+
get_scheme_details includes timeline date fields, but the API does not currently expose a dedicated active/inactive status filter or deadline-based search parameter. You can fork this API on Parse and revise it to add a status or date-range filtering endpoint.
Can I retrieve the list of all available categories or states to use as filter values?+
There is no dedicated endpoint that enumerates valid category labels or state names. The state and category parameters in search_schemes require exact label matching. You can infer valid values from the categories and beneficiary state fields returned in existing search results, or fork the API on Parse to add an enumeration endpoint.
Page content last updated . Spec covers 2 endpoints from myscheme.gov.in.
Related APIs in Government PublicSee all →
kys.udiseplus.gov.in API
Search for schools across India by geographic region and management type, then access detailed information about any school including academic performance, facilities, and enrollment data. Navigate through states, districts, and blocks to find schools that match your criteria and compare their profiles.
csr.gov.in API
Search and analyze India's corporate social responsibility initiatives by accessing company CSR spending, project details, and financial contributions broken down by state, sector, and year. Track top CSR performers, compare spending amounts across companies, and explore how businesses are investing in social causes nationwide.
sarkariresult.com.cm API
Get instant access to Indian government exam notifications, results, admit cards, and job postings all in one place. Stay updated on the latest Sarkari opportunities without manually checking multiple websites.
indiacode.nic.in API
Search and retrieve Indian legislation from indiacode.nic.in. Browse Central and State Acts, look up individual sections, and extract fully structured act content by keyword or handle ID.
indiankanoon.org API
Search and access Indian court judgments, laws, and tribunal decisions to find relevant legal documents and case law. Browse legal documents by court, year, and month, or get real-time suggestions and recent rulings to support your legal research.
simpler.grants.gov API
Search and discover federal funding opportunities available through Grants.gov, then retrieve detailed information about grants, loans, and other financial assistance programs that match your needs. Access comprehensive opportunity details including eligibility requirements, funding amounts, and application deadlines all in one place.
tenders.gov.in API
Search and monitor current government tenders from India's Central Public Procurement Portal and GePNIC systems, filtering by organizations and accessing detailed tender information. Stay updated on the latest procurement opportunities and bids from Indian government agencies in one centralized location.
scholarshipportal.com API
Search and discover scholarships, degree programmes, and universities across StudyPortals' global education database, with the ability to filter by countries, disciplines, and other criteria. Get detailed information about specific scholarships and programmes to compare educational opportunities that match your academic interests.