# Soundboost — 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 in-depth blog articles on music production, mastering, and audio engineering, plus view SoundBoost's current pricing plans all in one place. Browse individual posts and explore all available subscription options to find the right plan for your needs.

**Category:** Music | **Website:** [soundboost.ai/free-vocal-remover-stem-splitter](https://soundboost.ai/free-vocal-remover-stem-splitter) | **Docs:** [parse.bot/marketplace/f9b8c0c5-95be-41cb-af6c-757018412e90/soundboost-ai-api](https://parse.bot/marketplace/f9b8c0c5-95be-41cb-af6c-757018412e90/soundboost-ai-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-soundboost-ai-api-f9b8c0c5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blog_post

Retrieve a single blog post by its URL slug. Returns full HTML content, metadata, tags, and author information. The slug is available from get_blog_posts results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the blog post (e.g. 'track-vs-stem-why-the-difference-still-matters'). Available slugs can be found in get_blog_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-soundboost-ai-api-f9b8c0c5/get_blog_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_blog_posts

Retrieve all blog posts from SoundBoost. Optionally filter by category. Returns post metadata including title, excerpt, author, date, and featured image URL. All posts returned in a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter posts by category name (case-insensitive). Omitting returns all posts. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-soundboost-ai-api-f9b8c0c5/get_blog_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_pricing

Retrieve current SoundBoost membership pricing plans including Pro and Unlimited tiers with their prices, original prices, and credit allocations. Returns all available plans in a single response.

**Estimated cost:** Metered

_No parameters required._

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