Discover/Biddingo API
live

Biddingo APIbiddingo.com

Search and retrieve government procurement bids and RFPs from Biddingo. Filter by region, category, and status. Access full tender details via 4 endpoints.

Endpoint health
verified 23h ago
get_regions
get_bid_detail
get_categories
search_bids
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Biddingo API?

The Biddingo API exposes 4 endpoints for searching and retrieving government procurement solicitations across Canada and beyond. Use search_bids to query active tenders by keyword, region, category, or closing date, and get_bid_detail to pull the full tender record — including HTML description, contract type, category codes, and closing date — for any result returned by the search.

Try it
Sort order as field:direction. Accepted values: 'postedDate:desc', 'postedDate:asc', 'closingDate:desc', 'closingDate:asc'.
Number of results per page.
Search keyword or solicitation number to match against bid titles and descriptions.
Bid status ID. '1' for Open for Bidding.
Comma-separated list of region IDs to filter by (IDs from get_regions endpoint, e.g. '1' for Eastern Canada, '3' for Western Canada).
Page number to retrieve (1-based).
Comma-separated list of category IDs to filter by (IDs from get_categories endpoint).
api.parse.bot/scraper/809ca7d5-a675-42ba-b064-66b1287e9bd5/<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/809ca7d5-a675-42ba-b064-66b1287e9bd5/search_bids?sort=postedDate%3Adesc&limit=10&statuses=1&page_number=1' \
  -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 biddingo-com-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.

"""Walkthrough: Biddingo SDK — search government procurement bids, filter by region/category, drill into details."""
from parse_apis.biddingo_api import Biddingo, Sort, BidNotFound

client = Biddingo()

# List available regions for filtering
regions = client.regions.list(limit=5)
for region in regions:
    print(region.region_name, region.country)

# Search open bids sorted by newest posted date
bid = client.bidsummaries.search(sort=Sort.POSTED_DATE_DESC, limit=1).first()
if bid:
    print(bid.tender_name, bid.buyer_name, bid.days_left)

    # Drill into full details via the summary→detail navigation
    try:
        detail = bid.details()
        print(detail.tender_number, detail.contract_type, detail.bid_status)
        for cat in detail.category_list:
            print(cat.category_name, cat.category_code)
    except BidNotFound as exc:
        print(f"Bid not found: {exc}")

# List categories available for filtering
for cat in client.categories.list(limit=5):
    print(cat.category_name, cat.category_id)

print("exercised: regions.list / bidsummaries.search / bid.details / categories.list")
All endpoints · 4 totalmissing one? ·

Search for active bid/RFP solicitations with various filters. Returns paginated results sorted by the specified field. Each result contains summary information; use get_bid_detail for the full description. Paginates via integer page counter.

Input
ParamTypeDescription
sortstringSort order as field:direction. Accepted values: 'postedDate:desc', 'postedDate:asc', 'closingDate:desc', 'closingDate:asc'.
limitintegerNumber of results per page.
keywordstringSearch keyword or solicitation number to match against bid titles and descriptions.
statusesstringBid status ID. '1' for Open for Bidding.
region_idsstringComma-separated list of region IDs to filter by (IDs from get_regions endpoint, e.g. '1' for Eastern Canada, '3' for Western Canada).
page_numberintegerPage number to retrieve (1-based).
category_idsstringComma-separated list of category IDs to filter by (IDs from get_categories endpoint).
Response
{
  "type": "object",
  "fields": {
    "bidCount": "integer total number of matching bids",
    "bidInfoList": "array of bid summary objects with fields like tenderName, tenderNumber, buyerName, bidStatus, publishedDate, buyerOrgId, biddingoTenderId, buyerSysId, tenderClosingDate, regionName, daysleft"
  },
  "sample": {
    "data": {
      "bidCount": 3816,
      "bidInfoList": [
        {
          "daysleft": 18,
          "regionId": 1,
          "bidStatus": "Open for Bidding",
          "buyerName": "Mohawk Medbuy",
          "buyerOrgId": 41030408,
          "buyerSysId": 1,
          "regionName": "Eastern Canada",
          "tenderName": "MILR IMMUNOHISTOCHEMISTRY (IHC) EQUIPMENT AND SOLUTIONS 2026 - RFEOI - LHSC",
          "contractType": "2",
          "tenderNumber": "CW29709",
          "publishedDate": "06/10/2026",
          "biddingoTenderId": 41511528,
          "tenderClosingDate": "2026-06-29 14:00:00.0"
        }
      ],
      "regionCountMap": {}
    },
    "status": "success"
  }
}

About the Biddingo API

What the API Covers

Biddingo aggregates government procurement opportunities — bids, RFPs, and tenders — from public-sector buyers. The API surfaces this data across four endpoints: search_bids, get_bid_detail, get_regions, and get_categories. Search results include summary fields such as tenderName, tenderNumber, buyerName, bidStatus, publishedDate, buyerOrgId, and biddingoTenderId. These last two IDs are required inputs for get_bid_detail.

