Base URL
https://api.cloudeup.appAuthentication
All API requests require authentication using a Bearer token in the Authorization header:
Authorization: Bearer YOUR_API_KEYEndpoints
POST
/v1/inferenceRun inference on a deployed modelGET
/v1/modelsList all available modelsPOST
/v1/deploymentsCreate a new deploymentGET
/v1/deployments/{id}Get deployment status and detailsDELETE
/v1/deployments/{id}Delete a deploymentPOST
/v1/embeddingsGenerate embeddings for textPOST
/v1/vector/upsertUpsert vectors to your knowledge basePOST
/v1/vector/queryQuery similar vectorsExample Request
curl -X POST https://api.cloudeup.app/v1/inference \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "llama-3.1-70b",
"messages": [
{"role": "user", "content": "Hello, how are you?"}
]
}'