How the lines differ
| Line | Strong at | Speed / cost | When to use |
|---|---|---|---|
| Flagship GPT | All-rounder: code, analysis, vision, long context | Medium | Daily work, code, multi-step tasks |
| mini | Simple tasks at high volume | Faster, cheaper | Chatbots, classification, bulk processing |
| o-series (reasoning) | Deep step-by-step reasoning, math, logic | Slower, pricier | Hard problems that need a chain of thought |
What GPT can do
- Vision — you can pass images as input: screenshots, diagrams, scans. See image input for the request format.
- Function calling (tool use) — the model returns structured tool calls, which is what agents and integrations are built on. See function calling for a full example.
- Long context — a large window that fits whole documents and chunks of a codebase.
- Reasoning (o-series) — a separate line that “thinks” before answering, breaking the task into steps; it helps with math, logic and hard code.
- Embeddings — turn text into vectors for semantic search and RAG; see embeddings.
In the
model field you pass an ID, for example gpt-5 for the flagship model. Exact names, versions and per-token prices are on the Pricing page at www.ruapi.ai. Names match OpenAI’s official ones, and new versions appear in the catalog automatically.Picking by task
- General tasks, chat, code → flagship GPT by default.
- High request volume where speed and cost matter → mini (chatbots, classification, tags at scale).
- Hard reasoning, math, logic → o-series.
- Images as input → flagship GPT with vision.
- An agent or a tool pipeline → flagship GPT (reliable tool use).
How to connect
GPT is served over the OpenAI-compatible protocol, so any OpenAI SDK or a tool like Cursor, Cline or n8n works — just pointbase_url at https://www.ruapi.ai/v1. Step by step in the Quickstart.
FAQ
GPT-5 or mini?
GPT-5 or mini?
The flagship is the everyday choice: code, analysis, vision. Reach for mini when you have lots of requests and speed plus cost matter — chatbots, classification, short answers at scale.
What is the o-series / reasoning mode?
What is the o-series / reasoning mode?
It’s a separate line of models that “thinks” through the task step by step before answering. It’s strong at math, logic and hard code, but slower and pricier than regular GPT — use it selectively, for genuinely tough problems.
Does GPT understand images?
Does GPT understand images?
Yes, models with vision accept images as input alongside text — screenshots, diagrams, scans.
What's the context window?
What's the context window?
Large — it fits whole documents and chunks of code. The exact limit depends on the version and matches OpenAI’s official one.
Where do I get a key?
Where do I get a key?
You create a key in your dashboard on the main site, then drop it into any OpenAI-compatible tool. Step by step in the Quickstart.
How do I pay?
How do I pay?
You top up your balance in USDT — no cards or VPN needed. The how-to is on the Top up page.
Next
Connect and first request
base_url, key, Python and curl code.
Claude models
Same key — choosing and using Claude.