Pro

API

Bearer dc_ 키로 이미지·텍스트·동영상 점수를 매깁니다.

키 만들기 요금제 보기

기본 URL

https://dotcheck-server-c221c1f32c68.herokuapp.com

인증

Authorization: Bearer dc_…

Google로 Check에서 키를 만들고 취소하세요. 키는 이 페이지에 나타나지 않습니다.

엔드포인트

이미지

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"]}'

텍스트

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."]}'

동영상

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,…"]}'

오류

401
키 없음 또는 폐기됨
403
Pro 아님, 또는 키 관리에 키를 사용함
429
일일 분석 한도 도달
503
사용량 저장소 또는 추론 불가

한도

  • Pro 공정 사용 한도를 공유합니다(하루 최대 30,000회 분석).
  • 계정당 활성 키 최대 5개.
  • 키 관리는 Google 로그인의 Check에 남습니다.