Models Overview
Base URL
text
https://logox.topQuery Models Before Integration
The recommended way to check models is not to query each provider directly, but to first see what the current token can actually call.
Query Models Visible to the Current Token
bash
curl https://logox.top/v1/models \
-H "Authorization: Bearer sk-logox-your-key"This result is best for production because it returns the models actually available to the current token under its current group.
Provider Model Query Methods
| Provider | Query Through Logox / new-api | Native Provider Query |
|---|---|---|
| OpenAI | GET /v1/models | GET https://api.openai.com/v1/models |
| Anthropic | GET /v1/models | GET https://api.anthropic.com/v1/models |
| Google Gemini | GET /v1/models | GET https://generativelanguage.googleapis.com/v1beta/models |
| xAI Grok | GET /v1/models | GET https://api.x.ai/v1/models |
Common Current Text Models
This list is based on official provider documentation.
Whether your token can call a model still depends on the result of GET /v1/models.
OpenAI
gpt-5.4gpt-5.4-minigpt-5.4-nanogpt-4.1
Use cases:
- General text, coding, agents, and tool calling
- Most third-party software is compatible with this style first
Anthropic
claude-opus-4-1-20250805claude-sonnet-4-20250514claude-3-7-sonnet-20250219claude-3-5-haiku-20241022
Use cases:
- Long context
- Strong reasoning and coding
- Works naturally with the Claude Code ecosystem
Google Gemini
gemini-3.1-progemini-3.1-flashgemini-3.1-flash-litegemini-2.5-progemini-2.5-flashgemini-2.5-flash-lite
Use cases:
- Strong multimodal capability
- Good fit for image/video understanding and long context
xAI Grok
grok-4.20grok-4-fast-reasoninggrok-4-fast-non-reasoninggrok-code-fast-1
Use cases:
- Reasoning
- Tool calling
- Coding and search-enhanced scenarios
Where to Find Image / Video / Audio APIs
| Capability | Page |
|---|---|
| Image | Image API |
| Video | Video API |
| Audio | Audio API |
Integration Suggestions
| Scenario | Recommended API |
|---|---|
| General client integration | OpenAI-compatible |
| Claude Code or Anthropic SDK | Anthropic |
| Gemini SDK or native Gemini format | Google Gemini |
| Mainly image generation | Image API |
| Mainly video generation | Video API |
| Mainly speech or TTS | Audio API |