Searching and Filtering Bids

search_bids accepts a keyword parameter matched against titles and descriptions, a statuses field (use '1' for open solicitations), region_ids for geographic filtering, and category_ids for procurement category filtering. Results are paginated via page_number (1-based) with a configurable limit, and can be sorted by postedDate or closingDate in either direction. The response includes a bidCount total alongside the bidInfoList array.

Bid Details and Reference Lists

get_bid_detail returns the full tender record: tenderName, tenderNumber, buyerName, bidStatus, contractType, tenderClosingDate, a categoryList array with categoryId, categoryName, and categoryCode, and a detailPreview field containing the HTML bid description. To build valid filter parameters, use get_regions (returns masterRegionInfoList with regionId, regionName, and country) and get_categories (returns parentCategoryList and a masterChildCategoryListMap keyed by parent category code with full subcategory objects).

Reliability & maintenanceVerified

The Biddingo API is a managed, monitored endpoint for biddingo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when biddingo.com 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 biddingo.com 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
23h ago
Latest check
4/4 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
  • Monitor newly posted government tenders in specific Canadian regions using region_ids and postedDate:desc sort.
  • Build a bid-matching tool that queries search_bids by keyword and maps results to internal product or service categories.
  • Track closing deadlines by sorting on closingDate:asc and alerting when tenderClosingDate falls within a threshold.
  • Enrich a CRM with buyer organization data by extracting buyerName and buyerOrgId from search results.
  • Index full tender descriptions from detailPreview to power full-text search across active solicitations.
  • Filter procurement opportunities by UNSPSC or similar category codes retrieved from get_categories subcategory objects.
  • Generate competitive intelligence reports by aggregating contractType and categoryList fields across matching tenders.
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 Biddingo have an official developer API?+
Biddingo does not publish a documented public developer API. The data available through biddingo.com is not offered as a self-serve developer product.
What does `get_bid_detail` return beyond the search summary?+
get_bid_detail adds fields not present in search_bids results: a detailPreview HTML string with the full bid description, a categoryList array with categoryId, categoryName, and categoryCode entries, contractType, and the precise tenderClosingDate. You need buyerOrgId and biddingoTenderId from a prior search_bids call to invoke it.
Can I retrieve historical or awarded bids, not just open ones?+
The statuses parameter in search_bids accepts a bid status ID, but the documented value is '1' for Open for Bidding. Closed or awarded bid history is not currently surfaced by the API. You can fork this API on Parse and revise it to target other status IDs if Biddingo exposes them.
Does the API cover bids from US states or other non-Canadian regions?+
Region coverage is determined by the masterRegionInfoList returned from get_regions, which includes a country field per region. The primary focus of Biddingo is Canadian procurement. You can fork this API on Parse and revise it to filter or extend coverage if additional regions appear in the regions list.
Are vendor registration or document download links included in bid details?+
The get_bid_detail response does not include vendor registration URLs or attached procurement documents — it covers structured fields and the HTML detailPreview description. You can fork this API on Parse and revise it to add an endpoint that retrieves document attachment metadata if that data is accessible on the bid page.
Page content last updated . Spec covers 4 endpoints from biddingo.com.
Related APIs in Government PublicSee all →
civicinfo.bc.ca API
Search open bid opportunities and tenders from BC municipalities, with details including title, closing date, organization, category, and location.
merx.com API
Search and monitor Canadian government tenders, RFPs, and contract opportunities on Merx, with the ability to filter by category and view detailed solicitation information for both open and closed opportunities. Find procurement projects that match your business needs and track their status through comprehensive tender data.
projects.worldbank.org API
Search World Bank projects and procurement opportunities across all sectors and regions to find funding information and active tenders. Retrieve detailed project information, funding breakdowns, and procurement notices.
bdtender.com API
Search and browse tender listings from Bangladesh's largest tender portal, discovering opportunities by category, organization, and location while accessing real-time tender data and site statistics. Get detailed information on individual tenders, view live postings, and see what was published today to stay updated on the latest bidding opportunities.
buy.nsw.gov.au API
Search and retrieve NSW Government tender opportunities and contract notices from buy.nsw, including detailed information about available opportunities, supplier hubs, and procurement categories. Filter opportunities by category and discover top procurement deals in real-time to stay informed about potential business contracts with the NSW Government.
licitacoes-e.com API
Search and analyze Brazilian public tenders from Banco do Brasil, including filtering by buyer and tender status to find procurement opportunities. Get detailed information about specific tenders to track bids, deadlines, and procurement details.
bidorbuy.co.za API
Search and browse products on Bob Shop, view detailed product information, seller profiles and ratings, explore category listings, and discover current promotions. Get search suggestions and navigate the complete product catalog to find exactly what you're looking for.
bizbuysell.com API
Search for businesses available for sale across multiple categories and view detailed information about specific listings on BizBuySell.com. Browse business categories to explore different industries and find opportunities that match your investment interests.
Biddingo API – Government Bids & RFPs · Parse