Developer building an application with the QFOXAI API
QFOXAI Developer Suite

QFOXAI Developer API

Add QFOXAI to applications, business software, automations, and customer experiences through one documented, OpenAI-compatible API. Start with the docs, then use the tools that fit your workflow.

Base URL https://qfoxai.com/v1
OpenAI-compatible requests Protected bearer keys Measured usage and request IDs
API quick start

From API key to first response in minutes.

Use the public base URL and model alias shown in the documentation. Your package, request allowance, token allowance, and key controls remain visible in the QFOXAI dashboard.

01
Create a protected key

Generate a customer API key and copy its secret when it is shown.

02
Set the base URL

Point your compatible client to https://qfoxai.com/v1.

03
Send a chat request

Use a public QFOXAI model alias and inspect the response usage and request ID.

POST/chat/completions
200 JSON
curl https://qfoxai.com/v1/chat/completions \
  -H "Authorization: Bearer $QFOXAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "QFOXAI",
    "messages": [
      {"role": "user", "content": "Explain this clearly."}
    ]
  }'
Keep API secrets on the server Authentication guide
Production controls

A documented API with controls customers can inspect.

Build against stable public aliases while keeping authentication, limits, request tracing, and usage visible inside the QFOXAI account.

Review API behavior
Key controlsCreate, rotate, revoke, expire, and restrict customer keys.
Streaming responsesDeliver incremental output for responsive product experiences.
Request tracingUse request IDs and clear errors to diagnose integrations.
Visible usageTrack requests, tokens, latency, and available allowance.
Main developer reference

Build your first QFOXAI API request.

Open the complete documentation for authentication, endpoints, request bodies, streaming, limits, and production error handling.