get-pod
Retrieve detailed information about a specific RunPod pod using its ID, with options to include machine details and attached network volumes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMachine | No | Include information about the machine | |
includeNetworkVolume | No | Include information about attached network volumes | |
podId | Yes | ID of the pod to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"includeMachine": {
"description": "Include information about the machine",
"type": "boolean"
},
"includeNetworkVolume": {
"description": "Include information about attached network volumes",
"type": "boolean"
},
"podId": {
"description": "ID of the pod to retrieve",
"type": "string"
}
},
"required": [
"podId"
],
"type": "object"
}