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

> Check real-time inventory levels for UPPAbaby products using their SKU numbers to see what's currently in stock. Get accurate quantity information to help you find and purchase the specific UPPAbaby items you need.

**Category:** E-commerce | **Website:** [uppababy.com/strollers/full-size/vista-v3/](https://uppababy.com/strollers/full-size/vista-v3/) | **Docs:** [parse.bot/marketplace/5f089120-d67e-46ba-a9d4-bbb11103bdb0/uppababy-com-api](https://parse.bot/marketplace/5f089120-d67e-46ba-a9d4-bbb11103bdb0/uppababy-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-uppababy-com-api-5f089120/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_inventory

Look up current inventory for a single product variant by its SKU (product number). Returns stock quantity and availability status. One network round-trip per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | UPPAbaby product SKU / product number (e.g. 0303-VSO-NA-JMS). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uppababy-com-api-5f089120/get_inventory \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sku":"<string>"}'
```
