# UPS — 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 UPS shipments in real-time by entering a tracking number to get current delivery status, estimated arrival dates, and detailed location milestones. View the complete activity history of your package from pickup through delivery to stay informed every step of the way.

**Category:** E-commerce | **Website:** [www.ups.com/track?loc=nl_NL&requester=ST/](https://www.ups.com/track?loc=nl_NL&requester=ST/) | **Docs:** [parse.bot/marketplace/6ea0b4fb-5d33-4e3c-9bfa-b8ef93d3b42e/ups-com-api](https://parse.bot/marketplace/6ea0b4fb-5d33-4e3c-9bfa-b8ef93d3b42e/ups-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-ups-com-api-6ea0b4fb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### track_shipment

Track a UPS shipment by its tracking number. Returns the current status, delivery information, milestones, and detailed shipment progress activities. Supports UPS tracking number formats (1Z, mail innovations, freight, etc). Each call tracks one shipment; for invalid numbers UPS returns input_format_invalid, for valid-format numbers not found in their system it returns input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `locale` | string | No | Locale for the response language and formatting (e.g. en_US, nl_NL, de_DE). When omitted, defaults to en_US. |
| `tracking_number` | string | Yes | UPS tracking number (e.g. 1Z999AA10123456784). Supports standard 1Z format and other UPS tracking number formats. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ups-com-api-6ea0b4fb/track_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"locale":"<string>","tracking_number":"<string>"}'
```
