How do I get higher rate limits?
How do I get higher rate limits?
Reach out to our support team with details about your use case, expected volume, and any latency or throughput requirements. We’ll review your needs and can raise your limits accordingly.
How do I handle rate limits?
How do I handle rate limits?
Implement exponential backoff in your client code. When you receive a rate limit error (429) or a server error (503), wait before retrying.
How are tokens counted?
How are tokens counted?
Tokens are pieces of text that our models process. A token is roughly 4 characters for English text. Both input and output tokens count toward your usage limits.
Does the API return token counts or dollar costs?
Does the API return token counts or dollar costs?
Responses include a
usage object with token counts, but not a dollar-cost field:prompt_tokens— all input tokens, including cached input.prompt_tokens_details.cached_tokens— the subset ofprompt_tokensserved from the prefix cache.completion_tokens— all generated tokens, including reasoning tokens.completion_tokens_details.reasoning_tokens— the subset ofcompletion_tokensused for reasoning.total_tokens—prompt_tokens + completion_tokens.
stream: true), set stream_options.include_usage: true to receive a final usage chunk before data: [DONE]. Use the rates on Models, Endpoints & Pricing to calculate cost.Can I feed these docs to an LLM or coding agent?
Can I feed these docs to an LLM or coding agent?
Yes. The full documentation index is published at https://docs.inceptionlabs.ai/llms.txt. Point your LLM, IDE assistant, or agent at that URL to discover every page in the docs. The docs site does not block crawlers or agent traffic.
Do Mercury models support image or vision input?
Do Mercury models support image or vision input?
No. Mercury 2 and Mercury Edit 2 accept text input only. Image generation and image input are not supported. See /get-started/models for supported input formats per model.
How do the free tokens work?
How do the free tokens work?
Every new account includes a one-time credit of 100 million free tokens. The credit is shared across all models rather than granted per model. When your free tokens run low, add payment information under Billing to continue using the API. For questions about the free credit that aren’t covered here, contact support.
Can I use Mercury with MCP clients or agent frameworks?
Can I use Mercury with MCP clients or agent frameworks?
The API does not include a dedicated MCP (Model Context Protocol) server or endpoint. Mercury 2 supports OpenAI-compatible tool calling, so any MCP client or agent framework that lets you configure an OpenAI-compatible backend can use it. Set the base URL to
https://api.inceptionlabs.ai/v1, provide your API key, and set the model to mercury-2. Tool definitions follow the OpenAI function schema shown in the Tool Use guide.