GET /orders/:id

Returns a single order by its ID.

Base URL: https://api.geocerta.io

Sandbox URL: https://api-staging.geocerta.io

Authentication required. Include your API key in the api-key header. See Authentication.

Endpoint

GET /orders/:id

Path Parameters

Parameter Type Description
id string The order ID.

Response

200 OK — returns the order object.

Errors

Status Message Cause
401 Unauthorized Missing or invalid API key
403 Forbidden Order belongs to a different account
404 Not Found No order exists with the given ID

Example

curl "https://api.geocerta.io/orders/66f3a1b2c4e5d8f9a1b2c4e5" \
  -H "api-key: YOUR_API_KEY"