Skip to content
getgeolens.com

Get Collection

GET
/stac/collections/{collection_id}
curl --request GET \
--url https://example.com/stac/collections/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0

Get a single STAC Collection.

collection_id
required
Collection Id
string format: uuid

Successful Response

Media type application/json
StacCollection

A single STAC Collection response (permissive — allows extra STAC fields).

object
description
Description

Collection description.

string
""
extent
required
Extent

Spatial and temporal extent of items in the collection.

object
key
additional properties
any
id
required
Id

Stable collection identifier.

string
license
License

SPDX license identifier or ‘proprietary’.

string
default: proprietary
links
required
Links

Collection navigation links.

Array<object>
StacLink

A single STAC link object.

object
href
required
Href

Target URL of the link.

string
method
Any of:
string
rel
required
Rel

Link relation type (e.g. ‘self’, ‘root’, ‘parent’, ‘item’, ‘data’).

string
type
Any of:
string
stac_version
Stac Version

STAC specification version.

string
default: 1.0.0
title
Any of:
string
type
Type

STAC object type.

string
default: Collection
key
additional properties
any
Example
{
"description": "",
"license": "proprietary",
"stac_version": "1.0.0",
"type": "Collection"
}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}