# Jbhunt — 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 J.B. Hunt shipments in real-time for both business and home deliveries, search for service information across their site, and access freight class and location data for LTL quoting. Get company information and reference data to support your logistics and shipping needs.

**Category:** Other | **Website:** [jbhunt.com/](https://jbhunt.com/) | **Docs:** [parse.bot/marketplace/33eb3e02-560a-4e96-b14f-dba4c741d533/jbhunt-com-api](https://parse.bot/marketplace/33eb3e02-560a-4e96-b14f-dba4c741d533/jbhunt-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-jbhunt-com-api-33eb3e02/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_overview

Returns high-level company facts, statistics, and value propositions about J.B. Hunt Transport Services. Includes service offerings, technology platforms, fleet size, and geographic coverage. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/get_company_overview \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_freight_classes

Returns the standard LTL freight classes available for quoting on J.B. Hunt. No input parameters required. Each class has a name and value representing the NMFC freight class code.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/get_freight_classes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_locations

Search for shipping locations (cities and ZIP codes) to get valid origin/destination values for LTL routing or quoting. Returns matching city/state/ZIP combinations. Results include local time at each location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | City name or ZIP code to search (e.g. 'Chicago', '60601', 'Los Angeles'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/search_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_site

Full-text search across jbhunt.com content including services, company news, blog posts, and support pages. Returns paginated results with title, link, and description for each match. Paginates via integer page number; each page returns up to 20 results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. |
| `query` | string | Yes | Search query string (e.g. 'intermodal', 'LTL shipping', 'tracking'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/search_site \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```

### track_business_shipment

Track a B2B business shipment using order number, BOL, or other keys. Requires a reCAPTCHA token for production use.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/track_business_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### track_home_delivery_shipment

Track a final mile/home delivery shipment. Requires a reCAPTCHA token for production use.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jbhunt-com-api-33eb3e02/track_home_delivery_shipment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
