← Maailman data

Ennusta sukupuoli nimestä

GET /names/gender/:name

Ennusta the likely gender associated with a first name using statistical data from millions of records across many countries. Palauttaa the predicted gender and a probability score (0 to 1). Hyödyllinen personalizing user interfaces before explicit gender is provided, marketing analytics, form pre-filling, and demographic research. Data Genderize.io.

Parametrit

name pakollinen

First name

Esimerkkipyynnöt

Peruskäyttö
curl https://nordapi.ee/api/v1/names/gender/alex
Predict gender for Alex
curl https://nordapi.ee/api/v1/names/gender/alex
Predict gender for Maria
curl https://nordapi.ee/api/v1/names/gender/maria
Predict gender for Robin
curl https://nordapi.ee/api/v1/names/gender/robin

Reaaliaikainen vastaus

{
  "data": {
    "count": 1665200,
    "gender": "male",
    "name": "alex",
    "probability": 0.95
  },
  "success": true
}