# DSV — 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 DSV shipments in real-time using reference numbers like STT numbers, waybill numbers, or container numbers to get up-to-date delivery status and location information. Monitor multiple shipment types across DSV's global network with a single lookup tool.

**Category:** Other | **Website:** [www.dsv.com/mydsv/tracking-public/](https://www.dsv.com/mydsv/tracking-public/) | **Docs:** [parse.bot/marketplace/4c453186-58b5-4c09-a718-7567d8749b1e/dsv-com-api](https://parse.bot/marketplace/4c453186-58b5-4c09-a718-7567d8749b1e/dsv-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-dsv-com-api-4c453186/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### track_shipment

Track a shipment by reference number. Without a reference_type, searches across all reference types. With a reference_type, narrows the search to that specific type. Returns matching shipment tracking information including transport mode, progress percentage, origin/destination, and dates. A single reference number may match multiple shipments.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `reference_number` | string | Yes | The tracking reference number to search for (e.g. an STT number, waybill number, container number, booking ID, etc.). |
| `reference_type` | string | No | Filter the search to a specific reference type. When omitted, searches across all types. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dsv-com-api-4c453186/track_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"reference_number":"<string>","reference_type":"<string>"}'
```
