List available models
List Models
Returns a list of models available in the API. Use the extended query parameter
to get additional metadata about each model’s capabilities and supported features.
GET
List available models
Documentation Index
Fetch the complete documentation index at: https://docs.perceptron.inc/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Models API returns a list of models available in the Perceptron API. This endpoint is compatible with OpenAI’s model listing specification. Use the optionalextended query parameter to retrieve detailed metadata about each model, including capabilities, supported input/output modalities, and token limits.
Examples
List Available Models
Retrieve a basic list of all available models:Get Extended Model Metadata
Retrieve detailed information about each model’s capabilities and limits:Rate Limits
This endpoint is limited to 30 requests/min.Use Cases
- Model Discovery: Query available models before making inference requests
- Capability Checking: Verify a model supports specific features (structured outputs, video input, etc.)
- Dynamic Configuration: Build UIs that adapt to model capabilities
- Token Limit Validation: Check context and output limits before sending requests
Authorizations
Bearer token authentication using your Perceptron API key
Query Parameters
If true, returns extended model metadata including capabilities, modalities, and limits.
Response
List of available models. Returns GetModelsResponse when extended=false (default), or GetModelsExtendedResponse when extended=true.