Pro
API
Pontue imagens, texto e vídeo com uma chave Bearer dc_.
Criar chaves
Ver planos
URL de base
https://dotcheck-server-c221c1f32c68.herokuapp.com
Autenticação
Authorization: Bearer dc_…
Crie e revoque chaves no Check com Google. As chaves nunca aparecem nesta página.
Endpoints
Imagem
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,…"]}'
Erros
401
- Chave em falta ou revogada
403
- Não é Pro, ou a chave foi usada para gerir chaves
429
- Orçamento diário de análises atingido
503
- Armazenamento de uso ou inferência indisponível
Limites
- Partilha o orçamento Pro de utilização justa (até 30.000 análises/dia).
- Até 5 chaves ativas por conta.
- A gestão de chaves permanece no Check com Google.