QuantCDN Tokens API

API token management

Operations 3

GET /api/v2/organizations/{organization}/tokens List API tokens scoped to this organization #
POST /api/v2/organizations/{organization}/tokens Create a new API token scoped to this organization #
DELETE /api/v2/organizations/{organization}/tokens/{token_id} Revoke an API token #

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-tokens-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-tokens-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Unified API for QuantCDN Admin and QuantCloud Platform services
  title: QuantCDN AI Agents Tokens 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: API token management
  name: Tokens
paths:
  /api/v2/organizations/{organization}/tokens:
    get:
      operationId: Tokens_list
      parameters:
      - description: Organization identifier
        example: test-org
        explode: false
        in: path
        name: organization
        required: true
        schema:
          type: string
        style: simple
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Tokens_list_200_response_inner'
                type: array
          description: The request has succeeded.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Access is forbidden.
      security:
      - BearerAuth: []
      summary: List API tokens scoped to this organization
      tags:
      - Tokens
    post:
      operationId: Tokens_create
      parameters:
      - description: Organization identifier
        example: test-org
        explode: false
        in: path
        name: organization
        required: true
        schema:
          type: string
        style: simple
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Tokens_create_request'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tokens_create_201_response'
          description: Token created. The plain token is returned once and cannot be retrieved again.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Bad request.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Access is forbidden.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Validation error.
      security:
      - BearerAuth: []
      summary: Create a new API token scoped to this organization
      tags:
      - Tokens
  /api/v2/organizations/{organization}/tokens/{token_id}:
    delete:
      operationId: Tokens_delete
      parameters:
      - description: Organization identifier
        example: test-org
        explode: false
        in: path
        name: organization
        required: true
        schema:
          type: string
        style: simple
      - description: Token ID to revoke
        example: 42
        explode: false
        in: path
        name: token_id
        required: true
        schema:
          type: integer
        style: simple
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tokens_delete_200_response'
          description: Token revoked successfully.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Access is forbidden.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2Error'
          description: Token not found.
      security:
      - BearerAuth: []
      summary: Revoke an API token
      tags:
      - Tokens
components:
  schemas:
    Tokens_create_request:
      properties:
        name:
          description: Name for the token
          example: My CI token
          type: string
        preset:
          description: Preset scope bundle
          example: content_management
          type:
          - string
          - 'null'
        scopes:
          description: Individual scopes (mutually exclusive with preset)
          example:
          - projects:read
          - content:write
          items:
            type: string
          type:
          - array
          - 'null'
        projects:
          description: Project IDs to restrict this token to
          items:
            type: integer
          type:
          - array
          - 'null'
        expires_in:
          description: Token expiration period
          enum:
          - 30d
          - 90d
          - 365d
          - never
          example: 90d
          type:
          - string
          - 'null'
      required:
      - name
      type: object
    Tokens_delete_200_response:
      example:
        message: Token revoked successfully
      properties:
        message:
          example: Token revoked successfully
          type: string
      type: object
    V2Error:
      example:
        message: The requested resource was not found
        error: true
      properties:
        message:
          description: Error message
          example: The requested resource was not found
          type: string
        error:
          description: Error flag
          example: true
          type: boolean
      required:
      - error
      - message
      type: object
    Tokens_create_201_response:
      example:
        projects:
        - 6
        - 6
        expires_at: 2000-01-23 04:56:07+00:00
        name: name
        created_at: 2000-01-23 04:56:07+00:00
        id: 0
        scopes:
        - scopes
        - scopes
        preset: preset
        token: token
      properties:
        token:
          description: The plain text token (shown once)
          type: string
        id:
          description: Token ID
          type: integer
        name:
          type: string
        scopes:
          items:
            type: string
          type:
          - array
          - 'null'
        projects:
          items:
            type: integer
          type:
          - array
          - 'null'
        preset:
          type:
          - string
          - 'null'
        expires_at:
          format: date-time
          type:
          - string
          - 'null'
        created_at:
          format: date-time
          type: string
      type: object
    Tokens_list_200_response_inner:
      example:
        last_used: 2000-01-23 04:56:07+00:00
        name: My deploy token
        created_at: 2000-01-23 04:56:07+00:00
        id: 42
      properties:
        id:
          example: 42
          type: integer
        name:
          example: My deploy token
          type: string
        last_used:
          format: date-time
          type:
          - string
          - 'null'
        created_at:
          format: date-time
          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