API Reference

Integrate location recognition into your applications

10K

Requests/month

99.9%

Uptime

0

Total requests

API Keys

Manage your API keys for authentication

Quick Start

cURL

curl -X POST https://pic2nav.app/api/location-recognition-v2 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "image=@photo.jpg"

JavaScript

const formData = new FormData();
formData.append('image', file);

const response = await fetch('https://pic2nav.app/api/location-recognition-v2', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
  body: formData
});

const data = await response.json();

Python

import requests

headers = {'Authorization': 'Bearer YOUR_API_KEY'}
files = {'image': open('photo.jpg', 'rb')}

response = requests.post(
    'https://pic2nav.app/api/location-recognition-v2',
    headers=headers,
    files=files
)

data = response.json()

Need More?

Upgrade for higher limits

  • 100K requests/month
  • Priority support
  • Custom rate limits
  • Webhook notifications