Wispr AI Geo API

The Geo API from Wispr AI — 3 operation(s) for geo.

Operations 4

GET /geo/base10 Get Base10 Server #
POST /geo/base10 Post Base10 Server #
GET /geo/base10/grpc-servers Get Grpc Server List #
GET /geo Get Geo #

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/wispr-ai-geo-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

wispr-ai-geo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wispr Backend Analytics Geo API
  description: Wispr Backend API
  version: 0.5.2
servers:
- url: https://api.wisprflow.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Geo
paths:
  /geo/base10:
    get:
      tags:
      - Geo
      summary: Get Base10 Server
      operationId: get_base10_server
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - ApiKeyHeaderPatched: []
    post:
      tags:
      - Geo
      summary: Post Base10 Server
      operationId: post_base10_server
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - ApiKeyHeaderPatched: []
  /geo/base10/grpc-servers:
    get:
      tags:
      - Geo
      summary: Get Grpc Server List
      description: Returns all known gRPC server model IDs so clients can probe latency and pick the fastest.
      operationId: get_grpc_server_list
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
                title: Response Get Grpc Server List Geo Base10 Grpc Servers Get
      security:
      - ApiKeyHeaderPatched: []
  /geo:
    get:
      tags:
      - Geo
      summary: Get Geo
      description: Return the client's country code and deployment region derived from IP.
      operationId: get_geo
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeoResponse'
components:
  schemas:
    GeoResponse:
      properties:
        country_code:
          anyOf:
          - type: string
          - type: 'null'
          title: Country Code
        region:
          type: string
          enum:
          - us
          - europe
          - apac
          title: Region
      type: object
      required:
      - region
      title: GeoResponse
      description: Response for the /geo endpoint with country code and region.
  securitySchemes:
    ApiKeyHeaderPatched:
      type: apiKey
      in: header
      name: Authorization
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key