# Mangafire — 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 and search manga titles by genre, type, and status, then get detailed information about specific series including today's latest updates. Sort and filter manga listings to discover new reads tailored to your preferences.

**Category:** Entertainment | **Website:** [mangafire.to/](https://mangafire.to/) | **Docs:** [parse.bot/marketplace/9ccac6d7-e7dc-4507-b1c0-e0389dd0fbb6/mangafire-to-api](https://parse.bot/marketplace/9ccac6d7-e7dc-4507-b1c0-e0389dd0fbb6/mangafire-to-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-mangafire-to-api-9ccac6d7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_manga_details

Get detailed information for a specific manga by its slug. Returns title, alternative titles, description, genres, poster image, and metadata such as author and publication date. The slug is obtained from get_manga_list or get_todays_updates results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The manga slug (e.g. 'choujin-xx.oj985'). Obtainable from get_manga_list or get_todays_updates results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mangafire-to-api-9ccac6d7/get_manga_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_manga_list

Get a paginated list of manga with various filters and sorting options. Returns manga titles with poster images, type, and latest chapter information. Pagination via page number. Each item includes a slug usable with get_manga_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `genre` | string | No | Filter by genre. |
| `page` | integer | No | Page number to retrieve. |
| `sort` | string | No | Sort order for results. |
| `status` | string | No | Filter by publication status. |
| `type` | string | No | Filter by manga type. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mangafire-to-api-9ccac6d7/get_manga_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"genre":"<string>","page":"<integer>","sort":"<string>","status":"<string>","type":"<string>"}'
```

### get_todays_updates

Get manga titles that have been uploaded or updated within the last few hours (today). Returns titles with their slug and relative time since last update. Results are filtered to only include items updated in the last few hours.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mangafire-to-api-9ccac6d7/get_todays_updates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
