Skip to main content
GET
/
v1
/
machine-data-point-configs
List machine data point configs
curl --request GET \
  --url https://api.cula.tech/tracking/v1/v1/machine-data-point-configs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "mdp_01kqzcjrpyf27tge9dnvsqv8t2",
      "external_id": "GC-RETENTATE-FLOW",
      "name": "retentate outlet flow rate",
      "unit": "m3/h",
      "factor": 1,
      "site": {
        "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
        "external_id": "GC-SITE-REFINERY"
      },
      "machine": {
        "id": "mch_01kqzcjrpyf27tge77evmjmnqw",
        "external_id": "GC-RAWGAS-UPGRADE"
      },
      "measurement": {
        "id": "msr_01kqzcjrpyf27tge77evmjmnqw",
        "external_id": "GC-RAWGAS-FLOW"
      }
    },
    {
      "id": "mdp_01kqzcjrpyf27tge33jwvjhkff",
      "external_id": "GC-CH4-CONC",
      "name": "CH4 concentration",
      "unit": "%",
      "factor": 1,
      "site": {
        "id": "ste_01kqzcjrpyf27tge6smsbnhkh5",
        "external_id": "GC-SITE-REFINERY"
      },
      "machine": {
        "id": "mch_01kqzcjrpyf27tge77evmjmnqw",
        "external_id": "GC-RAWGAS-UPGRADE"
      },
      "measurement": {
        "id": "msr_01kqzcjrpyf27tge77evmjmnqw",
        "external_id": "GC-RAWGAS-FLOW"
      }
    }
  ]
}

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

site
string

Filter by site ID or ext-{externalId}.

machine
string

Filter by machine ID or ext-{externalId}.

measurement
string

Filter by measurement ID or ext-{externalId}.

Response

List of machine data point configs.

data
object[]
required