Opportunitydesk APIopportunitydesk.org ↗
Find and access grant opportunities from Opportunity Desk with key details like deadlines, eligible countries, applicant requirements, funding amounts, and application links. Browse available grants or dive into specific grant information to identify funding that matches your needs.
curl -X GET 'https://api.parse.bot/scraper/b5531142-2817-47a6-8a5a-c9b0f6954a30/list_grants?search=climate&per_page=5&page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
List grant opportunities from Opportunity Desk with optional search filtering and pagination. Returns grant summaries including title, date, link, and excerpt. Pagination is controlled by page and per_page parameters.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| search | string | Free-text search query to filter grants by keyword. |
| per_page | integer | Number of results per page (1-100). |
{
"type": "object",
"fields": {
"page": "current page number",
"total": "total number of grants matching the query (may be null)",
"grants": "array of grant summary objects with id, slug, title, date, link, excerpt",
"per_page": "results per page",
"total_pages": "total pages available (may be null)"
},
"sample": {
"data": {
"page": 1,
"total": null,
"grants": [
{
"id": 177204,
"date": "2026-08-06T09:05:17",
"link": "https://opportunitydesk.org/2026/08/06/unep-mountains-adapt-small-grants-2026/",
"slug": "unep-mountains-adapt-small-grants-2026",
"title": "Call for Proposals: UNEP Mountains ADAPT Small Grants 2026 (up to $30,000)",
"excerpt": "Deadline: September 15, 2026 Proposals are invited for the UNEP Mountains ADAPT Small Grants 2026..."
}
],
"per_page": 5,
"total_pages": null
},
"status": "success"
}
}About the Opportunitydesk API
The Opportunitydesk API on Parse exposes 2 endpoints for the publicly available data on opportunitydesk.org. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.