Skip to main content

Official Python SDK for GenderAPI.io

Project description

genderapi-python

Official Python SDK for GenderAPI.io — determine gender from names, emails, and usernames using AI.


🚀 Installation

Install the required package:

pip install genderapi

📝 Usage

🔹 Get Gender by Name

from genderapi import GenderAPI

api = GenderAPI("YOUR_API_KEY")

# Basic usage
result = api.get_gender_by_name(name="Michael")
print(result)

# With askToAI set to True
result = api.get_gender_by_name(name="李雷", askToAI=True)
print(result)

🔹 Get Gender by Email

result = api.get_gender_by_email(email="michael.smith@example.com")
print(result)

# With askToAI set to True
result = api.get_gender_by_email(email="michael.smith@example.com", askToAI=True)
print(result)

🔹 Get Gender by Username

result = api.get_gender_by_username(username="michael_dev")
print(result)

# With askToAI set to True
result = api.get_gender_by_username(username="michael_dev", askToAI=True)
print(result)

📥 API Parameters

Common Parameters

Parameter Type Required Description
country String No Two-letter country code (e.g. "US"). Helps narrow down gender detection results by region.
askToAI Boolean No Default is false. If true, sends the query directly to AI for maximum accuracy, consuming 3 credits per request. If false, GenderAPI first tries its internal database and uses AI only if necessary, without spending 3 credits. Recommended for non-latin characters or unusual strings.

Name Lookup

Parameter Type Required Description
name String Yes Name to query.
forceToGenderize Boolean No Default is false. When true, analyzes even nicknames, emojis, or unconventional strings like "spider man" instead of returning null for non-standard names.

Email Lookup

Parameter Type Required Description
email String Yes Email address to query.

Username Lookup

Parameter Type Required Description
username String Yes Username to query.
forceToGenderize Boolean No Default is false. When true, analyzes even nicknames, emojis, or unconventional strings like "spider man" instead of returning null for non-standard names.

✅ API Response

Example JSON response for all endpoints:

{
  "status": true,
  "used_credits": 1,
  "remaining_credits": 4999,
  "expires": 1743659200,
  "q": "michael.smith@example.com",
  "name": "Michael",
  "gender": "male",
  "country": "US",
  "total_names": 325,
  "probability": 98,
  "duration": "4ms"
}

Response Fields

Field Type Description
status Boolean true or false. Check errors if false.
used_credits Integer Credits used for this request.
remaining_credits Integer Remaining credits on your package.
expires Integer (timestamp) Package expiration date (in seconds).
q String Your input query (name, email, or username).
name String Found name.
gender Enum[String] "male", "female", or "null".
country Enum[String] Most likely country (e.g. "US", "DE", etc.).
total_names Integer Number of samples behind the prediction.
probability Integer Likelihood percentage (50-100).
duration String Processing time (e.g. "4ms").

⚠️ Error Codes

When status is false, check the following error codes:

errno errmsg Description
50 access denied Unauthorized IP Address or Referrer. Check your access privileges.
90 invalid country code Check supported country codes. ISO 3166-1 alpha-2
91 name not set || email not set Missing name or email parameter on your request.
92 too many names || too many emails Limit is 100 for names, 50 for emails in one request.
93 limit reached The API key credit has been finished.
94 invalid or missing key The API key cannot be found.
99 API key has expired Please renew your API key.

Example error response:

{
  "status": false,
  "errno": 94,
  "errmsg": "invalid or missing key"
}

⚖️ License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

genderapi-1.0.4.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

genderapi-1.0.4-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file genderapi-1.0.4.tar.gz.

File metadata

  • Download URL: genderapi-1.0.4.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for genderapi-1.0.4.tar.gz
Algorithm Hash digest
SHA256 377345c32b7a94b4644ef99b4291bee8575e0a2cd1ce9525e729049bd25bcced
MD5 b6f57b5e913a4fcb2c8162bc8ff43c50
BLAKE2b-256 6413abc5d0bcf4d5e779d733d5b1e6bd0c9103a02eaa0996a5f7007c8c3a0d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for genderapi-1.0.4.tar.gz:

Publisher: publish-to-pypi.yml on GenderAPI/genderapi-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genderapi-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: genderapi-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for genderapi-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1f47d5e3ed5301a9d25a1a05d4e81b6add25c397409d72089088e169c0079c08
MD5 359f53f8eb15a43434d82055fd20b6d1
BLAKE2b-256 2adcc60a7471506dad156ac7b5220581f99b1ba312a2ae75f61ab8224c70a61c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genderapi-1.0.4-py3-none-any.whl:

Publisher: publish-to-pypi.yml on GenderAPI/genderapi-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page