List All Datasets
const url = 'https://example.com/api/datasets/?skip=0&limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/datasets/?skip=0&limit=50' \ --header 'Authorization: Bearer <token>'List datasets with visibility filtering and pagination.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”Successful Response
object
object
Parent catalog record UUID
Internal PostGIS table name
Describes a single column in a dataset’s attribute table.
Automated quality assessment results.
object
Monotonic version counter
Access level: private, restricted, internal, public
Minimal reference to a collection a dataset belongs to.
object
Lifecycle status: draft, ready, published
Record type: ‘vector_dataset’ (spatial features), ‘raster_dataset’ (single COG), ‘vrt_dataset’ (VRT mosaic), ‘table’ (non-spatial tabular), ‘map’ (saved map), ‘service’ (catalogued remote service), ‘collection’ (flat dataset group).
object
Example
{ "datasets": [ { "current_version": 1, "record_status": "draft", "record_type": "vector_dataset", "raster": { "bands": [] } } ]}Bad request — invalid payload
object
Example
{ "type": "about:blank"}Unauthorized — missing or invalid credentials
object
Example
{ "type": "about:blank"}Forbidden — caller lacks write access
object
Example
{ "type": "about:blank"}Not found
object
Example
{ "type": "about:blank"}Conflict — resource state prevents the operation
object
Example
{ "type": "about:blank"}Validation error
object
Example
{ "type": "about:blank"}Internal server error
object
Example
{ "type": "about:blank"}