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

> Stay updated on the anime world by fetching the top anime news stories of the week and browsing the latest articles from Anime Corner. Discover trending posts and breaking news in the anime community all in one place.

**Category:** Entertainment | **Website:** [animecorner.me/](https://animecorner.me/) | **Docs:** [parse.bot/marketplace/9a586e92-2bc3-4d09-8493-569b2659a5de/animecorner-me-api](https://parse.bot/marketplace/9a586e92-2bc3-4d09-8493-569b2659a5de/animecorner-me-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-animecorner-me-api-9a586e92/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_news

Get latest anime news articles from Anime Corner with pagination support. Returns 10 articles per page. Each article includes title, url, author, publication date, image, and excerpt. Paginates via integer page counter; the SDK auto-advances pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug to filter articles. Confirmed working values: news. |
| `page` | integer | No | Page number for pagination. Must be a positive integer. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-animecorner-me-api-9a586e92/get_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### get_popular_posts

Get the top popular anime news posts of the week from the Anime Corner homepage. Returns ranked posts ordered by popularity. No pagination — the full weekly list is returned in a single response (typically 9–10 posts).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-animecorner-me-api-9a586e92/get_popular_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
