search_bid_opportunities
bidsandtenders.comSearches open and historical procurement opportunities from https://bidsandtenders.com by keyword, status, organization IDs, bid type, and publication date range. Returns paginated bid records ordered by closing date descending.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_bid_opportunities?
Searches open and historical procurement opportunities from https://bidsandtenders.com by keyword, status, organization IDs, bid type, and publication date range. Returns paginated bid records ordered by closing date descending. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, status, organization_ids, bid_type, published_from, published_to, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"results": [
{
"name": "<string>",
"status": "<string>",
"bid_type": "<string>",
"detail_url": "<string>",
"organization": "<string>",
"document_fees": "<string>",
"closing_at_utc": "<string>",
"opportunity_id": "<string>",
"closing_timezone": "<string>",
"published_at_utc": "<string>",
"published_timezone": "<string>"
}
],
"page_size": 0,
"total_pages": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d5c952f1-d181-475b-8e9a-5accc87326be/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d5c952f1-d181-475b-8e9a-5accc87326be",
"variables": {
"keyword": "",
"status": "Open",
"organization_ids": "",
"bid_type": "",
"published_from": "",
"published_to": "",
"page": 1,
"page_size": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d5c952f1-d181-475b-8e9a-5accc87326be") — the "search_bid_opportunities" function, which searches open and historical procurement opportunities from https://bidsandtenders.com by keyword, status, organization IDs, bid type, and publication date range. Returns paginated bid records ordered by closing date descending.. It takes keyword (str), status (str), organization_ids (str), bid_type (str), published_from (str), published_to (str), page (int), page_size (int). Return the result as structured JSON.