Skip to main content
GET
https://api.neosantara.xyz
/
v1
/
models
/
{model}
Retrieve Model
curl --request GET \
  --url https://api.neosantara.xyz/v1/models/{model} \
  --header 'x-api-key: <api-key>'
{
  "id": "<string>",
  "object": "<string>",
  "created": 123,
  "owned_by": "<string>",
  "description": "<string>",
  "capabilities": [
    {}
  ]
}
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
model
string
required
The ID of the model to retrieve.

Response

id
string
The model identifier.
object
string
The object type, which is always model.
created
integer
The Unix timestamp (in seconds) when the model was created.
owned_by
string
The organization that owns the model.
description
string
A description of the model’s capabilities.
capabilities
array
A list of capabilities supported by the model (e.g., function_calling, json_mode, vision).