Pods
Get Pods Status
Pods
Get Pods Status
GET
/
api
/
v1
/
pods
/
status
curl --request GET \
--url https://api.primeintellect.ai/api/v1/pods/status \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"podId": "<string>",
"providerType": "runpod",
"status": "PROVISIONING",
"sshConnection": "root@135.23.125.123 -p 22",
"ip": "135.23.125.123",
"installationFailure": "<string>",
"installationProgress": 123
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
List of pod ids
Response
200
application/json
Successful Response
Unique identifier for the pod.
ID of the provider.
Available options:
runpod
, fluidstack
, lambdalabs
, hyperstack
, oblivus
, cudocompute
, scaleway
, tensordock
, datacrunch
, latitude
, crusoecloud
, massedcompute
, akash
, primeintellect
, primecompute
, dc_impala
, dc_kudu
, dc_roan
Current status of the pod.
Available options:
PROVISIONING
, PENDING
, ACTIVE
, STOPPED
, ERROR
, TERMINATED
SSH connection details for the pod, which may be a string or list of strings (if there are multiple nodes).
Example:
"root@135.23.125.123 -p 22"
IP address or list (if there are multiple nodes) of IP addresses associated with the pod.
Example:
"135.23.125.123"
Details about any installation failures that occurred, if applicable.
Percentage of the installation process that has been completed, if available.
curl --request GET \
--url https://api.primeintellect.ai/api/v1/pods/status \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"podId": "<string>",
"providerType": "runpod",
"status": "PROVISIONING",
"sshConnection": "root@135.23.125.123 -p 22",
"ip": "135.23.125.123",
"installationFailure": "<string>",
"installationProgress": 123
}
]
}