get-endpoint
Retrieve detailed information about a specific RunPod endpoint, including its configuration, template details, and worker status for API management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpointId | Yes | ID of the endpoint to retrieve | |
includeTemplate | No | Include template information | |
includeWorkers | No | Include information about workers |
Input Schema (JSON Schema)
{
"properties": {
"endpointId": {
"description": "ID of the endpoint to retrieve",
"type": "string"
},
"includeTemplate": {
"description": "Include template information",
"type": "boolean"
},
"includeWorkers": {
"description": "Include information about workers",
"type": "boolean"
}
},
"required": [
"endpointId"
],
"type": "object"
}