Migration guides
Move to QFOXAI without rebuilding your app
Use QFOXAI as an OpenAI-compatible provider for Laravel apps, WordPress sites, automation workflows, support tools, and custom products. Keep the provider setup simple: base URL, API key, model alias.
Base URLhttps://qfoxai.com/v1
ModelQFOXAI
AuthAuthorization: Bearer qf_...
5 minutes
OpenAI to QFOXAI
Keep your OpenAI-compatible SDK and change only the API key, base URL, and public model alias.
- Create a QFOXAI API key.
- Set the base URL to https://qfoxai.com/v1.
- Use model QFOXAI or any alias from /v1/models.
- Test with the API playground or Postman collection.
10 minutes
Laravel apps
Use Laravel HTTP Client or an OpenAI-compatible package with server-side environment variables.
- Put QFOXAI_API_KEY in .env.
- Use Http::withToken() from backend code only.
- Add retry/backoff for 429 and 5xx responses.
- Log X-QFOXAI-Request-ID for support.
15 minutes
WordPress and agency sites
Install the starter shortcode plugin and keep the API key stored in WordPress settings.
- Download the QFOXAI WordPress plugin starter.
- Configure the API key from the admin settings page.
- Add [qfoxai_chat] to a page.
- Limit usage with key quotas in QFOXAI.
10 minutes
Automation tools
Use HTTP modules, n8n starter nodes, or webhooks to connect QFOXAI to business workflows.
- Set Authorization Bearer header.
- POST to /v1/chat/completions.
- Use webhook events for subscription and quota changes.
- Monitor usage in the dashboard.