Pro
API
Punteggia immagini, testo e video con una chiave Bearer dc_.
Crea chiavi
Vedi piani
URL di base
https://dotcheck-server-c221c1f32c68.herokuapp.com
Autenticazione
Authorization: Bearer dc_…
Crea e revoca le chiavi in Check con Google. Le chiavi non compaiono mai in questa pagina.
Endpoint
Immagine
POST /analyze-image
Body {"image_urls":["https://…"]} (HTTPS or data URLs). Response: probability 0–1.
curl -X POST "https://dotcheck-server-c221c1f32c68.herokuapp.com/analyze-image" \
-H "Authorization: Bearer dc_live_…" \
-H "Content-Type: application/json" \
-d '{"image_urls":["https://example.com/photo.jpg"]}'
Testo
POST /analyze-text
Body {"texts":["…"]}. English, Spanish, Portuguese, French, Italian, German, Dutch. Other languages are not scored.
curl -X POST "https://dotcheck-server-c221c1f32c68.herokuapp.com/analyze-text" \
-H "Authorization: Bearer dc_live_…" \
-H "Content-Type: application/json" \
-d '{"texts":["Sample paragraph to score."]}'
Video
POST /analyze-video
Body frames — up to three image data URLs. Response includes aggregated probability.
curl -X POST "https://dotcheck-server-c221c1f32c68.herokuapp.com/analyze-video" \
-H "Authorization: Bearer dc_live_…" \
-H "Content-Type: application/json" \
-d '{"video_url":"https://example.com/clip.mp4","frames":["data:image/jpeg;base64,…"]}'
Errori
401
- Chiave mancante o revocata
403
- Non Pro, o chiave usata per gestire le chiavi
429
- Budget giornaliero di analisi raggiunto
503
- Archivio utilizzo o inferenza non disponibile
Limiti
- Condivide il budget Pro di uso corretto (fino a 30.000 analisi/giorno).
- Fino a 5 chiavi attive per account.
- La gestione delle chiavi resta in Check con accesso Google.