Skip to main content
GET
https://api.lumenfall.ai
/
openai
/
v1
/
models
/
{model}
curl https://api.lumenfall.ai/openai/v1/models/imagen-3 \
  -H "Authorization: Bearer $LUMENFALL_API_KEY"
{
  "id": "imagen-3",
  "object": "model",
  "created": 1702300000,
  "owned_by": "google"
}
Retrieves information about a specific model.

Path parameters

model
string
required
The ID of the model to retrieve (e.g., imagen-3, dall-e-3).

Response

id
string
The model identifier.
object
string
Always model.
created
integer
Unix timestamp of when the model was added.
owned_by
string
The organization that created the model.
curl https://api.lumenfall.ai/openai/v1/models/imagen-3 \
  -H "Authorization: Bearer $LUMENFALL_API_KEY"
{
  "id": "imagen-3",
  "object": "model",
  "created": 1702300000,
  "owned_by": "google"
}

Errors

error
object
Returned if the model is not found.
404 Not Found
{
  "error": {
    "message": "Model 'invalid-model' not found",
    "type": "invalid_request_error",
    "code": "MODEL_NOT_FOUND"
  }
}