Gender API Get API

The Get API from Gender API — 1 operation(s) for get.

Operations 1

GET /get Get gender for a name #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/gender-api-get-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

gender-api-get-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gender Get API
  description: Gender-API determines whether a first name is more likely used by males or females, with optional localization by country, IP address, or browser locale. The API returns a gender prediction and an accuracy score, and supports email parsing, multi-name lookup, and country-of-origin queries.
  version: '2.0'
  contact:
    name: Gender-API Support
    url: https://gender-api.com/en/contact
  license:
    name: Gender-API Terms of Service
    url: https://gender-api.com/en/terms-and-conditions
servers:
- url: https://gender-api.com
  description: Gender-API production endpoint
security:
- apiKey: []
tags:
- name: Get
paths:
  /get:
    get:
      summary: Get gender for a name
      description: Returns a gender prediction (male, female, or unknown) for the supplied first name with an accuracy score. Supports localization by country, IP, or locale, and parsing of full names or email addresses.
      operationId: getGender
      parameters:
      - name: name
        in: query
        description: First name (or full name with split=true) to look up. Supports semicolon-separated lists when multi=true.
        schema:
          type: string
      - name: email
        in: query
        description: Email address from which to extract the name.
        schema:
          type: string
          format: email
      - name: country
        in: query
        description: ISO 3166-1 alpha-2 country code to localize the lookup.
        schema:
          type: string
      - name: ip
        in: query
        description: Client IP address used to localize the lookup.
        schema:
          type: string
      - name: locale
        in: query
        description: Browser locale (e.g. en_US, de_DE) used to localize the lookup.
        schema:
          type: string
      - name: split
        in: query
        description: When true, splits a full name and resolves the first name automatically.
        schema:
          type: boolean
      - name: multi
        in: query
        description: When true, accepts a semicolon-separated list of names (max 100 per request).
        schema:
          type: boolean
      - name: key
        in: query
        required: true
        description: Gender-API key (alternatively send via apiKey query or Authorization header per account configuration).
        schema:
          type: string
      responses:
        '200':
          description: Gender prediction result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenderResponse'
        '401':
          description: Missing or invalid API key
        '429':
          description: Rate limit or credit limit exceeded
      tags:
      - Get
components:
  schemas:
    GenderResponse:
      type: object
      properties:
        name:
          type: string
        gender:
          type: string
          enum:
          - male
          - female
          - unknown
        samples:
          type: integer
        accuracy:
          type: integer
          minimum: 0
          maximum: 100
        credits_used:
          type: integer
        duration:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: key