QuantCDN Variables API

Environment variable management

Operations 4

GET /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables Get all variables for an environment #
PUT /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables Bulk set/replace environment variables #
DELETE /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables/{api_variable} Delete a variable #
PUT /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables/{api_variable} Update a variable #

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/quantcdn-variables-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

quantcdn-variables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Unified API for QuantCDN Admin and QuantCloud Platform services
  title: QuantCDN AI Agents Variables API
  version: 4.15.8
servers:
- description: QuantCDN Public Cloud
  url: https://dashboard.quantcdn.io
- description: QuantGov Cloud
  url: https://dash.quantgov.cloud
security:
- BearerAuth: []
tags:
- description: Environment variable management
  name: Variables
paths:
  /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables:
    get:
      operationId: listEnvironmentVariables
      parameters:
      - description: The organisation ID
        example: test-org
        explode: false
        in: path
        name: api_organisation
        required: true
        schema:
          type: string
        style: simple
      - description: The application ID
        example: test-app
        explode: false
        in: path
        name: api_application
        required: true
        schema:
          type: string
        style: simple
      - description: The environment ID
        example: test-env
        explode: false
        in: path
        name: api_environment
        required: true
        schema:
          type: string
        style: simple
      responses:
        '200':
          description: A list of variables
      summary: Get all variables for an environment
      tags:
      - Variables
    put:
      operationId: bulkSetEnvironmentVariables
      parameters:
      - description: The organisation ID
        example: test-org
        explode: false
        in: path
        name: api_organisation
        required: true
        schema:
          type: string
        style: simple
      - description: The application ID
        example: test-app
        explode: false
        in: path
        name: api_application
        required: true
        schema:
          type: string
        style: simple
      - description: The environment ID
        example: test-env
        explode: false
        in: path
        name: api_environment
        required: true
        schema:
          type: string
        style: simple
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/bulkSetEnvironmentVariables_request'
        required: true
      responses:
        '200':
          description: Environment variables set/replaced successfully
      summary: Bulk set/replace environment variables
      tags:
      - Variables
  ? /api/v3/organizations/{api_organisation}/applications/{api_application}/environments/{api_environment}/variables/{api_variable}
  : delete:
      operationId: deleteEnvironmentVariable
      parameters:
      - description: The organisation ID
        explode: false
        in: path
        name: api_organisation
        required: true
        schema:
          type: string
        style: simple
      - description: The application ID
        explode: false
        in: path
        name: api_application
        required: true
        schema:
          type: string
        style: simple
      - description: The environment ID
        explode: false
        in: path
        name: api_environment
        required: true
        schema:
          type: string
        style: simple
      - description: The variable key
        explode: false
        in: path
        name: api_variable
        required: true
        schema:
          type: string
        style: simple
      responses:
        '204':
          description: The variable deleted
        '404':
          description: The variable not found
      summary: Delete a variable
      tags:
      - Variables
    put:
      operationId: updateEnvironmentVariable
      parameters:
      - description: The organisation ID
        example: test-org
        explode: false
        in: path
        name: api_organisation
        required: true
        schema:
          type: string
        style: simple
      - description: The application ID
        example: test-app
        explode: false
        in: path
        name: api_application
        required: true
        schema:
          type: string
        style: simple
      - description: The environment ID
        example: test-env
        explode: false
        in: path
        name: api_environment
        required: true
        schema:
          type: string
        style: simple
      - description: The variable key
        explode: false
        in: path
        name: api_variable
        required: true
        schema:
          type: string
        style: simple
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/updateEnvironmentVariable_request'
        required: true
      responses:
        '200':
          description: The variable updated
        '404':
          description: The variable not found
      summary: Update a variable
      tags:
      - Variables
components:
  schemas:
    bulkSetEnvironmentVariables_request_environment_inner:
      properties:
        name:
          type: string
        value:
          type: string
      required:
      - name
      - value
      type: object
    bulkSetEnvironmentVariables_request:
      properties:
        environment:
          items:
            $ref: '#/components/schemas/bulkSetEnvironmentVariables_request_environment_inner'
          type: array
      required:
      - environment
      type: object
    updateEnvironmentVariable_request:
      properties:
        value:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: 'Enter your Bearer token in the format: `Bearer <your-token-here>`. Obtain your API token from the QuantCDN dashboard under Profile > API Tokens.'
      scheme: bearer
      type: http