Marketplace
No threads yet
Live

get_item

hub.arcgis.com

Retrieves a single ArcGIS Hub item's full non-empty metadata from https://hub.arcgis.com by item ID. The result includes descriptive, licensing, engagement, spatial-reference, and geographic-extent fields when available.

Parameters1
Runs12
Updated11d ago
Operational12 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_item?

Retrieves a single ArcGIS Hub item's full non-empty metadata from https://hub.arcgis.com by item ID. The result includes descriptive, licensing, engagement, spatial-reference, and geographic-extent fields when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id and get the result back without maintaining a scraper.

Response

{
  "item": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bf6ed9ea-c6f7-4876-a014-0642e1aecc00/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bf6ed9ea-c6f7-4876-a014-0642e1aecc00",
    "variables": {
        "item_id": "46d82aeb310147e1b464fafdbea2b868"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="bf6ed9ea-c6f7-4876-a014-0642e1aecc00") — the "get_item" function, which retrieves a single ArcGIS Hub item's full non-empty metadata from https://hub.arcgis.com by item ID. The result includes descriptive, licensing, engagement, spatial-reference, and geographic-extent fields when available..

It takes item_id (str). Return the result as structured JSON.