Skip to content

FAQ

What models are supported?

Any APIsupports models from Claude, OpenAI, Gemini, Azure, AWS Bedrock and 40+ other providers, updated in sync with the official sources. You can view all available models on the "Models" page in the admin dashboard.

How do I get an API key?

  1. Log in to the admin dashboard
  2. Go to the "Tokens" page
  3. Click "Add Token"
  4. Set a name and quota, then save
  5. Copy the generated API key

WARNING

Keep your key secure and do not share it with others.

What calling formats are supported?

The platform is compatible with the OpenAI API format. Simply replace the request URL with your Any API URL to seamlessly integrate with ChatGPT Next Web, Lobe Chat, and other third-party clients and frameworks.

bash
# Example: Using curl
curl https://anyapi.pro/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

What if I run out of quota?

Go to the "Topup" page in the admin dashboard to add quota, or contact the administrator for more.

How do I view usage history?

Go to the "Logs" page in the admin dashboard to view model, token usage, and billing details for each API call.

Is my code secure?

  • Code is transmitted via encrypted connections; the platform does not store code content
  • Conversation history is stored locally
  • Sensitive operations require confirmation

How to troubleshoot connection issues?

  1. Check if environment variables are set correctly
  2. Confirm the API key is valid and has available quota
  3. Check if the request URL is correct (⚠️ don't miss the /v1 path)

See Troubleshooting for more details.

API PLAT