API Documentation
Everything you need to integrate and use FusionPointAI services in your applications.
Getting Started
Welcome to FusionPointAI API documentation. Our APIs provide unlimited access to premium AI models with enterprise-grade reliability and support.
Base URL
https://api.fusionpointai.com/v1/
Quick Example
curl -X POST https://api.fusionpointai.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [
{
"role": "user",
"content": "Hello, how are you?"
}
]
}'
Authentication
All API requests require authentication using your API key. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Note: Keep your API key secure and never expose it in client-side code.
Rate Limits
FusionPointAI provides unlimited usage with no token restrictions. However, we implement reasonable rate limits to ensure service quality:
- Requests per minute: 1000
- Concurrent requests: 100
- Tokens per request: No limit
If you need higher limits, please contact our support team.
OpenAI GPT API
Access all OpenAI GPT models through our compatible API endpoints.
Available Models
gpt-4- Latest GPT-4 modelgpt-4-turbo- GPT-4 Turbo with improved speedgpt-3.5-turbo- Fast and efficient GPT-3.5
Chat Completions
POST /v1/chat/completions
{
"model": "gpt-4",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "What is artificial intelligence?"}
],
"temperature": 0.7,
"max_tokens": 1000
}
Error Handling
Our API uses standard HTTP status codes to indicate success or failure:
| Status Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid API key |
| 429 | Rate limit exceeded |
| 500 | Internal server error |
Get Support
Need help with integration or have questions about our APIs?