v3

OpenAPI 3.1.0MIT2026-07-31192456807.8 KB
Endpoints

List all endpoints

Returns a list of all endpoints associated with your account. You can filter the results by type (dedicated or serverless).

get/endpoints

Query parameters

type'dedicated' | 'serverless'

Filter endpoints by type

usage_type'on-demand' | 'reserved'

Filter endpoints by usage type

mineboolean

If true, return only endpoints owned by the caller

Response

200

object'list' required

The object type, which is always list.

Example response

{
  "object": "list",
  "data": [
    {
      "object": "endpoint",
      "id": "endpoint-5c0c20db-62fe-4f41-8ffc-d9e4ea1a264e",
      "name": "allenai/OLMo-7B",
      "model": "allenai/OLMo-7B",
      "type": "serverless",
      "owner": "together",
      "state": "STARTED",
      "created_at": "2024-02-28T21:34:35.444Z"
    }
  ]
}