Models
List Models
Getting Started
Features
- Request Logs
- Datasets
- Fine Tuning
- Direct Preference Optimization (DPO)
- Evaluations
- Criteria
- Chat Completions
- Caching
- Updating Metadata Tags
- Pruning Rules
- Fallback
- Mixture of Agents
- External Models
API Reference
- Logs
- Chat Completions
- Datasets
- Models
- Criteria
Pricing
Models
List Models
List all models for a project.
GET
/
models
curl --request GET \
--url https://api.openpipe.ai/api/v1/models \
--header 'Authorization: Bearer <token>'
{
"object": "list",
"data": [
{
"id": "<string>",
"name": "<string>",
"object": "model",
"description": "<string>",
"created": "<string>",
"updated": "<string>",
"openpipe": {
"baseModel": "<string>",
"hyperparameters": {},
"status": "PENDING",
"datasetId": "<string>",
"errorMessage": "<string>"
},
"contextWindow": 123,
"maxCompletionTokens": 123,
"capabilities": [
"chat"
],
"pricing": {
"chatIn": 123,
"chatOut": 123
},
"owned_by": "<string>"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successful response
Available options:
list
Available options:
model
Available options:
PENDING
, TRAINING
, DEPLOYED
, ERROR
, DEPRECATED
, PENDING_DEPRECATION
, QUEUED
, PROVISIONING
Available options:
chat
, tools
, json
curl --request GET \
--url https://api.openpipe.ai/api/v1/models \
--header 'Authorization: Bearer <token>'
{
"object": "list",
"data": [
{
"id": "<string>",
"name": "<string>",
"object": "model",
"description": "<string>",
"created": "<string>",
"updated": "<string>",
"openpipe": {
"baseModel": "<string>",
"hyperparameters": {},
"status": "PENDING",
"datasetId": "<string>",
"errorMessage": "<string>"
},
"contextWindow": 123,
"maxCompletionTokens": 123,
"capabilities": [
"chat"
],
"pricing": {
"chatIn": 123,
"chatOut": 123
},
"owned_by": "<string>"
}
]
}