Skip to main content
GET
/
v1
/
measurements
/
{id}
Get a measurement
curl --request GET \
  --url https://api.cula.tech/tracking/v1/v1/measurements/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "msr_01kqzcjrpyf27tge77evmjmnqw",
  "external_id": "GC-RAWGAS-FLOW",
  "name": "Rawgas Upgrade 1 Flow Rates",
  "site": {
    "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
    "external_id": "GC-SITE-REFINERY"
  },
  "machine": {
    "id": "mch_01kqzcjrpyf27tge77evmjmnqw",
    "external_id": "GC-RAWGAS-UPGRADE"
  }
}

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>

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

Measurement details.

id
string
required
Example:

"msr_01kqzcjrpyf27tge77evmjmnqw"

name
string
required
Example:

"Rawgas Upgrade 1 Flow Rates"

site
object
required

The site this measurement belongs to.

machine
object
required

The machine this measurement belongs to.

external_id
string | null
Example:

"GC-RAWGAS-FLOW"