# BitBooth Faker

> BitBooth Faker is a paid API for AI agents from app.heinrichstech.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Generates structured synthetic/fake data records on demand using a template schema, powered by @faker-js/faker, for seeding test databases, forms, and mock examples.

## Facts

- Endpoint: POST https://app.heinrichstech.com/v1/cdp/faker
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitbooth-faker-cf046db1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m3288ZPtxC8V4lY9Pzjpx

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 bitbooth-faker-cf046db1 -d '<json body>'
```

Example prompt: Generate 10 fake user records with fullName, email, phone, and address fields — I need them to seed a test database. Use seed 42 so the results are reproducible.

## When to prefer this

Choose this endpoint when you need structured, realistic-looking fake data in a specific schema shape — especially when you want deterministic output via a seed parameter, or need to quickly populate test databases, forms, or prompt examples without writing custom faker code. Prefer over local faker invocations when running in a serverless/agent environment without Node.js access.

## Known failure modes

- Invalid faker method path in template returns an error or null field values
- Count exceeds server-side limit resulting in a 400 or timeout
- Malformed template JSON causes a parse error
- Payment of 0.001 USDC not included or insufficient funds results in 402 Payment Required
- Invalid seed type (non-integer) may cause unexpected behavior

## How this service works

BitBooth Faker: pay 0.001 USDC, get structured synthetic data on demand. Pass a template like { name: "person.fullName", email: "internet.email" } and a count, receive an array of records ready to seed forms, populate test databases, or feed mock data into prompt examples. Backed by @faker-js/faker, deterministic via the optional seed parameter.

## Output

An array of flat JSON records where each key matches the template fields provided, and values are realistic fake data generated by faker-js (e.g. 'John Smith', 'john.smith@example.com'). The number of records equals the requested count. When a seed is provided, results are deterministic across calls.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "template"
     ],
     "properties": {
      "seed": {
       "type": "integer",
       "description": "Optional seed for reproducible output."
      },
      "count": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Number of records to generate (default 1, max 100)."
      },
      "template": {
       "type": "object",
       "description": "Map of field name to faker path (e.g. \"person.fullName\"). 1-50 fields."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/bitbooth-faker-cf046db1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.heinrichstech.com](https://www.zero.xyz/host/app.heinrichstech.com/llms.txt)
