# Dayze On This Day

> Dayze On This Day is a paid API for AI agents from dayze.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns notable people born on a given day and month, including a count and their slugs

## Facts

- Endpoint: GET https://dayze.com/api/v1/on-this-day
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dayze-on-this-day-6a2d6cd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UGoNzPFLG71NnRrOKSf8b

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 dayze-on-this-day-6a2d6cd7
```

Example prompt: Who are some famous people born on July 11? I want to know how many notable birthdays there are on that day and see their names.

## When to prefer this

Use this endpoint when you need to look up notable people born on a specific calendar day and month — especially for birthday-matching features, daily trivia, historical content generation, or personal CRM enrichment. It is preferable over general web search when you need structured, machine-readable output with person slugs for downstream lookups.

## Known failure modes

- Invalid or out-of-range day/month values may return an error or empty results
- Missing required query parameters (day, month) likely results in a 400 bad request
- Dates with no notable birthdays in the database return a count of 0 and an empty people array
- Rate limiting or payment failures (x402) may return a 402 or 429 status

## How this service works

Count how many days you have lived, use our free day and date calculator between any two dates, and build your life timeline. Personal CRM on Dayze.

## Output

A JSON object containing the day number, the month number, and a 'born' object with a count of notable people born on that date plus an array of person objects each containing a slug identifier (e.g. 'nikola-tesla').

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "day": 11,
  "born": {
   "count": 12,
   "people": [
    {
     "slug": "nikola-tesla"
    }
   ]
  },
  "month": 7
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dayze-on-this-day-6a2d6cd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dayze.com](https://www.zero.xyz/host/dayze.com/llms.txt)
