# Interzoid Get Gender from Name API

> Interzoid Get Gender from Name API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the predicted gender (Male/Female) for a given individual name using AI-based name analysis

## Facts

- Endpoint: GET https://api.interzoid.com/getgender
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-gender-from-name-api-6696fb09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dOcujcFX3Tg1-Eb-wMWWl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-get-gender-from-name-api-6696fb09
```

Example prompt: Can you tell me whether the name 'Jordan' is typically male or female? I want to enrich my contact list with gender predictions for personalization.

## When to prefer this

Use this endpoint when you need to programmatically predict the gender of an individual from their first name, especially for CRM enrichment, personalization, mailing list segmentation, or analytics workflows. Prefer this over manual lookup when processing many records or integrating with Snowflake, AWS, Azure, or other data platforms.

## Known failure modes

- Missing 'name' query parameter returns an error response
- Ambiguous or uncommon names may return uncertain or unexpected gender classification
- Invalid or empty name string may result in a non-success Code
- API credits exhausted returns a credits error
- Network timeout or service unavailability returns HTTP 5xx

## How this service works

Determine the likely gender associated with an individual name. Supports international names and provides a confidence indicator.

## Output

Returns a JSON object with a Code field indicating success, a Gender field with the predicted gender value (e.g. 'Male' or 'Female'), and a Credits field showing remaining API credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "name": "Jordan"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Individual name to determine gender for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Gender": "Female",
  "Credits": "0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-gender-from-name-api-6696fb09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
