# Dayze People Search

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

Search for people profiles on Dayze by name, returning matching names and URL slugs

## Facts

- Endpoint: GET https://dayze.com/api/people/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dayze-people-search-f1a41ebb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5UBZU_PDFnrUc09o2IlLt

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-people-search-f1a41ebb
```

Example prompt: Search Dayze for 'Taylor Swift' and give me her profile slug so I can look up her life timeline.

## When to prefer this

Use this endpoint when you need to find a person's Dayze profile slug by name, particularly public figures or celebrities whose life timelines are tracked on Dayze. Prefer this over manual URL construction since slugs may differ from simple name formatting. Best used as a first step before fetching a full profile or timeline.

## Known failure modes

- No results found for the query — returns total: 0 and empty results array
- Query string missing or malformed — may return 400 error
- Person exists on Dayze under a different name spelling — returns empty results
- Network timeout or service unavailability — returns 5xx error
- Query returns multiple partial matches requiring disambiguation by caller

## 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 with a total count of matching results and an array of result objects, each containing the matched person's display name and their URL slug on Dayze (e.g. {"total":1,"results":[{"name":"Taylor Swift","slug":"taylor-swift"}]}).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "results": [
   {
    "name": "Taylor Swift",
    "slug": "taylor-swift"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dayze-people-search-f1a41ebb/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)
