# WorxAI Dataset Catalog

> WorxAI Dataset Catalog is a paid API for AI agents from worxai.tech, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Lists the available synthetic datasets in the WorxAI catalog, including categories and metadata for browsable datasets you can purchase.

## Facts

- Endpoint: GET https://worxai.tech/api/x402/v2/datasets
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/worxai-dataset-catalog-babdefd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RFLycFt2Sludiur0woXb7

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 worxai-dataset-catalog-babdefd5
```

Example prompt: Show me all the datasets available in the WorxAI catalog so I can see what categories and synthetic datasets are on offer before I decide what to buy.

## When to prefer this

Use this endpoint when an agent or user needs to discover what synthetic datasets are available for purchase on the WorxAI platform before committing to a buy. It is the discovery/browse step that precedes calling the dataset purchase endpoint. Prefer this over the purchase endpoint when you don't yet know the category ID or dataset identifier you want.

## Known failure modes

- Payment not included or insufficient — returns 402 Payment Required
- Invalid HTTP method (only GET/HEAD/DELETE accepted) — returns 405 Method Not Allowed
- Service unavailable — returns 503 or connection timeout
- No datasets currently listed — returns empty catalog array

## How this service works

Catalog of 19 synthetic datasets for AI agent training and testing — financial markets, x402 agent payment traces, MCP tool-call transcripts, healthcare claims, IoT sensor logs, and more. Each category is generated on demand and purchasable individually via /datasets/detail. Catalog access is priced at $0.005 per delivered catalog row per successful call.

## Output

A catalog listing of available synthetic datasets on the WorxAI platform, including dataset names, category IDs (such as financial-markets, x402-agent-traces, mcp-tool-call-transcripts), and metadata needed to identify and purchase specific datasets via sibling endpoints.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/worxai-dataset-catalog-babdefd5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from worxai.tech](https://www.zero.xyz/host/worxai.tech/llms.txt)
