v44

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-20129390589.6 KB
Contracts

Get contract

Get a contract

get/v0/contracts/{id}

Path parameters

idstring required
Example:cont_k3R-nX9vLm7Qp2Yw5Jd8F

Contract ID

Response

Contract details

object'contract' required
status'active' | 'pending' required
idstring required
created_atstring date-time required

An ISO 8601 datetime string

instance_typestring required
colocate_withMarketApiContractId[]
cluster_idstring
zonestring
state'Upcoming' | 'Active' | 'Expired' required
is_nodeboolean required

Specifies whether this contract is managed by the Nodes API

procurement_idstring nullable

The procurement which ordered this contract, if any

Example response

{
  "object": "contract",
  "id": "cont_k3R-nX9vLm7Qp2Yw5Jd8F",
  "created_at": "2025-07-11T20:41:37.423Z",
  "instance_type": "h100i",
  "shape": {
    "intervals": [
      "2025-07-11T20:41:37.423Z"
    ]
  },
  "colocate_with": [
    "cont_k3R-nX9vLm7Qp2Yw5Jd8F"
  ],
  "cluster_id": "clus_k3R-nX9vLm7Qp2Yw5Jd8F",
  "zone": "richmond",
  "is_node": true,
  "procurement_id": "proc_1234567890abcdef"
}