List models

GET /v1/models

Responses

200

OK

Content type: application/json

FieldTypeRequiredDescription
objectstringYesThe object type, always “list”.
dataarray of objectYesThe list of available models.

data[]

FieldTypeRequiredDescription
idstringYesThe model identifier (alias or dated version).
objectstringYesThe object type, always “model”.
createdintegerYesUnix timestamp (seconds) of when the model version was created.
owned_bystringYesOrganization that owns the model.

default

Error

Content type: application/json

FieldTypeRequiredDescription
errorobjectYesThe failure.

error

FieldTypeRequiredDescription
messagestringYesHuman-readable description of the failure.
typestringYesOpenAI error taxonomy value.
paramstringYesThe request parameter at fault, when one applies.
codestringYesMachine-readable error code, when one applies.

Examples

List models

curl https://api.springboards.ai/v1/models \
  -H "Authorization: Bearer $SPRINGBOARDS_API_KEY"