# Uhaul — 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.

> Search and compare U-Haul truck rentals, trailers, and storage unit rates across locations while browsing available truck types and moving supplies categories. Find nearby U-Haul branches and instantly access pricing information to plan your move.

**Category:** Travel | **Website:** [uhaul.com/](https://uhaul.com/) | **Docs:** [parse.bot/marketplace/ab1aaff4-aba3-4e4e-95c6-b6d6bf006434/uhaul-com-api](https://parse.bot/marketplace/ab1aaff4-aba3-4e4e-95c6-b6d6bf006434/uhaul-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-uhaul-com-api-ab1aaff4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_locations

Find U-Haul locations near a given address, city, or zip code. Returns location details including address, phone, hours, services offered, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Address, city and state (e.g. 'Phoenix, AZ'), or zip code (e.g. '85001'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/find_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```

### get_facility_units

Get available storage units and prices for a specific facility. Returns facility info and all available unit sizes with pricing and features. The facility_url comes from search_facilities results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `facility_url` | string | Yes | Full URL of the facility page (e.g. from search_facilities results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/get_facility_units \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"facility_url":"<string>"}'
```

### get_moving_supplies_categories

Returns the list of moving supply product categories available on U-Haul, including boxes, packing supplies, covers, tools, and more. No input required.

**Estimated cost:** Metered

_No parameters required._

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

### get_truck_types

Returns static information about all U-Haul truck types with detailed specifications including dimensions, capacity, weight, MPG, and towing capacity. No input required.

**Estimated cost:** Metered

_No parameters required._

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

### search_facilities

Search for self-storage facilities near a given location. Returns facility names, addresses, ratings, reviews, and starting prices without fetching individual unit details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Zip code (e.g. '85001') or city and state (e.g. 'Phoenix, AZ'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/search_facilities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```

### search_storage_units

Search for self-storage units near a location. Fetches the first few facilities and their available unit details including dimensions, pricing, and features. Combines facility search with unit detail retrieval.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Zip code (e.g. '85001') or city and state (e.g. 'Phoenix, AZ'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/search_storage_units \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```

### search_trailer_rates

Search for available trailer types on U-Haul. Returns trailer names and URLs. Actual pricing requires towing vehicle selection on the U-Haul site, so this returns the available trailer type catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pickup_date` | string | Yes | Pickup date in MM/DD/YYYY format (e.g. '07/01/2026'). |
| `pickup_location` | string | Yes | Pickup city and state (e.g. 'Phoenix, AZ') or zip code. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/search_trailer_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pickup_date":"<string>","pickup_location":"<string>"}'
```

### search_truck_rates

Search for available trucks and pricing between two locations on a given date. Returns truck names, daily rates, mileage rates, and moving type recommendations. One-way moves include mileage in the rate; in-town rates show per-mile charges separately.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `dropoff_location` | string | No | Drop-off location for one-way rentals (e.g. 'Los Angeles, CA'). Omitting returns in-town rates. |
| `pickup_date` | string | Yes | Pickup date in MM/DD/YYYY format (e.g. '07/01/2026'). |
| `pickup_location` | string | Yes | Pickup city and state (e.g. 'Phoenix, AZ') or zip code. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uhaul-com-api-ab1aaff4/search_truck_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"dropoff_location":"<string>","pickup_date":"<string>","pickup_location":"<string>"}'
```
