# Finish Line — 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 browse Finish Line's sneaker catalog, get detailed product information with pricing and availability, check upcoming sneaker releases, and find nearby store locations. Access product suggestions and inventory data across Finish Line's full product listing to compare options and track release dates.

**Category:** E-commerce | **Website:** [finishline.com/](https://finishline.com/) | **Docs:** [parse.bot/marketplace/672daa0f-c80f-4bc6-adbb-38fee724e574/finishline-com-api](https://parse.bot/marketplace/672daa0f-c80f-4bc6-adbb-38fee724e574/finishline-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-finishline-com-api-672daa0f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Fetch detailed product information from a PDP URL, including sizes, SKU-level stock status, colors, and descriptions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product detail page URL (e.g. from search_products hits[*].url) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finishline-com-api-672daa0f/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_product_listing_page

Browse products by category. Returns paginated product listings for a given category slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category slug. Accepted values: mens-shoes, mens-clothing, womens-shoes, womens-clothing, boys-shoes, boys-clothing, girls-shoes, girls-clothing, mens, womens, boys, girls, accessories |
| `limit` | integer | No | Max results per page |
| `page` | integer | No | Page number (0-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finishline-com-api-672daa0f/get_product_listing_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_search_suggestions

Get search autocomplete suggestions and product previews for a partial query. Returns up to 5 product suggestions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search query |

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

### get_sneaker_releases

Retrieve recent and upcoming sneaker release dates and details from the release calendar. Returns up to 50 releases.

**Estimated cost:** Metered

_No parameters required._

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

### get_store_locator

Search for physical store locations by city name or geolocation coordinates. Returns up to 20 nearby stores.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lat` | string | No | Latitude for geo search (e.g. '41.8781') |
| `lng` | string | No | Longitude for geo search (e.g. '-87.6298') |
| `query` | string | No | City name to search (e.g. 'New York', 'Chicago') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-finishline-com-api-672daa0f/get_store_locator \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lat":"<string>","lng":"<string>","query":"<string>"}'
```

### search_products

Search for products by keyword. Returns paginated product results with names, prices, images, brands, and URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results per page |
| `page` | integer | No | Page number (0-based) |
| `query` | string | Yes | Search keyword (e.g. 'Jordan', 'Nike Dunk') |

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