GET
/
models
curl --request GET \
  --url https://api.venice.ai/api/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "type": "text",
  "data": [
    {
      "id": "llama-3.3-70b",
      "type": "text",
      "object": "model",
      "created": 1699000000,
      "owned_by": "venice.ai",
      "model_spec": {
        "availableContextTokens": 65536,
        "capabilities": {
          "supportsFunctionCalling": true
        },
        "traits": [
          "default_code"
        ],
        "modelSource": "https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

type
enum<string>

Filter models by type. Use "all" to get all model types.

Available options:
text,
image,
all

Response

200
application/json
OK
object
enum<string>
required
Available options:
list
type
enum<string>
required

Type of models returned.

Available options:
text,
image,
all
data
object[]
required

List of available models