# Sindri Random Date Generator

> Sindri Random Date Generator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates a true-random date using one of eight methods (anytime, past, future, between, betweens, recent, soon, birthdate) with optional locale support

## Facts

- Endpoint: POST https://x402.outpimp.com/generateDateData
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sindri-random-date-generator-83b6d30d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nJjhlcN1mL6Y1LJp_J4wH

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 sindri-random-date-generator-83b6d30d -d '<json body>'
```

Example prompt: Generate a random date between January 1, 2000 and December 31, 2010 using the 'between' method — I need it in en_US format for populating test user records.

## When to prefer this

Choose this endpoint when you need a truly random date value for test data generation, seeding fake user records, demo data, or any scenario requiring a bounded or unbounded random date pick. Prefer it over home-grown random date logic when locale formatting matters or when you need convenience methods like 'birthdate', 'recent', or 'soon' without writing custom range logic.

## Known failure modes

- Invalid 'from' or 'to' date strings that don't parse to a valid date cause a rejection
- Year outside 1000–9999 range in date args returns an error
- Missing required 'from'/'to' args for 'between' or 'betweens' methods causes failure
- Unsupported locale code may result in an error or fallback behavior
- Invalid 'field' enum value causes an error response

## How this service works

True-random-date generator API. Generates a bounded random date via one of: anytime, past, future, between, betweens, recent, soon, birthdate. between/betweens require "from" and "to" date strings. Accepts optional locale (default en_US). Date args must parse to a valid date with year 1000-9999.

## Output

Returns a randomly generated date string conforming to the selected method (anytime, past, future, between, betweens, recent, soon, or birthdate), respecting the provided locale and any from/to bounds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "args": {
   "type": "object",
   "description": "Method-specific options, e.g. {\"from\":\"2020-01-01\",\"to\":\"2020-12-31\"}."
  },
  "field": {
   "enum": [
    "anytime",
    "past",
    "future",
    "between",
    "betweens",
    "recent",
    "soon",
    "birthdate"
   ],
   "type": "string",
   "description": "Which date-generation method to call."
  },
  "locale": {
   "type": "string",
   "default": "en_US",
   "description": "Locale code, e.g. \"en_US\", \"de\"."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sindri-random-date-generator-83b6d30d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
