# Dayze People Clusters API

> Dayze People Clusters 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).

Returns clustered groupings of people in a user's personal CRM, with counts and labels for each cluster

## Facts

- Endpoint: GET https://dayze.com/api/people/clusters
- 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-people-clusters-api-dfd93d0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M1J4wqBd8abDntDkks3YA

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-clusters-api-dfd93d0f
```

Example prompt: Can you pull up all my people clusters from Dayze and show me how many contacts I have in each group, like Musicians or Family?

## When to prefer this

Use this endpoint when you need a high-level summary of how a user's Dayze contacts are organized into named groups, especially before drilling into individual people records. Prefer this over individual people lookups when the goal is understanding group composition or sizes rather than specific contact details.

## Known failure modes

- Authentication failure if user token is missing or expired — returns 401
- Empty clusters array if the user has no people or no clusters defined
- Invalid properties filter value returns 400 or empty result
- Rate limiting or payment failure via x402 protocol returns 402

## 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 cluster objects, each containing a cluster_id (integer), a human-readable label (e.g. 'Musicians'), and a count of how many people belong to that cluster.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "clusters": [
   {
    "count": 40,
    "label": "Musicians",
    "cluster_id": 1
   }
  ]
 }
}
```

## More

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