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
- 1日の分析上限に達した
503
- 利用ストアまたは推論が利用不可
制限
- Pro のフェアユース枠を共有(1日最大 30,000 分析)。
- アカウントあたり有効キー最大 5。
- キー管理は Google サインインの Check に残ります。