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

> Get detailed information about music pre-saves and releases by analyzing feature.fm links, including artist names, streaming platform URLs, release dates, and social media profiles. Quickly access comprehensive metadata and distribution links without visiting the shortlink directly.

**Category:** Music | **Website:** [feature.fm/](https://feature.fm/) | **Docs:** [parse.bot/marketplace/23c1a6a8-c18c-4220-9d69-16f6b7c320a7/feature-fm-api](https://parse.bot/marketplace/23c1a6a8-c18c-4220-9d69-16f6b7c320a7/feature-fm-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-feature-fm-api-23c1a6a8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_presave_info

Fetches release information from a feature.fm shortlink (ffm.to). Returns metadata about the release including artist name, release title, link type (pre_release or post_release), release date, available streaming services with direct URLs, cover art URL, and social media links. Accepts either a slug or full URL as input.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `shortlink` | string | Yes | The feature.fm shortlink slug (e.g. 'swimteam') or full URL (e.g. 'https://ffm.to/swimteam'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feature-fm-api-23c1a6a8/get_presave_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"shortlink":"<string>"}'
```
