Skip to main content
GET
/
v1
/
models
List models
curl --request GET \
  --url https://api.edgee.ai/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "openai/gpt-4o",
      "object": "model",
      "created": 1677610602,
      "owned_by": "openai"
    },
    {
      "id": "anthropic/claude-3-opus",
      "object": "model",
      "created": 1677610602,
      "owned_by": "anthropic"
    }
  ]
}
Lists the currently available models, and provides basic information about each one such as the owner and availability. Returns only active models.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your API key. More info here

Query Parameters

provider
string

Filter models by provider (optional, currently not implemented)

Response

List of available models

object
enum<string>
required

The object type, which is always list.

Available options:
list
data
object[]
required

The list of models.