# Tracker Shadowfax — 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 Shadowfax shipments in real-time and monitor delivery status, while accessing the company's latest blogs and website configuration details. Validate tracking IDs and retrieve up-to-date content and header announcements from the Shadowfax platform.

**Category:** E-commerce | **Website:** [tracker.shadowfax.in/](https://tracker.shadowfax.in/) | **Docs:** [parse.bot/marketplace/79d634ca-6854-4cbf-bdbb-e65b54390996/tracker-shadowfax-in-api](https://parse.bot/marketplace/79d634ca-6854-4cbf-bdbb-e65b54390996/tracker-shadowfax-in-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-tracker-shadowfax-in-api-79d634ca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blogs

List blog posts from the Shadowfax website. Returns a paginated collection of posts with title, slug, image, category, full HTML content, and publication metadata. 10 posts per page. Pagination advances via the page parameter; the response includes nextPage (-1 when no more pages) and total count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tracker-shadowfax-in-api-79d634ca/get_blogs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### get_header_config

Retrieve active header announcements from the Shadowfax website. Returns an array of announcement objects when configured; the array is empty when no announcements are currently active.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tracker-shadowfax-in-api-79d634ca/get_header_config \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### track_shipment

Track a shipment by AWB number. First resolves the AWB to an internal unique_code, then fetches tracking details including current status. For invalid AWBs returns valid=false with an error message. A valid response includes the shipment's tracking status and unique_code.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `awb_number` | string | Yes | Shipment AWB/Tracking ID to track. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tracker-shadowfax-in-api-79d634ca/track_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"awb_number":"<string>"}'
```

### validate_tracking_id

Validate whether a given AWB number corresponds to a known Shadowfax shipment. Returns a boolean validity flag and, when valid, the internal unique_code that identifies the shipment downstream. Useful as a lightweight pre-check before requesting full tracking details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `awb_number` | string | Yes | Shipment AWB/Tracking ID to validate. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tracker-shadowfax-in-api-79d634ca/validate_tracking_id \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"awb_number":"<string>"}'
```
