list_open_tenders
dewa.gov.aeRetrieves the complete current set of open DEWA tender listings from https://www.dewa.gov.ae. Returns each tender's serial number, tender number, title, status, advertisement and closing dates, fee, advertisement URL, and purchase URL.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_open_tenders?
Retrieves the complete current set of open DEWA tender listings from https://www.dewa.gov.ae. Returns each tender's serial number, tender number, title, status, advertisement and closing dates, fee, advertisement URL, and purchase URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"count": 0,
"tenders": [
{
"fee": "<string>",
"title": "<string>",
"number": "<string>",
"status": "<string>",
"closing_date": "<string>",
"fee_currency": "<string>",
"purchase_url": "<string>",
"serial_number": 0,
"advertisement_url": "<string>",
"advertisement_date": "<string>"
}
],
"source_url": "<string>",
"retrieved_at": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e0f2239e-2f2c-4797-9a20-7c6a9e56b814/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e0f2239e-2f2c-4797-9a20-7c6a9e56b814",
"variables": {}
}'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="e0f2239e-2f2c-4797-9a20-7c6a9e56b814") — the "list_open_tenders" function, which retrieves the complete current set of open DEWA tender listings from https://www.dewa.gov.ae. Returns each tender's serial number, tender number, title, status, advertisement and closing dates, fee, advertisement URL, and purchase URL.. It takes no parameters. Return the result as structured JSON.