v1

latestOpenAPI 3.1.02026-07-26101317.6 KB
Endpoints

List Endpoints

Returns a paginated list of endpoints accessible by the current API key.

get/endpoints

Query parameters

searchstring
Example:my-model

Search endpoints by name.

is_activeboolean
Example:true

Filter by active status. true returns only running endpoints, false returns only stopped endpoints.

pageinteger

Page number, starting from 1.

sizeinteger

Number of items per page. Min 1, max 2000.

Response

Paginated list of endpoints.

totalinteger

Total number of endpoints.

pageinteger

Current page number.

sizeinteger

Items per page.

pagesinteger

Total number of pages.

Example response

{
  "items": [
    {
      "id": "cad59665-b77b-4cb6-9308-d276294bce79",
      "name": "my-llm-endpoint",
      "endpoint_type": "container",
      "is_active": true,
      "status": "RUNNING",
      "num_replicas": 2,
      "instance_type_name": "RTX 4070 Super",
      "serving_endpoint_url": "https://ap-1.aieev.cloud/ac/7/cad59665-b77b-4cb6-9308-d276294bce79"
    }
  ],
  "total": 5,
  "page": 1,
  "size": 50,
  "pages": 1
}