Discover/mahatenders.gov.in API
live

mahatenders.gov.in APImahatenders.gov.in

Access Maharashtra government tender listings, full tender details, and organisation-wise browsing from mahatenders.gov.in via a structured JSON API.

Endpoints
4
Updated
10d ago
Try it
Page number for pagination (10 tenders per page)
api.parse.bot/scraper/abb87e50-3d46-43a2-a900-2c9ec9928084/<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/abb87e50-3d46-43a2-a900-2c9ec9928084/list_tenders_by_closing_date?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

List tenders closing within 7 days from the Maharashtra eProcurement System. Returns tenders sorted by closing date with pagination support (10 tenders per page).

Input
ParamTypeDescription
pageintegerPage number for pagination (10 tenders per page)
Response
{
  "type": "object",
  "fields": {
    "page": "integer - Current page number",
    "tenders": "array - List of tender objects with serial_no, e_published_date, bid_submission_closing_date, tender_opening_date, title, reference_number, tender_id, detail_url, organisation_chain",
    "page_title": "string - Page header (e.g., 'Tenders/Auctions Closing within 7 Days')",
    "total_pages": "integer - Total available pages",
    "tender_count": "integer - Number of tenders on current page"
  },
  "sample": {
    "data": {
      "page": 1,
      "tenders": [
        {
          "title": "[SAHITYA PURAVATHA KARANE ]",
          "serial_no": "1.",
          "tender_id": "2026_AHMED_1273061_3",
          "detail_url": "https://mahatenders.gov.in/nicgep/app?component=%24DirectLink&page=FrontEndListTendersbyDate&service=direct&session=T&sp=SqVYIB6Qdbv0aOd7M5qzBhQ%3D%3D",
          "e_published_date": "05-May-2026 09:00 AM",
          "reference_number": "GP RUI CHHATARAPATI 2026/27/1",
          "organisation_chain": "RDD-CEO-AHMEDNAGAR||AHMEDNAGAR-Dy. CEO V.P.||PARNER||RUI CHHATRAPATI",
          "tender_opening_date": "09-May-2026 09:00 AM",
          "bid_submission_closing_date": "08-May-2026 09:00 AM"
        }
      ],
      "page_title": "Tenders/Auctions Closing within 7 Days",
      "total_pages": 241,
      "tender_count": 10
    },
    "status": "success"
  }
}

About the mahatenders.gov.in API

This API exposes 4 endpoints covering the Maharashtra eProcurement System (mahatenders.gov.in), giving structured access to active government tenders, their full detail records, and organisation-level browsing. The list_tenders_by_closing_date endpoint returns paginated tender listings — 10 per page — with fields including bid_submission_closing_date, tender_opening_date, title, and reference_no for tenders closing within 7 days.

Tender Listings and Pagination

The list_tenders_by_closing_date endpoint retrieves tenders sorted by upcoming closing date from the Maharashtra eProcurement portal. Each page returns up to 10 tender objects with fields such as serial_no, e_published_date, bid_submission_closing_date, tender_opening_date, and title. The response also includes total_pages and tender_count so you can walk through all available results with the page parameter.

Full Tender Details

The get_tender_detail endpoint accepts a tender_url from the detail_url field returned by the listing endpoint. It returns a detailed record covering tender_id, tender_type, location, pincode, emd_amount_in, no_of_covers, covers, nit_documents, corrigendums, and critical dates. Note that session tokens embedded in tender URLs can expire; when an expired URL is passed, the endpoint falls back to returning the first currently available tender detail.

Organisation Browsing

The list_organisations endpoint returns all government bodies currently active on the platform, with each entry including organisation_name, tender_count, and a tender_list_url. That URL feeds directly into list_tenders_by_organisation, which retrieves all tenders for that specific organisation — useful when tracking procurement activity from a particular department such as a municipal corporation or public works body. Expired session tokens in org_url values are handled automatically by establishing a fresh session.

Coverage Scope

All four endpoints cover only the Maharashtra state eProcurement portal. Tenders are limited to those currently active or closing within 7 days depending on the endpoint used. Historical, archived, or awarded tender data is not part of the current response shapes.

Common use cases
  • Monitor tenders closing within 7 days for a procurement team's daily digest, using bid_submission_closing_date to prioritise bids.
  • Track tender activity from a specific government department by pairing list_organisations with list_tenders_by_organisation.
  • Pull EMD amount and document list from get_tender_detail to pre-fill a bid preparation checklist.
  • Aggregate tender_count per organisation to analyse which departments are most active in Maharashtra procurement.
  • Index nit_documents and corrigendums arrays from tender detail records into an internal document management system.
  • Alert users when new tenders appear for a target organisation by diffing tender_count between polling intervals.
  • Build a filtered dashboard of open tenders by location or pincode fields returned in the detail endpoint.
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 mahatenders.gov.in offer an official developer API?+
No. The Maharashtra eProcurement System does not publish a public developer API or documented data feed for programmatic access.
What does `get_tender_detail` return beyond what the listing endpoints show?+
The detail endpoint adds fields not present in listing responses: tender_id, tender_type, pincode, location, emd_amount_in, no_of_covers, the covers array, nit_documents array, and corrigendums array. Listing endpoints return only summary fields like title, e_published_date, and bid_submission_closing_date.
Does `list_tenders_by_closing_date` return tenders beyond the next 7 days?+
No. This endpoint is scoped to tenders closing within 7 days from the current date, matching the platform's own 'Closing within 7 Days' view. You can fork this API on Parse and revise it to target a different date range or the platform's 'New Tenders' listing if you need broader temporal coverage.
Are awarded, archived, or historical tenders accessible?+
Not currently. The API covers active tenders — those closing within 7 days or currently listed by organisation. Historical results, awarded contract data, and archived tenders are not part of any endpoint's response. You can fork it on Parse and revise to add an endpoint targeting archived or awarded tender sections of the portal.
What happens if a `tender_url` or `org_url` contains an expired session token?+
For get_tender_detail, passing an expired URL causes the endpoint to fall back to the first currently available tender detail. For list_tenders_by_organisation, an expired org_url triggers a fresh session that navigates to the correct organisation's tenders automatically — the org_url value must still identify the correct organisation.
Page content last updated . Spec covers 4 endpoints from mahatenders.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.
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.
Mahatenders.gov.in API – Maharashtra Tenders · Parse