skip to Main Content

Platform to explore & share details on any name. Combines gender data from the US & UK censuses. Search names with first few letters.

Access thru REST APIs –

The entire database is available to programmers thru well-designed REST APIs. For API details, samples & help please check API page.

Possibilities  –

  • Programmatically fetch information on any name.
  • Create better forms by skipping the gender question. Use our API to auto add gender.
  • Create interesting insight over existing data. For example how many users are ‘male’ from a certain survey?
  • Make creative Apps & websites that consume our REST APIs.

And also –

  • Lookup details on a name by searching from the search box to the right.
  • Share information with others. i.e. – www.z2a.info/namesetc/names/Lisa  (replace with your name)

Calling the APIs (small option) –

REQUEST – 
https://z2a.info/namesetc/api.php?name=lisa&key=FREE-KEY&size=small

RESPONSE JSON — 
– Same as using with no size option.
– Returns name and gender.

{
    "name": "Lisa",
    "gender": "Female"
}

Calling the APIs (medium option) –

REQUEST – 
https://z2a.info/namesetc/api.php?name=lisa&key=FREE-KEY&size=medium

RESPONSE JSON — 
– Returns name, gender & meaning.

{
    "name": "Lisa",
    "gender": "Female",
    "meaning": "Diminutive of Elisabeth or Elizabeth, from Elisheba, meaning either oath of God, or God is satisfaction. Also a diminutive of Bethia (daughter or worshipper of God), and of Bethany, a New Testament village near Jerusalem."
}

Calling the APIs (large option) –

REQUEST – 
https://z2a.info/namesetc/api.php?name=lisa&key=FREE-KEY&size=large

RESPONSE JSON — 
– Returns everything.

{
    "name": "Lisa",
    "meaning": "Diminutive of Elisabeth or Elizabeth, from Elisheba, meaning either oath of God, or God is satisfaction. Also a diminutive of Bethia (daughter or worshipper of God), and of Bethany, a New Testament village near Jerusalem.",
    "gender": "Female",
    "origin": "Hebrew",
    "comments": "In Geek also means the lilly flower."
}
Back To Top