Capabilities
Information about the back-end
Lists general information about the back-end, including which version and endpoints of the openEO API are supported. May also include billing information.
get/
Response
Information about the API version and supported endpoints / features.
This endpoint MUST always be available for the API to be valid.
Example response
{
"backend_version": "1.1.2",
"stac_version": "1.1.0",
"type": "Catalog",
"id": "cool-eo-cloud",
"title": "Example Cloud Corp.",
"description": "This service is provided to you by [Example Cloud Corp.](https://cloud.example). It implements the full openEO API and allows to process a range of 999 EO data sets, including \n\n* Sentinel 1/2/3 and 5\n* Landsat 7/8\n\nA free plan is available to test the service. For further information please contact our customer service at [support@cloud.example](mailto:support@cloud.example).",
"conformsTo": [
"https://api.openeo.org/1.3.0",
"https://api.openeo.org/extensions/commercial-data/0.1.0",
"https://api.openeo.org/extensions/federation/0.2.0",
"https://api.stacspec.org/v1.0.0/core",
"https://api.stacspec.org/v1.0.0/collections"
],
"endpoints": [
{
"path": "/collections",
"methods": [
"GET"
]
},
{
"path": "/collections/{collection_id}",
"methods": [
"GET"
]
},
{
"path": "/processes",
"methods": [
"GET"
]
},
{
"path": "/jobs",
"methods": [
"GET",
"POST"
]
},
{
"path": "/jobs/{job_id}",
"methods": [
"GET",
"DELETE",
"PATCH"
]
}
],
"billing": {
"currency": "USD",
"default_plan": "free",
"plans": [
{
"name": "free",
"description": "Free plan. Calculates one tile per second and a maximum amount of 100 tiles per hour.",
"url": "https://cloud.example/plans/free-plan",
"paid": false
},
{
"name": "premium",
"description": "Premium plan. Calculates unlimited tiles and each calculated tile costs 0.003 USD.",
"url": "https://cloud.example/plans/premium-plan",
"paid": true
}
]
},
"links": [
{
"href": "https://cloud.example",
"rel": "about",
"type": "text/html",
"title": "Homepage of the service provider"
},
{
"href": "https://cloud.example/tos",
"rel": "terms-of-service",
"type": "text/html",
"title": "Terms of Service"
},
{
"href": "https://cloud.example/privacy",
"rel": "privacy-policy",
"type": "text/html",
"title": "Privacy Policy"
},
{
"href": "https://cloud.example/register",
"rel": "create-form",
"type": "text/html",
"title": "User Registration"
},
{
"href": "https://cloud.example/lost-password",
"rel": "recovery-form",
"type": "text/html",
"title": "Reset Password"
},
{
"href": "https://cloud.example/.well-known/openeo",
"rel": "version-history",
"type": "application/json",
"title": "List of supported openEO versions"
},
{
"href": "https://cloud.example/api/v1/conformance",
"rel": "conformance",
"type": "application/json",
"title": "OGC Conformance Classes"
},
{
"href": "https://cloud.example/api/v1/collections",
"rel": "data",
"type": "application/json",
"title": "List of Datasets"
},
{
"href": "https://editor.openeo.org",
"rel": "web-editor",
"type": "text/html",
"title": "openEO Web Editor",
"version": "0.14.0"
}
]
}