Documentation Index
Fetch the complete documentation index at: https://docs.redpill.ai/llms.txt
Use this file to discover all available pages before exploring further.
List All Models
Returns list of all 50+ available models.
GET https://api.redpill.ai/v1/models
Try it now! Click the “Try it” button above to test the API in the playground. You’ll need your API key (add it when prompted).
Example
curl https://api.redpill.ai/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
Response
{
"data": [
{
"id": "openai/gpt-5-mini",
"name": "GPT-4 Turbo",
"created": 1677652288,
"description": "Most capable GPT-4 model...",
"context_length": 128000,
"pricing": {
"prompt": "0.01",
"completion": "0.03"
},
"architecture": {
"modality": "text->text",
"input_modalities": ["text"],
"output_modalities": ["text"]
}
}
]
}
Model Object Fields
| Field | Description |
|---|
id | Model identifier for API calls |
name | Human-readable name |
context_length | Maximum context window |
pricing.prompt | Price per 1K prompt tokens |
pricing.completion | Price per 1K completion tokens |
quantization | FP8, FP16, etc. |
modality | Input/output types |
All Models
Browse complete model catalog →