Skip to main content
GET
/
periodic-emission-logs
List periodic emission logs
curl --request GET \
  --url https://api.demo.cula.earth/tracking/v1/periodic-emission-logs \
  --header 'Authorization: Bearer <token>' \
  --header 'Cula-Organisation-Id: <cula-organisation-id>'
{
  "data": [
    {
      "id": "eml_01kqzcjrpyf27tgebyhvvmf20z",
      "config_id": "elc_01kqzcjrpyf27tgekeyq3qzm7d",
      "site": {
        "id": "<string>",
        "external_id": "<string>"
      },
      "period_start": "2025-10-01T00:00:00.000Z",
      "period_end": "2025-10-31T00:00:00.000Z",
      "status": "completed",
      "data_points": [
        {
          "config_id": "dpc_01kqzcjrpyf27tgey9d27c4edu",
          "config_version_id": "dpv_01kqzcjrpyf27tgeyv9d27c4edu",
          "name": "Weight net",
          "input_value": {
            "value": 47079.76,
            "unit": "lbs"
          },
          "result_value": {
            "value": 21353.12,
            "unit": "kg"
          }
        }
      ],
      "file_ids": [],
      "created_at": "2026-05-06T19:34:00Z",
      "updated_at": "2026-05-06T19:34:00Z",
      "external_id": "GC-ELEC-2025-10",
      "display_key": "GC-ELEC-2025-10",
      "emissions_in_kg_co2e": 8942.37
    }
  ],
  "pagination": {
    "starting_after": "<string>",
    "limit": 123,
    "has_more": true,
    "next_cursor": "<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.

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 periodic emission logs.

data
object[]
required
pagination
object
required

Cursor-based pagination metadata.