# Tubitv — 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 Tubi TV's entire free streaming catalog across 100+ categories to discover movies and TV series with detailed information including titles, descriptions, cast, ratings, and direct watch links. Quickly find content by category or explore what's available in documentaries and beyond.

**Category:** Streaming Video | **Website:** [tubitv.com/es-mx](https://tubitv.com/es-mx) | **Docs:** [parse.bot/marketplace/94ac7e01-2d15-42c7-8f9a-d362413bceab/tubitv-com-api](https://parse.bot/marketplace/94ac7e01-2d15-42c7-8f9a-d362413bceab/tubitv-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-tubitv-com-api-94ac7e01/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_categories

List all available content categories/genres on Tubi TV. Returns category names, slugs, descriptions, and types. The returned slugs serve as the 'category' parameter for list_content. Over 100 categories are available covering genres, curated collections, and thematic groupings.

**Estimated cost:** Metered

_No parameters required._

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

### list_content

List movies and series for a given category on Tubi TV. Returns content with titles, descriptions, direct watch URLs, cast, ratings, and metadata. Use list_categories to discover available category slugs. Supports pagination via integer cursor; each page returns up to 50 items and a next_cursor value for the subsequent page (null when exhausted).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug identifying which genre or collection to retrieve. Use list_categories to discover all available slugs. |
| `cursor` | integer | No | Pagination cursor. Use next_cursor from a previous response to fetch the next page of results. |
| `limit` | integer | No | Maximum number of items to return per page (max 50). |

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