# Lalal — 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 LALAL.AI blog posts on music production, vocal removal, and AI audio processing to stay updated on the latest techniques and insights. Retrieve individual articles to read full content on topics related to audio engineering and music technology.

**Category:** Music | **Website:** [lalal.ai/](https://lalal.ai/) | **Docs:** [parse.bot/marketplace/b6fa3448-6d6d-4cc1-ab30-75fae5cb42eb/lalal-ai-api](https://parse.bot/marketplace/b6fa3448-6d6d-4cc1-ab30-75fae5cb42eb/lalal-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-lalal-ai-api-b6fa3448/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post

Fetch a single blog post by its URL slug, including full HTML content body, metadata, tags, and author details. Slugs are available from search_posts or list_posts results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the post (e.g. 'hidden-gems-of-aanhpi-music'). Available from search_posts or list_posts results. |

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

### list_posts

List blog posts with optional filtering by tag slug. Returns paginated results ordered by publication date (newest first). Omitting the tag returns all posts across all categories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of posts per page, between 1 and 100. |
| `page` | integer | No | Page number for pagination. |
| `tag` | string | No | Tag slug to filter posts by (e.g. 'audio', 'video', 'ai', 'karaoke', 'music-production'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lalal-ai-api-b6fa3448/list_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","tag":"<string>"}'
```

### search_posts

Full-text search over LALAL.AI blog posts. Matches the query against post plaintext content. Returns paginated post summaries ordered by relevance. Each post exposes tags and authors inline.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of posts per page, between 1 and 100. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query to find in post content (e.g. 'vocal removal', 'karaoke'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lalal-ai-api-b6fa3448/search_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
