---
title: "List equipment"
method: GET
path: "/reference-data/equipment"
tags: ["Reference Data"]
---

# List equipment

`GET /reference-data/equipment`

Read-only catalog of equipment types. The ids are what order and load
`equipment` arrays reference. The list is system-managed and small —
fetch it once and cache it, or hardcode the ids your integration uses.

The catalog is global and organization-independent: every
authenticated organization sees the same rows.

## Query parameters

- `categoryId` string, uuid
- `groupId` string, uuid
- `subcategoryId` string, uuid

## Response `200`

Successful response

- object
  - `data` Equipment[], required
    - `id` string, uuid, required — Equipment id (referenced by order/load equipment arrays)
    - `name` string, required — Display name (e.g., "Van 53'")
    - `category` EquipmentCategory
      - `id` string, uuid, required — Category id (use as the `categoryId` list filter)
      - `name` string, required — Category display name
    - `group` EquipmentGroup
      - `id` string, uuid, required — Group id (use as the `groupId` list filter)
      - `name` string, required — Top-level group display name
    - `subcategory` EquipmentSubcategory
      - `id` string, uuid, required — Subcategory id (use as the `subcategoryId` list filter)
      - `name` string, required — Subcategory display name

## Other responses

- `401` — Unauthorized - invalid or missing access token
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/mvmnt/apis/mvmnt-api.md) · [All operations](https://skmtc.net/mvmnt/apis/mvmnt-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mvmnt/mvmnt-api/revisions/ce0e9003047c/schema)
