Qwilt Origin Allow List API

Qwilt CDN egress IP addresses for origin allow-listing

Operations 1

GET /api/1.0/network/device-ip Get the origin allow list #

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/qwilt-origin-allow-list-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

qwilt-origin-allow-list-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Qwilt CDN Origin Allow List API
  version: '1.0'
  description: The Qwilt Origin Allow List (device-ip) API returns the list of IP addresses the Qwilt CDN may use to fetch content from a customer origin, grouped by ISP network, so operators can allow-list Qwilt egress. Endpoint, method, path, and the authentication model were transcribed faithfully from Qwilt's open-source Terraform provider client (github.com/Qwilt/terraform-provider-qwilt).
  contact:
    name: Qwilt Support
    email: support@qwilt.com
    url: https://docs.qwilt.com/
  license:
    name: Proprietary
servers:
- url: https://device-ip.cqloud.com
  description: Qwilt CDN production (Origin Allow List host)
security:
- apiKeyAuth: []
- bearerAuth: []
tags:
- name: Origin Allow List
  description: Qwilt CDN egress IP addresses for origin allow-listing
paths:
  /api/1.0/network/device-ip:
    get:
      operationId: getOriginAllowList
      tags:
      - Origin Allow List
      summary: Get the origin allow list
      description: Retrieve the comprehensive list of IP addresses that Qwilt CDN may use to fetch content from your origin, grouped by ISP network.
      responses:
        '200':
          description: The origin allow list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OriginAllowList'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    OriginAllowList:
      type: object
      description: IP addresses Qwilt CDN uses to fetch from origin, grouped by ISP network.
      additionalProperties: true
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key sent as `Authorization: X-API-KEY <api-key>`.'
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token from the login service (cqloudLoginToken).
x-provenance:
  generated: '2026-07-20'
  method: derived
  source: https://github.com/Qwilt/terraform-provider-qwilt/blob/main/qwilt/cdn/client/ip_allow_list.go