# Tomtom — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Get TomTom Traffic Index congestion rankings for cities worldwide or within a specific country, and retrieve detailed traffic metrics for a given city (including AM/PM and monthly trends).

**Category:** Maps & Geospatial | **Website:** [tomtom.com/](https://tomtom.com/) | **Docs:** [parse.bot/marketplace/32b3a9de-f69e-4ed3-9cd8-cc74c4d644be/tomtom-com-api](https://parse.bot/marketplace/32b3a9de-f69e-4ed3-9cd8-cc74c4d644be/tomtom-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-tomtom-com-api-32b3a9de/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_city_details

Get detailed traffic information for a specific city including base congestion, AM/PM peak metrics (peak hour and congestion percentage), and monthly trend data for the year. The city key can be obtained from the ranking endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City key in lowercase hyphenated format (e.g. 'london', 'new-york-ny', 'mexico-city', 'belfast'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tomtom-com-api-32b3a9de/get_city_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>"}'
```

### get_congestion_rankings

Get global city congestion rankings across multiple countries. Returns cities sorted by congestion score (highest first). Each city includes its key, name, country, AM/PM metrics, congestion score, and rank. When no countries are specified, defaults to the first 10 countries alphabetically from the internal list. Fetching many countries is expensive — one HTTP round-trip per country.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `countries` | string | No | Comma-separated list of country keys to include (e.g. 'united-kingdom,mexico,united-states-of-america'). Omitting returns cities from default set of countries. |
| `limit` | integer | No | Maximum number of cities to return in the ranking. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tomtom-com-api-32b3a9de/get_congestion_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"countries":"<string>","limit":"<integer>"}'
```

### get_country_rankings

Get congestion rankings for cities within a specific country. Returns cities sorted by congestion score (highest first). Each city includes its key, name, AM/PM metrics, congestion score, and rank within the country.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | Yes | Country key in lowercase hyphenated format (e.g. 'united-kingdom', 'united-states-of-america', 'mexico', 'france'). |
| `limit` | integer | No | Maximum number of cities to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tomtom-com-api-32b3a9de/get_country_rankings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","limit":"<integer>"}'
```
