99 Minutos coverage API

The coverage API from 99 Minutos — 1 operation(s) for coverage.

Operations 1

GET /api/v3/coverage/zipcodes/{country} #

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/99-minutos-coverage-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

99-minutos-coverage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Version 3 Coverage API
  version: 3.0.0
  description: "This is the documentation for the public api *(version 3)* of 99minutos. [https://www.99minutos.com/.](https://www.99minutos.com/.EnvironmentAPI)\n\n# First Steps\n\n1.  Create an account in the sandbox website: [https://delivery-git-sandbox-99minutos.vercel.app/](https://delivery-git-sandbox-99minutos.vercel.app/)\n2.  Go to Developers section\n3.  On API Keys V3 section click on `Generar`\n4.  After this the `client_id` and `client_secret` will be displayed\n    \n\nUse the credentials to generate access tokens as shown below in the endpoint `create access token`\n\nFollow the same process in production.\n\n## Environments\n\n| **Environment** | **Website** | **API url** |\n| --- | --- | --- |\n| Sandbox | [https://delivery-git-sandbox-99minutos.vercel.app/](https://delivery-git-sandbox-99minutos.vercel.app/) | [https://sandbox.99minutos.com](https://sandbox.99minutos.com) |\n| Production | [https://envios.99minutos.com/developers](https://envios.99minutos.com/developers) | [https://delivery.99minutos.com](https://delivery.99minutos.com) |\n\n`Each environment has an independent set of credentials`"
servers:
- url: https://delivery.99minutos.com
  description: Produccion
- url: https://sandbox.99minutos.com
  description: Sandbox Environment
tags:
- name: coverage
paths:
  /api/v3/coverage/zipcodes/{country}:
    get:
      operationId: GetZipCodesByCountry
      description: Return list of postal codes by country paginated
      tags:
      - coverage
      parameters:
      - in: path
        name: country
        schema:
          type: string
          enum:
          - MEX
        description: Filter for search postal codes
        required: true
      - in: query
        name: deliveryType
        schema:
          type: string
          enum:
          - RET
          - NXD
        description: delivery types with postal codes
        required: true
      - in: query
        name: limit
        schema:
          type: integer
        description: Limit of codes by page
        required: true
      - in: query
        name: page
        schema:
          type: integer
        description: Page
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  codes:
                    type: array
                    items:
                      type: string
                      description: ''
                  metadata:
                    type: object
                    properties:
                      page:
                        type: string
                        description: ''
                      limit:
                        type: string
                        description: ''
                      totalPages:
                        type: string
                        description: ''
              examples:
                ReturnGuidesResponse:
                  value:
                    codes:
                    - '546783'
                    - '1234323'
                    metadata:
                      page: '1'
                      limit: '2'
                      totalPages: '760'
                  summary: return postal codes response
                  description: return postal codes
          description: ''
components:
  securitySchemes:
    AuthJWT:
      type: http
      scheme: bearer
      bearerFormat: JWT