Documents
Buy CRD and use API
Fund CRD, create consumer keys, and call OpenAI or Anthropic compatible APIs.
CRD is the platform credit used to consume Fluere APIs. Users can obtain CRD by funding, staff credit, or supplier earnings, then create a consumer API key to call models.
Before calling the API
- Confirm the account has available CRD. Frozen CRD and unsettled amounts are not spendable.
- Create a Consumer API Key. This key calls models; it is different from Agent Access.
- Use platform model IDs from Models & Pricing rather than provider-native names unless a mapping explicitly supports the name.
Compatibility
Fluere supports OpenAI chat completions, OpenAI responses, Anthropic messages, models, and streaming-compatible paths. Codex CLI and Claude Code CLI may each require their own base URL, header, and model configuration.
curl https://fluere.io/api/v1/chat/completions \
-H "Authorization: Bearer fa_live_xxx" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-5","messages":[{"role":"user","content":"Say hello"}]}'