Documentation
API Documentation
This product is sold as a packaged AI API bundle, not per model. You register, log in, receive free credit, create an API key, and start using the created endpoint immediately.
Authentication
Use a generated API key in the Authorization header.
Authorization: Bearer api_XXXXXXXXXXXXBase URL
All requests use a single bundled endpoint.
https://api.example.com/v1Example request
curl -X POST https://api.example.com/v1/chat \
-H "Authorization: Bearer api_XXXXXXXXXXXX" \
-H "Content-Type: application/json" \
-d '{
"message": "Build a launch strategy for a SaaS product",
"timezone": "UTC"
}'
Response example
{
"success": true,
"data": {
"response": "Here is a launch plan ..."
},
"credits_used": 1.1
}