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 nombres popular in the 1950s suggest an older person while recently popular nombres suggest a younger person. Útil para demographic analysis, marketing segmentation, and user research. Data from Agify.io.
name
requerido
First name
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
name |
Si | - | 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
}