Zero Trust Network Access Registrations API

Per-user WARP registrations on a device.

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-registrations-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-registrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cloudflare Zero Trust Network Access Registrations 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: Registrations
  description: Per-user WARP registrations on a device.
paths:
  /accounts/{account_id}/devices/registrations:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Registrations
      summary: List WARP registrations
      operationId: listRegistrations
      responses:
        '200':
          description: Registrations list.
    delete:
      tags:
      - Registrations
      summary: Delete a list of WARP registrations
      operationId: deleteRegistrations
      responses:
        '200':
          description: Registrations deleted.
  /accounts/{account_id}/devices/registrations/{registration_id}:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    - name: registration_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Registrations
      summary: Get a WARP registration
      operationId: getRegistration
      responses:
        '200':
          description: Registration.
    delete:
      tags:
      - Registrations
      summary: Delete a WARP registration
      operationId: deleteRegistration
      responses:
        '200':
          description: Registration removed.
  /accounts/{account_id}/devices/registrations/revoke:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Registrations
      summary: Revoke a list of WARP registrations
      operationId: revokeRegistrations
      responses:
        '200':
          description: Registrations revoked.
  /accounts/{account_id}/devices/registrations/unrevoke:
    parameters:
    - name: account_id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Registrations
      summary: Unrevoke a list of WARP registrations
      operationId: unrevokeRegistrations
      responses:
        '200':
          description: Registrations unrevoked.
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.'