Pro
API
Puntúa imagen, texto y vídeo con una clave Bearer dc_.
Crear claves
Ver planes
URL base
https://dotcheck-server-c221c1f32c68.herokuapp.com
Autenticación
Authorization: Bearer dc_…
Crea y revoca claves en Check con Google. Las claves nunca aparecen en esta página.
Endpoints
Imagen
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"]}'
Texto
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."]}'
Vídeo
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,…"]}'
Errores
401
- Clave ausente o revocada
403
- No es Pro, o la clave se usó para gestionar claves
429
- Presupuesto diario de análisis agotado
503
- Almacén de uso o inferencia no disponible (cierre a prueba de fallos)
Límites
- Comparte tu presupuesto Pro de uso razonable (hasta 30.000 análisis/día).
- Hasta 5 claves activas por cuenta.
- La gestión de claves permanece en Check con Google.