Zero Trust Network Access DEX Tests API

Digital Experience Monitoring tests.

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/zero-trust-network-access-dex-tests-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

zero-trust-network-access-dex-tests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cloudflare Zero Trust Network Access DEX Tests API
  description: 'Cloudflare One / Zero Trust is a ZTNA platform exposed via the Cloudflare

    REST API (api.cloudflare.com/client/v4). This specification documents the

    subset of endpoints used to manage WARP devices, device registrations,

    Global WARP override, DEX tests, IP profiles, and deployment groups for an

    account''s Zero Trust deployment. Endpoint paths and behavior are sourced

    from developers.cloudflare.com/api/resources/zero_trust.'
  version: '4.0'
  contact:
    name: Cloudflare API Reference
    url: https://developers.cloudflare.com/api/resources/zero_trust/
servers:
- url: https://api.cloudflare.com/client/v4
  description: Cloudflare API
security:
- bearerAuth: []
- apiKeyAuth: []
tags:
- name: DEX Tests
  description: Digital Experience Monitoring tests.
paths:
  /accounts/{account_id}/dex/devices/dex_tests:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - DEX Tests
      summary: List DEX tests
      operationId: listDexTests
      responses:
        '200':
          description: DEX tests.
    post:
      tags:
      - DEX Tests
      summary: Create a DEX test
      operationId: createDexTest
      responses:
        '200':
          description: DEX test created.
  /accounts/{account_id}/dex/devices/dex_tests/{dex_test_id}:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    - name: dex_test_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - DEX Tests
      summary: Get a DEX test
      operationId: getDexTest
      responses:
        '200':
          description: DEX test.
    put:
      tags:
      - DEX Tests
      summary: Update a DEX test
      operationId: updateDexTest
      responses:
        '200':
          description: DEX test updated.
    delete:
      tags:
      - DEX Tests
      summary: Delete a DEX test
      operationId: deleteDexTest
      responses:
        '200':
          description: DEX test removed.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Cloudflare API Token (recommended). `Authorization: Bearer <token>`.'
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-Auth-Key
      description: 'Legacy authentication using `X-Auth-Email` + `X-Auth-Key` (Global API Key)

        headers. Bearer token is preferred.'