# Giant Bicycles — 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.

> Shop Giant Bicycles with ease by browsing categories, searching specific models, viewing detailed specs and pricing, and checking real-time inventory across retail locations. Find nearby stores and discover clearance deals all in one place.

**Category:** E-commerce | **Website:** [giant-bicycles.com/](https://giant-bicycles.com/) | **Docs:** [parse.bot/marketplace/11db0c41-75d3-4591-b1b8-3d8147f69da4/giant-bicycles-com-api](https://parse.bot/marketplace/11db0c41-75d3-4591-b1b8-3d8147f69da4/giant-bicycles-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-giant-bicycles-com-api-11db0c41/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_retail_stores

Finds Giant authorized retail stores near a location. Returns dealers with name, address, phone, coordinates, and store type, plus campaign/program descriptions for store types (Giant Store, Partner Store, Click & Collect).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | City name or zip code to search for nearby stores (e.g. New York, 90210). |
| `lat` | number | No | Latitude for location-based search. |
| `lng` | number | No | Longitude for location-based search. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/find_retail_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","lat":"<number>","lng":"<number>"}'
```

### get_bike_details

Returns full details for a specific bike model including specs, geometry, variant/color images, and part numbers. Accepts a product URL path, slug, or full URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Product URL path or slug (e.g. /us/propel-advanced-1-2027 or propel-advanced-1-2027). Full URLs starting with https:// are also accepted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/get_bike_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_bike_categories

Returns the top-level bike categories available on the Giant Bicycles US site. Each category has a name, slug, and full URL. Use slugs with list_bikes_by_category to browse models within a category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/list_bike_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_bikes_by_category

Returns all bike models in a given category or subcategory. Each result includes name, URL, price, thumbnail image, and tags. Use category slugs from list_bike_categories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug from list_bike_categories (road-bikes, mountain-bikes, cross-and-gravel-bikes, fitness-and-city-bikes, e-bikes, kids-bikes). |
| `subcategory` | string | No | Optional subcategory slug to narrow results within a category. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/list_bikes_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","subcategory":"<string>"}'
```

### list_clearance_bikes

Returns all bikes currently on clearance/sale on the Giant Bicycles US site. Each bike includes name, URL, price, and tags.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/list_clearance_bikes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_gear_categories

Returns all gear categories and subcategories available on the Giant Bicycles US site, including rider gear, bike gear, components, helmets, and shoes.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/list_gear_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_bikes

Searches for bike models and products by keyword on the Giant Bicycles US site. Returns matching products with name, URL, and type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. propel, mountain, defy). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-giant-bicycles-com-api-11db0c41/search_bikes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
