Get supported Destinations

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/supported_destinations

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
    • name string
    • isoAlpha3 string
GET /destinations/supported_destinations
curl \
 --request GET 'https://zim.api.zimconnections.com/destinations/supported_destinations' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-App-Identifier: $API_KEY"
Response examples (200)
[
  {
    "name": "United Kingdom",
    "isoAlpha3": "GBR"
  }
]