← Datos mundiales

Predecir edad por nombre

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.

Parametros

name requerido

First name

Ejemplos de solicitudes

Uso basico
curl https://nordapi.ee/api/v1/names/age/erik
Predict age for Erik
curl https://nordapi.ee/api/v1/names/age/erik
Predict age for Emma
curl https://nordapi.ee/api/v1/names/age/emma
Predict age for Walter
curl https://nordapi.ee/api/v1/names/age/walter

Respuesta en vivo

{
  "data": {
    "age": 60,
    "count": 37787,
    "name": "erik"
  },
  "success": true
}