skip to Main Content

API usage is FREE. As long as APIs are used in moderation. For example 20 times a day from one client. This way you can see how APIs work. Click one of the API sample links below and it will just work in the browser as it is.

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’
  • Make creative Apps & websites that consumes our REST APIs.

If you intend to use APIs for a rigorous data analysis, or more frequent use, please reach out to us for your own personal API Key.

Requesting API key –

Contact us for requesting the key. Then substitute it with <Your-API-Key> in the below samples.

Examples –

Calling the APIs (small option) –

REQUEST – 
http://www.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 – 
http://www.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 – 
http://www.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