# Youtube (m.youtube.com) — 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.

> Get video titles and metadata from the Mindplicit YouTube channel to track content updates and organize channel information. Access a complete list of videos to monitor new uploads and retrieve detailed information about each video's performance and details.

**Category:** Streaming Video | **Website:** [m.youtube.com/@Mindplicit](https://m.youtube.com/@Mindplicit) | **Docs:** [parse.bot/marketplace/566e58cc-f1f4-48e3-8740-60b06637dd48/m-youtube-com-api](https://parse.bot/marketplace/566e58cc-f1f4-48e3-8740-60b06637dd48/m-youtube-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-m-youtube-com-api-566e58cc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_videos

Retrieve all videos from a YouTube channel. Returns each video's ID and title, auto-paginating through all available pages. The channel is identified by its handle (e.g. 'Mindplicit' or '@Mindplicit').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel_handle` | string | No | YouTube channel handle, with or without the leading '@' (e.g. 'Mindplicit' or '@Mindplicit'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-m-youtube-com-api-566e58cc/list_videos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel_handle":"<string>"}'
```
