# Channel3 Brands List (Paginated)

> Channel3 Brands List (Paginated) is a paid API for AI agents from stableproduct.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists all Channel3 brands with cursor-based pagination, supporting incremental traversal of the full brand catalog.

## Facts

- Endpoint: GET https://stableproduct.dev/api/channel3/brands/list
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableproduct-dev-3d180b6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UFF_zjqG3FVA8JvWWaFST

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stableproduct-dev-3d180b6b
```

Example prompt: Can you pull me the first 25 Channel3 brands from the catalog? If there are more, grab the next page using the cursor too.

## When to prefer this

Use this endpoint when you need to enumerate or iterate over the full Channel3 brand catalog in bulk, especially for syncing, indexing, or displaying all brands. Prefer the search endpoint when you need to find a specific brand by name. Use this for pagination-driven workflows where you want to process brands in batches.

## Known failure modes

- Invalid cursor value returns a 400 or empty result set
- limit out of range (below 1 or above 100) returns a validation error
- Expired or stale cursor may return unexpected results or 400
- Payment not provided or insufficient USDC triggers 402 Payment Required
- Service unavailable returns 5xx

## How this service works

List Channel3 brands with cursor pagination.

## Output

Returns a paginated list of Channel3 brand records, including brand metadata and a cursor token for fetching the next page. Optionally includes raw brand data if include_raw is true.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 25,
   "cursor": null,
   "include_raw": false
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableproduct-dev-3d180b6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableproduct.dev](https://www.zero.xyz/host/stableproduct.dev/llms.txt)
