# Suverse Name Age Estimator (via Agify)

> Suverse Name Age Estimator (via Agify) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Estimates the likely age of a person given a first name, returning predicted age and sample size from Agify

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-name-age
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-name-age-estimator-via-agify-cea67be6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p-0LJtqKSlPyk-b0nqBhm

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 suverse-name-age-estimator-via-agify-cea67be6 -d '<json body>'
```

Example prompt: What's the likely age of someone named Oliver? Use the name-to-age estimator to predict it.

## When to prefer this

Use this endpoint when you need a quick demographic age estimate from a first name alone, with no API key required and a low per-call cost. Prefer it over full identity enrichment APIs when you only have a first name and need a lightweight, probabilistic age signal for profile enrichment, lead scoring, or audience segmentation. Not suitable when precise age verification is required.

## Known failure modes

- Name not found in Agify database — returns null age and zero count
- Network or proxy timeout — 5xx error from the proxy
- Invalid or empty name input — validation error or unexpected null response
- Very rare or non-English names may return low-confidence results with small sample sizes
- Payment failure via x402 protocol — 402 response if USDC payment is not processed

## How this service works

Estimate the likely age for a first name from Agify, no key. Returns the predicted age and sample size. For AI agents enriching profiles and demographic guessing.

## Output

Returns the input name, a predicted age (integer), and the sample count (number of records Agify used to make the estimate). If the name is rare or unrecognized, count may be low or age may be null.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-name-age-estimator-via-agify-cea67be6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
