get_grant_details
opportunitydesk.orgGets a specific grant from https://opportunitydesk.org by slug or numeric ID. Returns cleaned post content plus structured deadline, eligibility, funding amounts, and external application links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_grant_details?
Gets a specific grant from https://opportunitydesk.org by slug or numeric ID. Returns cleaned post content plus structured deadline, eligibility, funding amounts, and external application links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug, id and get the result back without maintaining a scraper.
Response
{
"id": 0,
"date": "<string>",
"link": "<string>",
"slug": "<string>",
"tags": [
{
"id": 0,
"link": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"title": "<string>",
"format": "<string>",
"status": "<string>",
"excerpt": "<string>",
"date_gmt": "<string>",
"deadline": "<string>",
"modified": "<string>",
"author_id": 0,
"post_type": "<string>",
"categories": [
{
"id": 0,
"link": "<string>",
"name": "<string>",
"slug": "<string>"
}
],
"grant_amount": "<string>",
"modified_gmt": "<string>",
"content_blocks": [
"<string>"
],
"external_links": [
{
"url": "<string>",
"text": "<string>"
}
],
"featured_image": {
"id": 0,
"url": "<string>",
"width": 0,
"height": 0,
"mime_type": "<string>"
},
"application_url": "<string>",
"information_url": "<string>",
"featured_media_id": 0,
"eligible_countries": [
"<string>"
],
"eligible_applicants": [
"<string>"
],
"benefits_and_funding": [
"<string>"
],
"funding_amount_details": [
{
"text": "<string>",
"amounts": [
"<string>"
],
"applies_to": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/a9f1df32-8c36-41e8-8482-38d5debae5bc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a9f1df32-8c36-41e8-8482-38d5debae5bc",
"variables": {
"slug": "asean-korea-young-scholar-research-grant-2026",
"id": 0
}
}'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="a9f1df32-8c36-41e8-8482-38d5debae5bc") — the "get_grant_details" function, which gets a specific grant from https://opportunitydesk.org by slug or numeric ID. Returns cleaned post content plus structured deadline, eligibility, funding amounts, and external application links.. It takes slug (str), id (int). Return the result as structured JSON.