# Dayze Notable Pack API

> Dayze Notable Pack API is a paid API for AI agents from dayze.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a curated 'notable' pack for a person, including their life-in-days stats (age, day number) and a quality grade (S-tier ranking).

## Facts

- Endpoint: GET https://dayze.com/api/v1/notable-pack
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dayze-notable-pack-api-0b61e0dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Be87Xy--jQ4CZtouN-bBw

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-notable-pack-api-0b61e0dd
```

Example prompt: Pull the Dayze notable pack for Taylor Swift and tell me her S-tier quality grade and how many days she's been alive.

## When to prefer this

Use this endpoint when you need pre-computed life-in-days statistics and quality rankings for notable/famous individuals by their Dayze slug. Prefer this over manual date calculation when you want curated pack grades and S-tier classifications for public figures.

## Known failure modes

- Unknown or unsupported person slug returns an empty or error response
- Invalid pack name may return a 400 or null result
- Network timeout or upstream service error returns a 5xx response
- Person not in the notable pack database 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

Returns a JSON object with the pack name ('notable'), the person's name and slug, a quality object indicating S-tier status and a letter pack grade (e.g. 'S'), and life_in_days data including age in years and the total day number of their life.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pack": "notable",
  "person": {
   "name": "Taylor Swift",
   "slug": "taylor-swift"
  },
  "quality": {
   "s_tier": true,
   "pack_grade": "S"
  },
  "life_in_days": {
   "age": 36,
   "day_number": 13339
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dayze-notable-pack-api-0b61e0dd/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)
