> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tenbyte.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get CDN servers IP addresses

> Retrieves all IP addresses of CDN servers that can be used to pull content from your origin.

The list is updated periodically. We recommend monitoring its relevance automatically — for example, with a script that keeps your IP ACLs up to date — rather than tracking changes manually.

The response format can be controlled with the `format` query parameter or the `Accept` header. By default the response is returned as JSON.



## OpenAPI

````yaml https://raw.githubusercontent.com/vidinfra/open-api-docs/refs/heads/main/cdn-openapi.json get /cdn/public-ip-list
openapi: 3.0.1
info:
  title: Default module
  description: ''
  version: 1.0.0
servers:
  - url: https://api.tenbyte.io/v1
    description: Production server
security:
  - apikey-header-X-API-Key: []
tags:
  - name: Distributions
  - name: SSL Certificate Manage
  - name: Origins/Upstreams Manage
  - name: Purge
  - name: Prefetch
  - name: Cache Rules
  - name: Access Rules
  - name: Analytics
  - name: Http Headers
  - name: Verifications
  - name: IP Addresses List
paths:
  /cdn/public-ip-list:
    servers:
      - url: https://api.tenbyte.io/v1
        description: Public endpoint (no version prefix)
    get:
      tags:
        - IP Addresses List
      summary: Get CDN servers IP addresses
      description: >-
        Retrieves all IP addresses of CDN servers that can be used to pull
        content from your origin.


        The list is updated periodically. We recommend monitoring its relevance
        automatically — for example, with a script that keeps your IP ACLs up to
        date — rather than tracking changes manually.


        The response format can be controlled with the `format` query parameter
        or the `Accept` header. By default the response is returned as JSON.
      parameters:
        - name: format
          in: query
          description: >-
            Overrides the Accept header to set the response format. Allowed
            values: `json`, `plain`.
          required: false
          example: json
          schema:
            type: string
        - name: Accept
          in: header
          description: >-
            Content negotiation. Allowed values: `application/json`,
            `text/plain`. Defaults to `application/json` if not specified.
          required: false
          example: application/json
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  addresses:
                    type: array
                    items:
                      type: string
                  addresses_v6:
                    type: array
                    items:
                      type: string
              example:
                addresses:
                  - 92.223.74.19/32
                addresses_v6:
                  - 2a03:90c0:191:2801::8/128
            text/plain:
              schema:
                type: string
              example: |-
                92.223.74.19/32
                2a03:90c0:191:2801::8/128
          headers: {}
      deprecated: false
      security: []
components:
  securitySchemes:
    apikey-header-X-API-Key:
      type: apiKey
      in: header
      name: X-API-Key

````