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

> Discover and retrieve music sample packs, remix contests, public assets, and blog content from Fadr's AI music platform to enhance your music creation and remixing projects. Access curated music resources and stay updated with the latest posts from Fadr's community.

**Category:** Music | **Website:** [fadr.com/](https://fadr.com/) | **Docs:** [parse.bot/marketplace/2f62f57b-ff8d-4562-b811-81784c6a08b9/fadr-com-api](https://parse.bot/marketplace/2f62f57b-ff8d-4562-b811-81784c6a08b9/fadr-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-fadr-com-api-2f62f57b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_asset

Retrieve details for a specific asset by its ID. Returns metadata including file type, tempo, musical key, sample rate, stems, MIDI data, tags, and engagement counts. The asset_id can be obtained from get_packs asset_ids, get_contests asset_ids, or get_public_assets results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `asset_id` | string | Yes | The asset ID, a 24-character hex string. Can be obtained from get_packs asset_ids, get_contests asset_ids, or get_public_assets results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fadr-com-api-2f62f57b/get_asset \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"asset_id":"<string>"}'
```

### get_contests

Retrieve all remix contests. Returns contest details including collaborating artists, dates, SoundCloud links, and associated assets. Results are returned in a single response with no pagination.

**Estimated cost:** Metered

_No parameters required._

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

### get_packs

Retrieve all available remix packs (library categories). Each pack contains a collection of licensed songs or loops organized by genre/theme. Returns the full list in a single response with no pagination.

**Estimated cost:** Metered

_No parameters required._

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

### get_public_assets

Retrieve all publicly available assets on the platform. Returns a large list of songs, remixes, and other audio content with metadata and engagement counts. Results are returned in a single response with no pagination.

**Estimated cost:** Metered

_No parameters required._

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