nexusflow Developer Docs
One-stop access to models including Qwen, DeepSeek, GLM, Kimi, and HappyHorse. Supports three protocols (OpenAI Chat, Anthropic Messages, Responses API) with unified billing, keys, and monitoring.
Model Services
Unified model list, pricing, and capabilities
Three-Protocol Access
OpenAI Chat / Anthropic Messages / Responses API compatible endpoints
Monitoring & Evaluation
Monitoring page, error codes, and performance metrics
High-Concurrency Readiness
Rate limits, queues, task pipelines, and capacity scaling
Three Compatible Protocols
OpenAI-compatible
/v1/chat/completionsRecommended default integration, covering chat, reasoning, function calling, and most language SDKs.
Anthropic Messages
/v1/messagesIdeal for reusing the Anthropic SDK, Claude Code-style clients, and the Messages request format.
Responses API
/v1/responsesBuilt-in tools like web search and code interpreter, simplified context management, and multi-turn support via previous_response_id.
Quick Start
From your first chat request to async task integration
Models Overview
Browse model services, dedicated pages, and pricing
API Reference
OpenAI Chat, Anthropic Messages, and Responses compatible protocols
Monitoring & Rate Limits
Quotas, queues, and observability for production traffic
Popular Models
API Endpoints
Production Traffic Recommendations
Use sync endpoint for chat
Prefer `/v1/chat/completions` for chat and reasoning models to avoid unnecessary polling complexity.
Use async tasks for media
Route image and video through `/v1/tasks`, using task status to handle high latency and peak loads.
Check limits & monitoring before launch
Confirm peak-request strategy on the rate limits, error codes, and monitoring pages to avoid discovering bottlenecks during traffic spikes.
Quick Example
Use the standard OpenAI SDK — just change the base_url to connect to nexusflow.View full tutorial →