# Strale Fake Data Generator

> Strale Fake Data Generator is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-13).

Generates realistic fake/synthetic data records based on specified fields and schema definitions

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/fake-data-generate
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-fake-data-generator-4ed9691e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UBcrTkG344-m7OozW6LW8

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 strale-fake-data-generator-4ed9691e
```

Example prompt: Generate some fake test data for me with fields for name, email, age, and address — return it as structured JSON so I can use it to seed my dev database.

## When to prefer this

Choose this endpoint when you need on-demand synthetic data generation with an auditable trail — particularly useful in compliance-sensitive environments where you need to prove what data was generated and when. Preferred over static fixture files when you need dynamic, schema-driven fake data with cryptographic audit records.

## Known failure modes

- Invalid or unparseable schema definition returns an error
- Missing required fields parameter results in empty or error response
- Malformed field type specifications may produce unexpected output
- Rate limiting or payment failure if x402 micropayment is not processed correctly

## How this service works

Generate realistic fake data matching a schema. Locale-aware: Swedish names for 'sv', Japanese for 'ja'. Up to 1000 records.

## Output

Returns structured JSON containing generated synthetic data records matching the specified fields and schema, along with a cryptographic audit record with chain hashing for provenance verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "fields": {
   "type": "array",
   "description": "Array of {name, type}"
  },
  "locale": {
   "type": "string"
  },
  "schema": {
   "type": "object",
   "description": "JSON Schema"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "type": "array"
 },
 "locale": {
  "type": "string"
 },
 "record_count": {
  "type": "integer"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-fake-data-generator-4ed9691e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
