Discover/tenders.gov.in API
live

tenders.gov.in APItenders.gov.in

Access Indian government tenders, procurement portals, and organisation-level tender data from tenders.gov.in via a structured JSON API.

Endpoints
5
Updated
10d ago
Try it

No input parameters required.

api.parse.bot/scraper/7872876e-38ee-4bfe-973a-91a4a4c5a7cf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7872876e-38ee-4bfe-973a-91a4a4c5a7cf/get_portals' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Fetch metadata for all government procurement (GePNIC) portals including Central, State, CPSEs, eAuction, ePublish, and GePNIC categories. Returns structured JSON with portal URLs and descriptions.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "CPSEs": "array of CPSE portal objects with webUrl, webDesc, webCode",
    "GePNIC": "array of GePNIC portal objects",
    "States": "array of state government portal objects with webUrl, webDesc, webCode",
    "Central": "array of central government portal objects with webUrl, webDesc, webCode",
    "eAuction": "array of eAuction portal objects",
    "ePublish": "array of ePublish portal objects"
  },
  "sample": {
    "data": {
      "CPSEs": [
        {
          "webUrl": "https://etenders.gov.in/eprocure/app",
          "webCode": "etenders for Central PSUs",
          "webDesc": "etenders for Central PSUs"
        }
      ],
      "GePNIC": [
        {
          "webUrl": "https://gepnic.gov.in/",
          "webCode": "Government eProcurement System of NIC-GePNIC",
          "webDesc": "Government eProcurement System of NIC-GePNIC"
        }
      ],
      "States": [
        {
          "webUrl": "https://assamtenders.gov.in/nicgep/app",
          "webCode": "Assam",
          "webDesc": "Assam"
        }
      ],
      "Central": [
        {
          "webUrl": "https://eprocure.gov.in/eprocure/app",
          "webCode": "eProcure for Central Govt. Organisations",
          "webDesc": "eProcure for Central Govt. Organisations"
        }
      ],
      "eAuction": [
        {
          "webUrl": "https://eauction.gov.in/eAuction/app",
          "webCode": "eAuction",
          "webDesc": "eAuction"
        }
      ],
      "ePublish": [
        {
          "webUrl": "https://eprocure.gov.in/epublish/app",
          "webCode": "ePublish",
          "webDesc": "ePublish"
        }
      ]
    },
    "status": "success"
  }
}

About the tenders.gov.in API

This API exposes 5 endpoints covering India's Central Public Procurement Portal (CPPP) and GePNIC ecosystem, returning tender listings, organisation-level tender counts, portal metadata, and full tender details. Use get_latest_tenders to pull the 10 most recently published tenders — including title, reference number, closing date, and bid opening date — or use get_tenders_by_organisation to filter active tenders by any government organisation name.

Portal and Organisation Data

The get_portals endpoint returns structured metadata for every government procurement portal in the GePNIC network, broken into six categories: Central, States, CPSEs, eAuction, ePublish, and GePNIC. Each portal object carries a webUrl, webDesc, and webCode, giving you a machine-readable directory of all participating procurement systems. The get_organisations endpoint complements this by listing every organisation currently publishing active tenders, along with a tender_count per organisation.

Tender Listings and Filtering

The get_latest_tenders endpoint returns up to 10 tenders from the eProcure homepage, each with title, reference_no, closing_date, and bid_opening_date. For targeted retrieval, get_tenders_by_organisation accepts an organisation_name string (partial, case-insensitive) and scans up to 3 pages (30 tenders) of active CPPP listings, returning matching tenders with published_date, closing_date, opening_date, title, and organisation, along with a pages_scanned count.

Tender Detail Retrieval

The get_tender_detail endpoint resolves full tender details using one of two input modes. Pass tender_index (1-based) to select from the latest tenders or from a specific organisation's results by also supplying organisation_name. Alternatively, pass a sp token obtained through session chaining from a listing endpoint for direct detail access. The response contains a details object with the full tender record.

Coverage Notes

All data reflects what is currently published on the public-facing CPPP portal. The organisation filter scans at most 30 tenders (3 pages), so organisations with large tender volumes may not be fully represented in a single call. There is no date-range filtering or keyword search across endpoints in the current version.

Common use cases
  • Monitor newly published government tenders daily using get_latest_tenders and alert procurement teams when relevant opportunities appear.
  • Build an organisation-specific tender tracker by calling get_tenders_by_organisation with a ministry or department name and logging closing_date values.
  • Enumerate all GePNIC state and CPSE portal URLs from get_portals to build a procurement portal directory.
  • Compare tender_count values across organisations from get_organisations to identify which departments are most actively procuring.
  • Retrieve full tender specifications via get_tender_detail using a tender_index from a prior listing call to automate bid-eligibility screening.
  • Track opening dates (bid_opening_date) from get_latest_tenders to schedule participation in upcoming government bid openings.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 tenders.gov.in have an official developer API?+
No. The Indian government eProcurement portal (eprocure.gov.in / tenders.gov.in) does not publish a public developer API or documented data feed. This Parse API provides structured programmatic access to the data available on those portals.
How does `get_tenders_by_organisation` handle partial name matching, and what is the coverage limit?+
The endpoint performs a case-insensitive partial match against the Organisation Name field in active CPPP listings. It scans up to 3 pages (30 tenders total). Organisations with a large number of active tenders may have results beyond page 3 that are not returned. The pages_scanned field in the response tells you how many pages were actually checked.
Can I search for tenders by keyword, category, or tender value?+
Not currently. The API filters tenders by organisation name only; keyword search, category/NIC code filtering, and tender value ranges are not exposed. You can fork this API on Parse and revise it to add an endpoint covering those filters.
Does the API return tenders from state-level portals, or only the central CPPP portal?+
The get_latest_tenders and get_tenders_by_organisation endpoints cover the central CPPP portal listings. The get_portals endpoint returns URLs and metadata for state and CPSE portals but does not fetch tender listings from those portals. You can fork this API on Parse and revise it to add tender-listing endpoints for specific state portals.
How current is the tender data?+
The data reflects what is live on the public CPPP portal at the time of the request. There is no caching layer within the API itself, so responses represent the portal's current published state. Tenders that have closed or been withdrawn on the portal will not appear in active listing responses.
Page content last updated . Spec covers 5 endpoints from tenders.gov.in.
Related APIs in Government PublicSee all →
identify.plantnet.org API
Identify and explore plant species by searching through Pl@ntNet's comprehensive botanical database to access detailed information like taxonomic families, genera, species descriptions, photos, and community observations. Track plant distributions, view contribution trends, and discover expert contributors within the platform's collaborative plant identification community.
data.lime.bike API
Access real-time availability data for Lime bikes and scooters, including station locations, vehicle status, system alerts, and geofencing zones across multiple cities. Monitor micromobility inventory and service information to find nearby vehicles or plan your trips effectively.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
api.nasa.gov API
Access NASA's suite of open data APIs — including the Astronomy Picture of the Day, Near Earth Object tracking, DONKI space weather events, EPIC Earth imagery, Mars weather, the NASA Image and Video Library, the Exoplanet Archive, and EONET natural events.
mahatenders.gov.in API
Access Maharashtra government tenders from mahatenders.gov.in, browsing them by closing date or by organization with full tender details and pagination support. Find and review procurement opportunities across different government departments in one place.