Get Destination coverage

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/zim/doc/esim-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "eSIM API MCP server": {
    "url": "https://bump.sh/zim/doc/esim-api/mcp"
  }
}

Close
GET /destinations/:iso3

Returns information regarding the coverage offered for a specific Destination

Query parameters

  • iso3 string

    iso3 for Destination

Responses

  • 200 application/json

    Destination coverage fetched successfully

    Hide response attributes Show response attributes object
    • name string
    • isoAlpha3 string
    • scopes object
      Hide scopes attributes Show scopes attributes object
      • local boolean
      • regional boolean
      • global boolean
GET /destinations/:iso3
curl \
 --request GET 'https://zim.api.zimconnections.com/destinations/:iso3' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-App-Identifier: $API_KEY"
Response examples (200)
{
  "name": "France",
  "isoAlpha3": "FRA",
  "scopes": {
    "local": true,
    "regional": true,
    "global": true
  }
}