Crowd-Opinion API
Submit a photorealistic image and let verified humans decide: AI or real? You get a shareable page and a results endpoint that aggregates the crowd's vote.
Prefer everything? A $2 lifetime membership includes free API keys plus a member badge.
Create an opinion
POST /api/v1/opinions — auth with Authorization: Bearer <key>.
curl -X POST https://aiornot.vote/api/v1/opinions \
-H "Authorization: Bearer aion_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"image_url":"https://example.com/photo.jpg","title":"Is this real?","tags":["portrait"]}'Body fields: image_url (required, images only for now), title, tags[], metadata. Returns id, url, results_url.
Get results
GET /api/v1/opinions/:id — public, no auth.
curl https://aiornot.vote/api/v1/opinions/OPINION_ID
Returns votes { ai, not_ai, total }, ai_percent, and a verdict(likely_ai / likely_not_ai / uncertain / insufficient_votes).
Not a detector. Results are crowd opinions from verified voters — useful signal, not a scientific AI-detection guarantee.
Full reference: docs/public-api.md