Gender API Get Country Of Origin API

The Get Country Of Origin API from Gender API — 1 operation(s) for get country of origin.

Operations 1

GET /get-country-of-origin Get likely country of origin 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-country-of-origin-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-country-of-origin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gender Get Get Country Of Origin 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 Country Of Origin
paths:
  /get-country-of-origin:
    get:
      summary: Get likely country of origin for a name
      description: Returns the most likely country (or list of countries) of origin for the supplied first or last name. Costs more credits per query than /get.
      operationId: getCountryOfOrigin
      parameters:
      - name: name
        in: query
        required: true
        schema:
          type: string
      - name: key
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Country of origin prediction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountryOfOriginResponse'
      tags:
      - Get Country Of Origin
components:
  schemas:
    CountryOfOriginResponse:
      type: object
      properties:
        name:
          type: string
        country_of_origin:
          type: array
          items:
            type: object
            properties:
              country:
                type: string
              probability:
                type: number
        credits_used:
          type: integer
        duration:
          type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: key