# Genderize API

**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.

```
 {
message: "param required for fetching gender"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://santech.gitbook.io/docs/genderize-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
