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

> Retrieve blog posts and organize them by category from Anything.com's AI app builder platform. Use this to access detailed content about AI development, tutorials, and platform updates directly from their official blog.

**Category:** Developer Tools | **Website:** [anything.com/](https://anything.com/) | **Docs:** [parse.bot/marketplace/50d84b20-be0a-45ed-9dc8-5e9799efe919/anything-com-api](https://parse.bot/marketplace/50d84b20-be0a-45ed-9dc8-5e9799efe919/anything-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-anything-com-api-50d84b20/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post

Retrieve a single blog post by its URL slug, including full structured content blocks (portable text), metadata, category, author, and main image. Content is returned as Sanity portable text blocks with text, marks, and link definitions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the blog post (e.g. anything-series-a, cursor-alternatives). |

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

### list_categories

List all available blog categories with their IDs and slugs. Categories are returned in alphabetical order by title.

**Estimated cost:** Metered

_No parameters required._

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

### list_posts

List blog posts ordered by publication date (newest first). Supports filtering by category slug and pagination via offset/limit. Returns post summaries including title, slug, excerpt, category, author, and main image URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter posts by category slug (e.g. articles, company, insights, stories, tutorials). Omitting returns posts from all categories. |
| `limit` | integer | No | Maximum number of posts to return per page. |
| `offset` | integer | No | Number of posts to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anything-com-api-50d84b20/list_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","offset":"<integer>"}'
```
