Quick start

Tariq turns messy location inputs — Saudi short addresses, Arabic text, map links, and coordinates — into one normalized location object. Authenticate with an API key, call POST /v1/resolve, and store the result.

Base URL

https://api.tariqmap.com/v1

1. Get an API key

Sign up at the marketing site, create an organization, and generate a test key from the dashboard. See Authentication for details.

2. Resolve a location

curl -X POST https://api.tariqmap.com/v1/resolve \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input": "RRMF3275", "country": "SA"}'

3. Store or display

The response includes bilingual labels, coordinates, confidence, and navigation links. Persist with Locations or plot on a Map.

Next steps