Skip to main content
GET
/
sites
/
{id}
Get a site
curl --request GET \
  --url https://api.demo.cula.earth/tracking/v1/sites/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Cula-Organisation-Id: <cula-organisation-id>'
{
  "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
  "name": "GreenCarbon Refinery",
  "coordinates": {
    "lat": 52.520008,
    "long": 13.404954
  },
  "external_id": "<string>",
  "timezone": "America/Chicago",
  "address": {
    "city": "Berlin",
    "country": "Germany",
    "country_code": "DE",
    "street": "Friedrichstrasse 1",
    "postcode": "10117"
  },
  "managed_by_site": {
    "id": "<string>",
    "external_id": "<string>"
  },
  "organisation": {
    "id": "<string>",
    "external_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

OAuth2 client credentials flow. Exchange your client_id and client_secret for a short-lived access token, then pass it as a Bearer token in the Authorization header.

Headers

Cula-Organisation-Id
string
required

Organisation ID that scopes this request. The authenticated consumer must be authorized for this organisation. Omitting this header returns 400; passing an unauthorised org returns 403.

Path Parameters

id
string
required

Cula-assigned resource ID in TypeID format (e.g. stp_01kqzcjrpxf27tge33jwvjhkff). Alternatively, pass your external ID prefixed with ext- (e.g. ext-MY-STEP-001). The ext- prefix is unambiguous because TypeIDs use _ separators and never start with ext-.

Response

Site details.

id
string
required
Example:

"ste_01kqzcjrpyf27tge6smsbnhkh5"

name
string
required
Example:

"GreenCarbon Refinery"

coordinates
object
required

Latitude/longitude coordinates of the site.

external_id
string | null
timezone
string | null

IANA timezone identifier. Sites with managed_by_site inherit the managing site's timezone when not explicitly set.

Example:

"America/Chicago"

address
object

Postal address of the site, if known.

managed_by_site
object

The site that manages this site record. Null for sites not created via the API.

organisation
object

The organisation that owns or operates this site.