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.
https://qfoxai.com/v1
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.
Generate a customer API key and copy its secret when it is shown.
Point your compatible client to https://qfoxai.com/v1.
Use a public QFOXAI model alias and inspect the response usage and request ID.
/chat/completionscurl 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."}
]
}'
use Illuminate\Support\Facades\Http;
$response = Http::withToken(
env('QFOXAI_API_KEY')
)->post('https://qfoxai.com/v1/chat/completions', [
'model' => 'QFOXAI',
'messages' => [[
'role' => 'user',
'content' => 'Explain this clearly.',
]],
]);
const response = await fetch(
'https://qfoxai.com/v1/chat/completions',
{
method: 'POST',
headers: {
Authorization: `Bearer ${process.env.QFOXAI_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'QFOXAI',
messages: [{ role: 'user', content: 'Explain this clearly.' }]
})
}
);
Start with documentation, then choose a prepared path.
The API reference remains the source of truth. These downloads and guides shorten setup without hiding authentication, model selection, usage, or error handling.
API Documentation
Authentication, endpoints, streaming, limits, errors, lifecycle, and working request examples.
Open resource LaravelLaravel Package
A prepared Laravel integration path for QFOXAI chat completions and protected server-side keys.
Open resource SDKsSDK Downloads
Use ready PHP, JavaScript, Node.js, and Python starter clients in your own project.
Open resource MigrationDrop-in Migration
Move an existing compatible integration by changing the base URL, API key, and public model alias.
Open resource ExamplesIntegration Cookbook
Practical patterns for chat, streaming, retries, request IDs, and production error handling.
Open resourceTake QFOXAI into the way you already code.
The desktop editor, VS Code extension, CLI, and browser workspace use the same QFOXAI account and visible plan usage. API Docs remain the main reference for application integration.
QFOXAI Code
A dedicated QFOXAI desktop editor with account sign-in, repository-aware assistance, reviewable patches, Git workflows, and controlled local checks.
Explore toolQFOXAI Coder for VS Code
Bring repository-aware QFOXAI review, debugging, explanations, test drafting, and inspected patches into the editor you already use.
Explore toolQFOXAI Coder CLI
Run repository-aware review, debugging, implementation, testing, documentation, and patch workflows from a terminal with explicit local approval.
Explore toolQFOXAI Coder Workspace
Create private repository snapshots, ask grounded coding questions, review generated patches, and continue the result from any browser.
Explore toolA 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 behaviorBuild your first QFOXAI API request.
Open the complete documentation for authentication, endpoints, request bodies, streaming, limits, and production error handling.