# Ratp — 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.

> Monitor real-time traffic conditions and service disruptions across Paris's RATP and RER networks to plan your commute efficiently. Get instant updates on line statuses, delays, and service alerts for all metro and regional rail lines.

**Category:** Travel | **Website:** [ratp.fr/](https://ratp.fr/) | **Docs:** [parse.bot/marketplace/b0532457-bbe2-41d7-8f34-8eec607c675c/ratp-fr-api](https://parse.bot/marketplace/b0532457-bbe2-41d7-8f34-8eec607c675c/ratp-fr-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-ratp-fr-api-b0532457/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_traffic

Get an overview of traffic status for all RER lines (A through E) in Paris. Each line includes a name, a French-language summary of current conditions, and a numeric severity level where 0 means normal operation and higher values indicate increasing disruption severity.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ratp-fr-api-b0532457/get_all_traffic \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_disruptions

Get detailed information about current and upcoming perturbations (disruptions) for all RER lines (A through E) in Paris. Returns only lines that have active disruptions or a non-normal status level. When no disruptions exist, returns a message field instead.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ratp-fr-api-b0532457/get_disruptions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_rer_a_traffic

Get real-time traffic status for RER A, including current status classification and detailed disruption information. Returns the line status (normal, planned_works, perturbed, critical), a French-language summary, and an array of active disruptions with type, location, and message. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ratp-fr-api-b0532457/get_rer_a_traffic \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
