Pro
API
Notez images, texte et vidéo avec une clé Bearer dc_.
Créer des clés
Voir les offres
URL de base
https://dotcheck-server-c221c1f32c68.herokuapp.com
Authentification
Authorization: Bearer dc_…
Créez et révoquez les clés dans Check avec Google. Les clés n’apparaissent jamais sur cette page.
Endpoints
Image
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"]}'
Texte
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."]}'
Vidéo
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,…"]}'
Erreurs
401
- Clé manquante ou révoquée
403
- Pas Pro, ou clé utilisée pour gérer les clés
429
- Budget d’analyses quotidien atteint
503
- Stockage d’usage ou inférence indisponible
Limites
- Partage votre budget Pro d’usage raisonnable (jusqu’à 30 000 analyses/jour).
- Jusqu’à 5 clés actives par compte.
- La gestion des clés reste dans Check avec Google.