Retrieve a list of IP Addresses for the given Super SIM.

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://twilio.demo.bump-doc.com/doc/supersim/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Supersim MCP server": {
  "url": "https://twilio.demo.bump-doc.com/doc/supersim/mcp"
}
Close
GET /v1/Sims/{SimSid}/IpAddresses

IP Addresses for a Super SIM configured to use a VPN connection

Retrieve a list of IP Addresses for the given Super SIM.

Path parameters

  • SimSid string Required

    The SID of the Super SIM to list IP Addresses for.

Query parameters

  • PageSize integer(int64)

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    Minimum value is 1, maximum value is 1000.

  • Page integer

    The page index. This value is simply for client state.

    Minimum value is 0.

  • PageToken string

    The page token. This is provided by the API.

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

    Hide response attributes Show response attributes object
    • ip_addresses array[object]
      Hide ip_addresses attributes Show ip_addresses attributes object
      • ip_address string | null

        IP address assigned to the given Super SIM

      • ip_address_version string

        IP address version of the corresponding IP address

        Values are IPv4 or IPv6.

    • meta object
      Hide meta attributes Show meta attributes object
      • first_page_url string(uri)
      • key string
      • next_page_url string(uri) | null
      • page integer
      • page_size integer
      • previous_page_url string(uri) | null
      • url string(uri)
GET /v1/Sims/{SimSid}/IpAddresses
curl \
 --request GET 'https://supersim.twilio.com/v1/Sims/{SimSid}/IpAddresses' \
 --user "username:password"
Response examples (200)
{
  "meta": {
    "key": "ip_addresses",
    "first_page_url": "https://supersim.twilio.com/v1/Sims/HSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/IpAddresses?PageSize=50&Page=0",
    "next_page_url": null,
    "page": 0,
    "page_size": 50,
    "previous_page_url": null,
    "url": "https://supersim.twilio.com/v1/Sims/HSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/IpAddresses?PageSize=50&Page=0"
  },
  "ip_addresses": []
}
{
  "meta": {
    "key": "ip_addresses",
    "first_page_url": "https://supersim.twilio.com/v1/Sims/HSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/IpAddresses?PageSize=50&Page=0",
    "next_page_url": null,
    "page": 0,
    "page_size": 50,
    "previous_page_url": null,
    "url": "https://supersim.twilio.com/v1/Sims/HSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/IpAddresses?PageSize=50&Page=0"
  },
  "ip_addresses": [
    {
      "ip_address": "8.8.8.8",
      "ip_address_version": "IPv4"
    }
  ]
}