Gender API Get Stats API

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

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-stats-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 email required.

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

OpenAPI Specification

gender-api-get-stats-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Gender Get Get Stats 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 Stats
paths:
  /get-stats:
    get:
      summary: Get account statistics
      description: Returns account information including remaining credits, plan details, and usage statistics for the supplied API key.
      operationId: getStats
      parameters:
      - name: key
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Account statistics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatsResponse'
      tags:
      - Get Stats
components:
  schemas:
    StatsResponse:
      type: object
      properties:
        remaining_requests:
          type: integer
        is_limit_reached:
          type: boolean
        server_time:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: key