get_item
Retrieve detailed metadata for a specific geospatial asset by providing its collection and item identifiers, enabling access to satellite imagery and other spatial data.
Instructions
Get detailed information about a specific STAC item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
catalog_url | No | STAC catalog URL (optional, defaults to Microsoft Planetary Computer) | |
collection_id | Yes | ID of the collection containing the item | |
item_id | Yes | ID of the item to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"catalog_url": {
"description": "STAC catalog URL (optional, defaults to Microsoft Planetary Computer)",
"type": "string"
},
"collection_id": {
"description": "ID of the collection containing the item",
"type": "string"
},
"item_id": {
"description": "ID of the item to retrieve",
"type": "string"
}
},
"required": [
"collection_id",
"item_id"
],
"type": "object"
}