Skip to main content
GET
/
v1
/
sites
List sites
curl --request GET \
  --url https://api.cula.tech/tracking/v1/v1/sites \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
      "external_id": "GC-SITE-REFINERY",
      "name": "GreenCarbon Refinery",
      "timezone": "America/Chicago",
      "location": {
        "lat": 46.8797,
        "long": -102.7903,
        "city": "Richardton",
        "country": "United States",
        "country_code": "US"
      },
      "owning_site": null,
      "organisation": {
        "id": "org_01kqzcjrpyf27tge87es6ns4w3",
        "external_id": null
      }
    },
    {
      "id": "ste_01kqzcjrpyf27tge77evmjmnqw",
      "external_id": "GC-WELL-SITE",
      "name": "GreenCarbon Well Site RTE-10",
      "timezone": "America/Chicago",
      "location": {
        "lat": 46.91,
        "long": -102.82,
        "city": "Richardton",
        "country": "United States",
        "country_code": "US"
      },
      "owning_site": {
        "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
        "external_id": "GC-SITE-REFINERY"
      },
      "organisation": {
        "id": "org_01kqzcjrpyf27tge87es6ns4w3",
        "external_id": null
      }
    }
  ],
  "pagination": {
    "starting_after": null,
    "limit": 10,
    "has_more": false,
    "next_cursor": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cula.tech/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Keys are scoped to one organisation and a set of permitted sites. Two keys per scope (primary + secondary) are issued to support zero-downtime rotation.

Authorization: Bearer <api-key>

Query Parameters

starting_after
string

Cursor for forward pagination. Pass the next_cursor value from a previous response to fetch the next page. Must be a valid resource ID.

limit
integer
default:10

Maximum number of items to return per page.

Required range: 1 <= x <= 50

Response

Paginated list of sites.

data
object[]
required
pagination
object
required

Cursor-based pagination metadata.