# Sharegrid — 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 peer-to-peer camera gear rentals and purchases on ShareGrid by location and keywords, then view detailed information about specific equipment listings. Get autocomplete suggestions to quickly find the filmmaking and creator gear you need.

**Category:** Marketplaces | **Website:** [www.sharegrid.com/](https://www.sharegrid.com/) | **Docs:** [parse.bot/marketplace/bb1a7654-37cc-43a0-99dc-67e6f68aea36/sharegrid-com-api](https://parse.bot/marketplace/bb1a7654-37cc-43a0-99dc-67e6f68aea36/sharegrid-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-sharegrid-com-api-bb1a7654/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### autosuggest

Autocomplete suggestions for a search query. Returns both product suggestions (gear names with IDs) and people suggestions (vendors/creators with usernames and avatars). Useful for building search-ahead UIs or discovering canonical product names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_type` | string | No | Type of listing |
| `location` | string | No | Community slug (e.g., 'losangeles', 'newyork') |
| `query` | string | Yes | Search query to get suggestions for |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sharegrid-com-api-bb1a7654/autosuggest \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_type":"<string>","location":"<string>","query":"<string>"}'
```

### get_listing_detail

Fetch full details of a single listing by its numeric ID. Returns comprehensive information including description, all image derivatives (thumb/big/original), kit items, author profile, pricing tiers, category, product info, custom fields, active promotions, and related suggestions. The listing_id is available from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community` | string | No | Community slug (e.g., 'losangeles', 'newyork') |
| `listing_id` | string | Yes | Numeric listing ID from search results |
| `listing_type` | string | No | Type of listing |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sharegrid-com-api-bb1a7654/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community":"<string>","listing_id":"<string>","listing_type":"<string>"}'
```

### search_listings

Full-text search over gear listings in a ShareGrid community. Returns paginated results with listing summaries including pricing, author, location, and delivery options. Pagination via page counter; each page holds up to 48 listings. Supports both rental and buy listing types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_type` | string | No | Type of listing to search |
| `location` | string | No | Community slug for location (e.g., 'losangeles', 'newyork', 'chicago', 'sfbay', 'miami', 'boston', 'denver') |
| `max_pages` | integer | No | Maximum number of pages to fetch in a single call |
| `page` | integer | No | Page number (1-based) |
| `query` | string | Yes | Search term (e.g., 'camera', 'lens', 'tripod', 'sony fx6') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sharegrid-com-api-bb1a7654/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_type":"<string>","location":"<string>","max_pages":"<integer>","page":"<integer>","query":"<string>"}'
```
