← Back to directory

Verify if a person meets a minimum age requirement based on their date of birth....

https://api.strale.io/x402/v2/age-verify

Overview

Verify if a person meets a minimum age requirement based on their date of birth. Returns exact age, whether the threshold is met, and days until the threshold (if not met). Accounts for leap years.

Protocol x402
Price $0.02
Payment Asset USD Coin
Payment Network eip155:8453
Category uncategorized
Provider strale
Source bazaar
Indexed 2026-08-27 16:12:49

Health

Status unknown
Latency (p50)
Uptime (30d)
Reliability Score
Last Checked Never
Last Healthy Never
Consecutive Failures 0

x402 Payment Validation

Payment Requirements
Asset Verified
Facilitator

Input Schema

{ "discoverable": true, "method": "GET", "queryParams": { "date_of_birth": { "description": "Date of birth (YYYY-MM-DD)", "required": true, "type": "string" }, "minimum_age": { "description": "Minimum age to verify (default 18)", "type": "integer" }, "reference_date": { "description": "Date to check against (default today)", "type": "string" } }, "type": "http" }

Output Schema

{ "age_days": { "type": "integer" }, "age_months": { "type": "integer" }, "age_years": { "type": "integer" }, "date_of_birth_valid": { "type": "boolean" }, "days_until_minimum": { "type": "integer" }, "meets_minimum": { "type": "boolean" }, "minimum_age_checked": { "type": "integer" } }