Predict where a photo was taken. Send an image, get coords ranked by confidence.
Outdoor landmarks and distinctive landscapes work best; indoor shots are close to impossible.
| Plan | Price | Images / month | Rate |
|---|---|---|---|
| Amateur | $9/mo | 2,000 | 0.5/sec |
| Pro | $29/mo | 10,000 | 1.0/sec |
Need more? Email noahdemar2021@u.northwestern.edu for a custom plan. Keys are issued by hand, usually the same day.
curl -H "X-API-Key: YOUR_KEY" \
-F "file=@photo.jpg" \
"https://api.noahdemar.com/predict?top_k=5"
{ "predictions": [ { "lat": 48.8584, "lon": 2.2945, "score": 0.0412 } ],
"quota_remaining": 9994 }
| Method | Path | Purpose |
|---|---|---|
POST | /predict | Locate an image. Multipart file, optional top_k (1-100) |
GET | /usage | Plan, quota, remaining calls |
GET | /health | Service status, no key needed |
Send X-API-Key: KEY or Authorization: Bearer KEY. Images up to 15 MB.
Errors: 401/403 key, 402 quota or inactive plan, 413 too large,
429 rate limit, 503 at capacity. Failed calls never count against quota.