person-half-dressGenderize API

API for Predict the gender of a person based on their name.

Genderize API Documentation

A Genderize API predicts the gender of a name by analyzing its usage patterns across cultures and regions. It provides probability scores for each gender, helping with personalization, data analysis, or content moderation, but should be used responsibly, acknowledging its limitations.

Base URL

The base URL for the Dictionary API is:

https://santechapi.vercel.app

Authentication

headers : {
"token" : {YOUR API KEY}
}

Endpoint: genderize/search/:q

HTTP Method: Get

Example request

GET /genderize/search/Ajay

Example Response

{
	"count": 185923,
	"name": "Ajay",
	"gender": "male",
	"probability": 0.99
}

Error Handling

In case of an error, the API will respond with an appropriate HTTP status code and an error message in the response body.

Last updated

Was this helpful?