# Cnc Line — 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.

> Track your CNC Line shipments in real-time by entering your container number, bill of lading, or booking number to get current location and delivery status updates. Monitor intra-Asia cargo movements across the CMA CGM Group network and stay informed every step of the way.

**Category:** Other | **Website:** [www.cnc-line.com/](https://www.cnc-line.com/) | **Docs:** [parse.bot/marketplace/0a533896-d141-473b-ad25-6237f8f61d92/cnc-line-com-api](https://parse.bot/marketplace/0a533896-d141-473b-ad25-6237f8f61d92/cnc-line-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-cnc-line-com-api-0a533896/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_shipment_tracking

Track a shipment by container number, bill of lading, or booking number. Returns detailed shipment tracking data including container status, route (port of loading, port of discharge), movement history (past, current, and provisional moves with vessel/voyage details), and progress indicators. The reference can be a container number (e.g. CMAU1043320), bill of lading number, or booking number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `reference` | string | Yes | Container number, bill of lading number, or booking number to track. Container numbers follow ISO 6346 format (4 letters + 7 digits, e.g. CMAU1043320). Multiple references (up to 3) can be comma-separated. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cnc-line-com-api-0a533896/get_shipment_tracking \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"reference":"<string>"}'
```
