list-pods
Retrieve and filter active RunPod compute instances by GPU/CPU type, data center, name, and include machine or network volume details for management purposes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
computeType | No | Filter to only GPU or only CPU Pods | |
dataCenterId | No | Filter to Pods in any of the provided data centers | |
gpuTypeId | No | Filter to Pods with any of the listed GPU types | |
includeMachine | No | Include information about the machine | |
includeNetworkVolume | No | Include information about attached network volumes | |
name | No | Filter to Pods with the provided name |
Input Schema (JSON Schema)
{
"properties": {
"computeType": {
"description": "Filter to only GPU or only CPU Pods",
"enum": [
"GPU",
"CPU"
],
"type": "string"
},
"dataCenterId": {
"description": "Filter to Pods in any of the provided data centers",
"items": {
"type": "string"
},
"type": "array"
},
"gpuTypeId": {
"description": "Filter to Pods with any of the listed GPU types",
"items": {
"type": "string"
},
"type": "array"
},
"includeMachine": {
"description": "Include information about the machine",
"type": "boolean"
},
"includeNetworkVolume": {
"description": "Include information about attached network volumes",
"type": "boolean"
},
"name": {
"description": "Filter to Pods with the provided name",
"type": "string"
}
},
"type": "object"
}