# GoCreative Age Calculator

> GoCreative Age Calculator is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-09).

Calculates the age (in years, months, and days) from a given date of birth or between two dates

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/age_calculator/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-age-calculator-8a79d669
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jYLJrBfL2Hl0jOUJGorhH

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 gocreative-age-calculator-8a79d669
```

Example prompt: How old is someone born on March 15, 1985? Give me their exact age in years, months, and days.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call age computation without building your own date arithmetic. Ideal for AI agents that need to answer 'how old is someone born on X' questions on demand without an API key or signup. Best for single, one-off age lookups priced at $0.005 USDC per call via x402 on Base.

## Known failure modes

- Invalid date format input returns an error or null result
- Future date of birth may return zero or negative age
- Malformed argument in URL path results in 400/422 error
- Missing required 'input' query parameter returns validation error
- Non-date string passed as argument returns parsing error

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns the computed age broken down into years, months, and days based on the provided birth date (and optionally a reference/target date). Likely includes the total age as well as granular components.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-age-calculator-8a79d669/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
