GET
/
api
/
v0
/
endptjobs
/
show endpoints
curl --request GET \
  --url https://console.vast.ai/api/v0/endptjobs/ \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "results": [
    {
      "id": 123,
      "min_load": 0,
      "target_util": 0.9,
      "cold_mult": 2.5,
      "cold_workers": 5,
      "max_workers": 20,
      "endpoint_name": "vLLM-Qwen3-8B",
      "api_key": "your_api_key_here",
      "user_id": 456,
      "created_at": "2023-10-01T12:00:00Z",
      "endpoint_state": "active"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

A list of endpoint jobs

success
boolean
Example:

true

results
object[]