Skip to main content
GET
/
api
/
v1
/
pods
Get Pods
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/pods/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "userId": "<string>",
      "name": "<string>",
      "providerType": "runpod",
      "gpuName": "CPU_NODE",
      "gpuCount": 123,
      "socket": "PCIe",
      "priceHr": 123,
      "id": "<string>",
      "teamId": "<string>",
      "walletId": "<string>",
      "type": "HOSTED",
      "status": "PROVISIONING",
      "installationStatus": "PENDING",
      "installationFailure": "<string>",
      "installationProgress": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "terminatedAt": "2023-11-07T05:31:56Z",
      "stoppedPriceHr": 0.005,
      "provisioningPriceHr": 0,
      "environmentType": "ubuntu_22_cuda_12",
      "customTemplateId": "<string>",
      "clusterId": "<string>",
      "primePortMapping": [],
      "sshConnection": "<string>",
      "ip": "<string>",
      "resources": {
        "memory": "128",
        "disk": "1000",
        "vcpus": "32",
        "shared_disk": "1000"
      },
      "attachedResources": [],
      "isSpot": true,
      "autoRestart": true
    }
  ],
  "total_count": 0,
  "offset": 0,
  "limit": 100
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

offset
integer
default:0
limit
integer
default:100

Response

Successful Response

data
APIPodConfig · object[]
required
total_count
integer
default:0

Total number of items available in the dataset

offset
integer
default:0

Number of items to skip before starting to collect the result set

Required range: x >= 0
limit
integer
default:100

Maximum number of items to return

Required range: x >= 0