CUTO REST API
Die CUTO API ermöglicht programmatischen Zugriff auf alle CUTO-Funktionen.
Basis-URL
https://api.cuto.ai/v1Authentifizierung
CUTO verwendet Bearer-Token-Authentifizierung:
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
https://api.cuto.ai/v1/projectsAPI-Token erstellen
Rate Limits
| Professional | 300 | 50.000 |
| Enterprise | 1.000 | Unlimited |
Response-Format
Alle Responses sind JSON:
{
"data": { ... },
"meta": {
"page": 1,
"total": 42
}
}Fehler-Handling
{
"error": {
"code": "NOT_FOUND",
"message": "Project not found",
"details": { ... }
}
}apirestauthentifizierungentwickler