Easily integrate our APIs with your services. Looking for a step-by-step tutorial? Head to our Quickstart guide to see how to integrate Mila API in your project.

Base URL

The base URL for all requests to the Mila API is:
https://api.milaapi.com

Authentication

All Mila endpoints are authenticated using API keys. Get your free API key.
curl -X POST https://api.milaapi.com/v1/places/nearby \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"latitude": 40.7128, "longitude": -74.0060, "categories": ["restaurant"], "limit": 5}'

Endpoints

/v1/places/nearby Find places near a given location with powerful filtering options. /v1/places/autocomplete Search for places by name with intelligent autocomplete suggestions. /v1/places/ Get detailed information about a specific place by its ID.