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

> Browse anime news, discover shows with detailed information and episode lists, and participate in community polls and discussions all from one unified service. Search across anime.com's comprehensive database to find exactly what you're looking for.

**Category:** Entertainment | **Website:** [anime.com/](https://anime.com/) | **Docs:** [parse.bot/marketplace/1589054e-e3eb-4f62-ba2a-ba8a0391da3d/anime-com-api](https://parse.bot/marketplace/1589054e-e3eb-4f62-ba2a-ba8a0391da3d/anime-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-anime-com-api-1589054e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_news_feed

Fetch the latest anime news articles from social media and official sources. Returns paginated results sorted by recency with cursor-based pagination. Each article includes a summary, content, author, and publication date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor from a previous response's endCursor to fetch the next page. |
| `limit` | integer | No | Number of news items to fetch per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anime-com-api-1589054e/get_news_feed \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cursor":"<string>","limit":"<integer>"}'
```

### get_polls

Fetch community polls with their questions, options, and vote counts. Returns the most recent active polls.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anime-com-api-1589054e/get_polls \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_show_details

Fetch full details for a specific anime show by its slug, including description, genres, streaming platforms, episode and season counts, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Show slug identifier (e.g. 'naruto', 'one-piece', 'attack-on-titan'). Obtainable from search results or get_shows_list. |

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

### get_show_episodes

Fetch the full episode list for a specific anime show, grouped by season. Returns all episodes across all seasons with titles, air dates, descriptions, and ratings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Show slug identifier (e.g. 'naruto', 'one-piece'). Obtainable from search results or get_shows_list. |

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

### get_shows_list

Browse the anime shows catalog sorted by vote count in descending order. Returns paginated results with cursor-based pagination. The catalog includes all show types (series, OVA, ONA, specials, etc.).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor from a previous response's endCursor to fetch the next page. |
| `limit` | integer | No | Number of shows to fetch per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anime-com-api-1589054e/get_shows_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cursor":"<string>","limit":"<integer>"}'
```

### search

Search for anime shows by query string. Returns matching shows with basic metadata sorted by relevance. Supports semantic search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query string (e.g. 'naruto', 'one piece', 'demon slayer'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anime-com-api-1589054e/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
