Documentation Index
Fetch the complete documentation index at: https://docs.lumenfall.ai/llms.txt
Use this file to discover all available pages before exploring further.
Retrieves information about a specific model.
Path parameters
The ID of the model to retrieve (e.g., gemini-3-pro-image, gpt-image-1.5).
Response
Unix timestamp of when the model was added.
The organization that created the model.
curl https://api.lumenfall.ai/openai/v1/models/gemini-3-pro-image \
-H "Authorization: Bearer $LUMENFALL_API_KEY"
{
"id": "gemini-3-pro-image",
"object": "model",
"created": 1702300000,
"owned_by": "google"
}
Errors
Returned if the model is not found.
{
"error": {
"message": "Model 'invalid-model' not found",
"type": "invalid_request_error",
"code": "MODEL_NOT_FOUND"
}
}