GET /names/age/:name
Estimate the likely age of a person based on their first name using statistical data from government records. Returns the predicted age and sample count. Names go through popularity cycles, so names popular in the 1950s suggest an older person while recently popular names suggest a younger person. Useful for demographic analysis, marketing segmentation, and user research. Data from Agify.io.
name
required
First name
| Name | Required | Default | Description |
|---|---|---|---|
name |
Yes | - | First name |
curl https://nordapi.ee/api/v1/names/age/erik
curl https://nordapi.ee/api/v1/names/age/erik
curl https://nordapi.ee/api/v1/names/age/emma
curl https://nordapi.ee/api/v1/names/age/walter
{
"data": {
"age": 60,
"count": 37787,
"name": "erik"
},
"success": true
}