search_catalog
hub.arcgis.comSearches https://hub.arcgis.com for open datasets, sites, documents, applications, and maps. Returns paginated catalog records with all non-empty metadata exposed by ArcGIS Hub.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Searches https://hub.arcgis.com for open datasets, sites, documents, applications, and maps. Returns paginated catalog records with all non-empty metadata exposed by ArcGIS Hub. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, collection_type, sort_by, sort_order, page, limit and get the result back without maintaining a scraper.
Response
{
"page": 0,
"items": [
{}
],
"limit": 0,
"query": "<string>",
"total": 0,
"sort_by": "<string>",
"returned": 0,
"sort_order": "<string>",
"has_next_page": true,
"collection_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/47299bee-1430-479c-824e-d488b30054e4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "47299bee-1430-479c-824e-d488b30054e4",
"variables": {
"query": "water",
"collection_type": "dataset",
"sort_by": "relevance",
"sort_order": "desc",
"page": 1,
"limit": 12
}
}'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="47299bee-1430-479c-824e-d488b30054e4") — the "search_catalog" function, which searches https://hub.arcgis.com for open datasets, sites, documents, applications, and maps. Returns paginated catalog records with all non-empty metadata exposed by ArcGIS Hub.. It takes query (str), collection_type (str), sort_by (str), sort_order (str), page (int), limit (int). Return the result as structured JSON.