GET
/
endpoints
List all endpoints, can be filtered by type
curl --request GET \
  --url https://api.together.xyz/v1/endpoints \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "endpoint",
      "name": "allenai/OLMo-7B",
      "model": "allenai/OLMo-7B",
      "type": "serverless",
      "owner": "together",
      "state": "STARTED",
      "created_at": "2024-02-28T21:34:35.444Z"
    }
  ]
}

Authorizations

Authorization
string
header
default:default
required

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

Query Parameters

type
enum<string>

Filter endpoints by type

Available options:
dedicated,
serverless

Response

200

object
enum<string>
required
Available options:
list
data
object[]
required