Statistics-based classification (male / female / unknown) — no AI model, no LLM. Supports country-specific data, composite names and strict mode.
GET /v1/gender?name=Anna&country=DE · 1 credit/requestA first name alone is often enough to personalize an email salutation or segment a marketing list — but only if the classification is accurate and explainable. The Gender API uses statistical frequency data from public name registries rather than a language model, so every result comes with a confidence score you can threshold on, and the same name can resolve differently by country (Andrea is female in Germany, male in Italy) instead of forcing one global guess.
Choose "Sehr geehrter Herr" vs. "Sehr geehrte Frau" automatically for a CRM mail-merge, instead of defaulting every contact to a neutral greeting.
Split a campaign audience by inferred gender for products or messaging that genuinely differ by segment.
Backfill a missing gender field on import, flagging low-confidence names for manual review instead of guessing silently.
Handle names like "Anna-Lena" or country-ambiguous names correctly by passing a country hint alongside the name.
curl "https://api.toolbox-api.net/v1/gender?name=Andrea&country=IT" \
-H "Authorization: Bearer $API_KEY"{
"name": "Andrea",
"country": "IT",
"gender": "male",
"confidence": 0.91
}Send a first name and, optionally, a two-letter country code. The name is matched against country-specific frequency tables built from public registries; the response includes a confidence score between 0 and 1. Scores below 0.60 are returned as "unknown" rather than a low-confidence guess.
One API key gets you this and four other APIs, sharing one quota.