# SMSA Express — 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 SMSA Express shipments in real-time by entering one or multiple AWB tracking numbers to get delivery status and location updates. Monitor the progress of your packages from dispatch to delivery with comprehensive shipment information.

**Category:** Other | **Website:** [www.smsaexpress.com/en/gb](https://www.smsaexpress.com/en/gb) | **Docs:** [parse.bot/marketplace/85695726-b5dc-4578-bd8c-9e22a1c676f3/smsaexpress-com-api](https://parse.bot/marketplace/85695726-b5dc-4578-bd8c-9e22a1c676f3/smsaexpress-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-smsaexpress-com-api-85695726/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### track_shipment

Track one or more shipments by their SMSA Express tracking numbers (AWB numbers). Returns shipment status and tracking details for each valid tracking number found. Multiple tracking numbers can be provided separated by commas or spaces.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language for tracking response. Accepts: EN, AR, FR. |
| `tracking_numbers` | string | Yes | One or more SMSA Express tracking numbers (AWB numbers), separated by commas or spaces (e.g. '290019498498' or '290019498498,290019934499'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-smsaexpress-com-api-85695726/track_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>","tracking_numbers":"<string>"}'
```
