# Channel3 Category Detail by Slug

> Channel3 Category Detail by Slug 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).

Retrieves detailed information about a specific Channel3 product category identified by its slug.

## Facts

- Endpoint: GET https://stableproduct.dev/api/channel3/categories/detail
- 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-02c74f90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cYqw_k4ZmXV2kAPdYHOQb

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-02c74f90
```

Example prompt: Can you pull up the Channel3 category details for the slug 'laptops' — I want to see the full category metadata including any raw fields?

## When to prefer this

Use this endpoint when you have a specific Channel3 category slug and need full category detail, rather than searching across categories. Prefer this over the category search endpoint when you already know the exact slug identifier.

## Known failure modes

- Slug not found — returns 404 or empty result
- Missing required slug parameter — returns validation error
- Invalid slug format (empty string) — rejected by schema validation
- Upstream Channel3 API unavailable — returns 5xx error
- Payment not settled — x402 payment required error

## How this service works

Get Channel3 category detail by slug.

## Output

Returns structured detail about a Channel3 category matching the provided slug, including category name, description, and optionally raw data fields if include_raw is set to true.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "slug": "electronics",
   "include_raw": true
  }
 }
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableproduct-dev-02c74f90/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)
