Age

Predicts the likely age of a person based on their first name, using the Agify.ioarrow-up-right API.

GET /predict/age

Parameters

Parameter
Required
Description

name

Yes

The first name to analyze

Example

curl "https://api.uwuapps.org/predict/age?name=Michael"

Response

{
  "success": true,
  "name": "Michael",
  "age": 52,
  "count": 233482
}

Response fields

Field
Description

name

The name queried

age

Predicted age in years, or null if unknown

count

Number of data samples used for the prediction

Notes

  • Predictions are based on statistical data from Agify.io.

  • A null age means the name was not found in the dataset.

Last updated

Was this helpful?