list_grants_by_search
opportunitydesk.orgLists grant opportunities from https://opportunitydesk.org with optional search filtering and pagination. Returns grant summaries with publication metadata, taxonomy terms, and featured images.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_grants_by_search?
Lists grant opportunities from https://opportunitydesk.org with optional search filtering and pagination. Returns grant summaries with publication metadata, taxonomy terms, and featured images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass search, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"total": 0,
"grants": [
{
"id": 0,
"date": "<string>",
"link": "<string>",
"slug": "<string>",
"tags": [
{
"id": 0,
"link": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"title": "<string>",
"format": "<string>",
"status": "<string>",
"sticky": true,
"excerpt": "<string>",
"date_gmt": "<string>",
"modified": "<string>",
"author_id": 0,
"post_type": "<string>",
"categories": [
{
"id": 0,
"link": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"ping_status": "<string>",
"modified_gmt": "<string>",
"comment_status": "<string>",
"featured_image": {
"id": 0,
"url": "<string>",
"width": 0,
"height": 0,
"mime_type": "<string>"
},
"featured_media_id": 0
}
],
"search": "<string>",
"per_page": 0,
"total_pages": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/6b5d8535-2077-46bb-897d-bede7d3abd60/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6b5d8535-2077-46bb-897d-bede7d3abd60",
"variables": {
"search": "",
"page": 1,
"per_page": 10
}
}'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="6b5d8535-2077-46bb-897d-bede7d3abd60") — the "list_grants_by_search" function, which lists grant opportunities from https://opportunitydesk.org with optional search filtering and pagination. Returns grant summaries with publication metadata, taxonomy terms, and featured images.. It takes search (str), page (int), per_page (int). Return the result as structured JSON.