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

> Browse Spitfire Audio's complete sample library catalog. Retrieve product listings, detailed descriptions, pricing, system requirements, and Trustpilot customer reviews for any library in the store.

**Category:** Music | **Website:** [spitfireaudio.com/](https://spitfireaudio.com/) | **Docs:** [parse.bot/marketplace/d28655c1-8d13-4885-a394-a5db098f6a1c/spitfireaudio-com-api](https://parse.bot/marketplace/d28655c1-8d13-4885-a394-a5db098f6a1c/spitfireaudio-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-spitfireaudio-com-api-d28655c1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_library_details

Get detailed information for a specific sample library by its handle (URL slug). Returns the full HTML description, pricing in GBP, images, system requirements parsed from the product page, and aggregated Trustpilot user reviews including individual review content and ratings. The handle is the slug returned by list_libraries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | The unique handle/slug for the library, as returned by list_libraries (e.g. 'albion-one', 'bbc-symphony-orchestra'). |

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

### list_libraries

List all sample libraries available on the Spitfire Audio store. Returns every product aggregated across paginated results (up to 20 pages). Each library includes basic metadata: title, handle, vendor, price, SKU, and tags. Use a library's handle to fetch full details via get_library_details.

**Estimated cost:** Metered

_No parameters required._

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