# Dayze Entity Search API

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

Search for named entities (people, places, or things) by keyword and retrieve their slugs on the Dayze platform

## Facts

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

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-entity-search-api-51c6fa1c
```

Example prompt: Search Dayze for 'Taylor Swift' and get me her entity slug so I can pull up her timeline.

## When to prefer this

Use this endpoint when you need to resolve a human-readable name (like a celebrity or public figure) into a Dayze entity slug for use in downstream Dayze API calls, timeline lookups, or personal CRM features. Prefer this over manual slug construction when the exact slug format is unknown.

## Known failure modes

- No matching entities found — returns count: 0 and empty entities array
- Query too vague returns multiple or irrelevant entities
- Rate limiting or payment failure for x402 microtransaction
- Missing or malformed query parameter returns error
- Entity exists on site but not indexed in search API

## 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 a count of matching entities and an array of entity objects, each containing a slug field (e.g. 'taylor-swift') that can be used to reference that entity in other Dayze API calls or timelines.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "entities": [
   {
    "slug": "taylor-swift"
   }
  ]
 }
}
```

## More

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