The catalog
Every API, one clean contract.
64 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Reputation & Reviews
8 APIsE-commerce & Marketplaces
13 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Social & Knowledge
13 APIsUtilities & AI
7 APIsAI Text
live/llm · 2 endpoints
post/llm/v1/complete3 creditsprompt -> generated text. params: prompt (str, required) + optional system (str), max_tokens (int, default 512, cap 4096), temperature (float 0-2, default 0.7), top_p, think (bool, default false — Qwen3 reasoning mode; off = direct answer, faster/cheaper, best for overlay), model. Returns text + finish_reason + usage.
prompt*systemmax_tokenstemperaturetop_pthinkmodel
{
"prompt": "Reply with exactly the single word: PONG",
"max_tokens": 8,
"temperature": 0
}Try in playground →post/llm/v1/chat3 creditsOpenAI-style chat. params: messages (list of {role, content}, required) + optional max_tokens, temperature, top_p, think (bool, default false), model. Returns message {role, content} + text + usage.
messages*max_tokenstemperaturetop_pthinkmodel
Try in playground →