AxelGlobe STAC API error
Response error
When something error happens during the request, the STAC API will return the response like the following except for some cases.
{
"message": "${ERROR_MESSAGE_GOES_HERE}",
"code": "${ERROR_CODE_GOES_HERE}"
}
error code | message |
---|---|
1000 | Invalid data |
1001 | Catalog not found |
1002 | Collection not found |
1003 | Feature not found |
1004 | Item type not found |
1005 | Invalid input data |
1006 | Internal Server Exception |
1007 | Invalid Authorization Token |
1008 | Not Found |
1009 | No downloads available |
Response when reaching the API Rate Limit
When the API request reaches the API rate limit, the STAC API will return the following response payload with the HTTP status code 429. On this case, it won't return an error_code
in the response payload.
{
"message": "Too Many Requests"
}