list_government_tenders
esupply.dubai.gov.aeLists active Dubai government tender opportunities from https://esupply.dubai.gov.ae, enriching every record with detail-page title, scope, category, and published lot fields. It traverses all listing pages, supports publication-date filtering, and orders results by closing date.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_government_tenders?
Lists active Dubai government tender opportunities from https://esupply.dubai.gov.ae, enriching every record with detail-page title, scope, category, and published lot fields. It traverses all listing pages, supports publication-date filtering, and orders results by closing date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass published_since and get the result back without maintaining a scraper.
Response
{
"count": 0,
"source": "<string>",
"opportunities": [
{
"lots": [
{
"code": "<string>",
"type": "<string>",
"title": "<string>",
"closing_date": "<string>"
}
],
"category": "<string>",
"title_en": "<string>",
"detail_url": "<string>",
"closing_date": "<string>",
"project_code": "<string>",
"description_en": "<string>",
"opportunity_id": "<string>",
"publication_date": "<string>",
"response_currency": "<string>",
"buyer_organisation": "<string>"
}
],
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/7f3865fe-3c0b-46fe-bddf-e9949665e986/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7f3865fe-3c0b-46fe-bddf-e9949665e986",
"variables": {
"published_since": ""
}
}'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="7f3865fe-3c0b-46fe-bddf-e9949665e986") — the "list_government_tenders" function, which lists active Dubai government tender opportunities from https://esupply.dubai.gov.ae, enriching every record with detail-page title, scope, category, and published lot fields. It traverses all listing pages, supports publication-date filtering, and orders results by closing date.. It takes published_since (str). Return the result as structured JSON.