Retrieve model
GET /v1/models/{model}
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
model | path | string | Yes | The model ID (alias or dated version) to retrieve. |
Responses
200
OK
Content type: application/json
| Field | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The model identifier (alias or dated version). |
object | string | Yes | The object type, always “model”. |
created | integer | Yes | Unix timestamp (seconds) of when the model version was created. |
owned_by | string | Yes | Organization that owns the model. |
default
Error
Content type: application/json
| Field | Type | Required | Description |
|---|---|---|---|
error | object | Yes | The failure. |
error
| Field | Type | Required | Description |
|---|---|---|---|
message | string | Yes | Human-readable description of the failure. |
type | string | Yes | OpenAI error taxonomy value. |
param | string | Yes | The request parameter at fault, when one applies. |
code | string | Yes | Machine-readable error code, when one applies. |
Examples
Retrieve a model
curl https://api.springboards.ai/v1/models/flint-alpha \
-H "Authorization: Bearer $SPRINGBOARDS_API_KEY"