Available Models
Our API platform provides access to a diverse range of cutting-edge large language models from leading AI companies. All models are available through our unified OpenAI-compatible interface, making integration seamless across different providers.
Featured Models
Model ID | Company* | Cost | Capabilities |
---|---|---|---|
deepseek-r1 | Deepseek | Free | Chat completions, reasoning |
deepseek-v3-0324 | Deepseek | Free | Chat completions, function calling |
grok-3 | xAI | Free | Chat completions, multimodal |
grok-3-mini | xAI | Free | Chat completions, function calling |
*The company section indicates the organization that developed the model. This may differ from the hosting or service provider.
Model Discovery
To access the complete, up-to-date list of available models and their capabilities, use our models endpoint:
GET https://api.llm.vin/v1/models
This endpoint returns detailed information about each model, including:
- Supported capabilities (chat completions, moderation, image input, function calling)
- Access permissions based on your authentication status
- Model metadata and specifications
Authentication & Access
- Unauthenticated users: Access to a curated selection of models with standard rate limits
- Authenticated users: Extended model access and higher rate limits with API key
Models are dynamically updated on our platform. Use the /v1/models
endpoint for the most current availability.
Model Capabilities
Chat Completions
All listed models support conversational AI through the /v1/chat/completions
endpoint.
Function Calling
Models marked with function calling capability can invoke external tools and APIs.
Multimodal Input
Select models support image input alongside text for vision-related tasks.
Moderation
Specialized models are available for content moderation through /v1/moderations
.
Usage Examples
List All Models
curl https://api.llm.vin/v1/models
List Models with Authentication
curl https://api.llm.vin/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
Use a Model for Chat
curl https://api.llm.vin/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "grok-3-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Related Endpoints
- Models API - Detailed endpoint documentation
- Chat Completions - Conversational AI
- Moderation - Content filtering
Need More Access?
If you require access to additional models or higher rate limits, contact us at hello@llm.vin and we’ll work to accommodate your needs.