# Dayze Famous Lifespans API

> Dayze Famous Lifespans API is a paid API for AI agents from dayze.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a list of famous people's lifespans expressed in total days lived and years, identified by slug

## Facts

- Endpoint: GET https://dayze.com/api/life-in-days/famous-lifespans
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dayze-famous-lifespans-api-73198445
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bld8P1az0mDP5P_RCJEcB

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-famous-lifespans-api-73198445
```

Example prompt: Can you pull up the lifespans of famous people from Dayze and tell me how many days Steve Jobs lived compared to other well-known figures?

## When to prefer this

Choose this endpoint when you need precomputed lifespan data (in days and years) for a curated list of famous people, rather than computing date differences yourself. It is ideal for life-in-days comparison features, motivational timeline apps, or enriching biographical data with precise day counts without needing birth/death date inputs.

## Known failure modes

- Empty or malformed properties filter may return all records or an error
- API may return a limited subset of famous people with no pagination support
- Slug identifiers are opaque without a separate lookup for display names
- Network or payment authorization failure returns no data

## 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 array of famous person records, each containing a URL-friendly slug (e.g. 'steve-jobs'), their total lifespan in days (e.g. 20565), and their age in whole years (e.g. 56). The list covers a curated set of well-known historical and contemporary figures.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lifespans": [
   {
    "days": 20565,
    "slug": "steve-jobs",
    "years": 56
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dayze-famous-lifespans-api-73198445/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)
