Skip to main content
GET
/
v2
/
model_endpoints
Retrieve all models
curl --request GET \
  --url https://api.scale.com/v2/model_endpoints \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "url": "<string>",
    "description": "<string>",
    "status": "active",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Response

Successfully retrieved models.

id
string

Unique identifier for the model endpoint.

url
string

Model endpoint URL.

description
string

Description of the model.

status
enum<string>

Status of the model.

Available options:
active,
deprecated,
errored,
inReview
createdAt
string<date-time>

Timestamp when the model was created.

I