# WorxAI Gabriel Synthetic Dataset Generator

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

Generates synthetic dataset rows on demand from a free-text description of the data need, returning rows directly in the response

## Facts

- Endpoint: GET https://worxai.tech/api/x402/v2/gabriel
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/worxai-gabriel-synthetic-dataset-generator-4525269d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O9kEpDNQ_pxivfQWkmiKZ

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-gabriel-synthetic-dataset-generator-4525269d
```

Example prompt: Generate me 20 rows of synthetic e-commerce order data — include fields like order ID, customer name, product category, amount, and order date — using Gabriel.

## When to prefer this

Choose this endpoint when you need on-demand synthetic tabular data described in plain English and want the generated rows immediately in a single API call — no polling, no separate fetch. It is especially well-suited for AI agents that need realistic mock data for prototyping, testing, or ML training without access to a real database, and when schema inference from a natural language description is preferred over manually specifying a schema. Prefer alternatives if you need to retrieve a pre-existing dataset by catalog ID or require real (non-synthetic) data.

## Known failure modes

- Ambiguous or too-vague 'need' description may result in a mismatched or overly generic schema
- Exceeding the 50 free row quota without a linked wallet or payment triggers a 402 Payment Required response
- Requesting a very large row count may increase latency and cost significantly
- Invalid or unsupported query parameters return a 400 error
- If the inferred schema cannot be matched to any built-in or derivable pattern, an error or fallback schema is returned

## How this service works

Send any free-text `need` describing the dataset you want — Gabriel matches it to an exact schema (built-in or inferred, never a miss) and returns the generated rows directly in this response, no second fetch. Price scales with row count ($0.01/row on the API channel). Pay from any linked region below. Every agent (by `wallet` param, or by IP if omitted) gets 50 free rows total — spread across up to 5 calls — before payment is required.

## Output

Returns generated dataset rows directly in the API response as structured JSON, with the inferred or matched schema applied. The number of rows scales with the request; pricing is $0.01 per row with the first 50 rows free per agent wallet (or IP). No second fetch is required — all data is included in the initial response.

## 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-gabriel-synthetic-dataset-generator-4525269d/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)
