[ Web Proxy ]
URL:
Viewing: https://developers.cloudflare.com/tenant/how-to/get-account-details/ [Back]  [Original]

Get account details Cloudflare Tenant docsSkip to content
SearchCtrlKLog in
  1. Home
  2. /Tenant
  3. /How to
  4. /Get account details

Get account details

Last updated Apr 21, 2026Copy as MarkdownView as MarkdownAgent setup

An Account will contain various settings, resources, and subscriptions to products for users. Each Tenant can have multiple associated accounts.

To retrieve a list of accounts associated with a Tenant details, send a GET request to the /tenants/{tenant_id}/accounts endpoint. You can find the Tenant tag and all Tenants associated with the user with the Tenant Details API. The Tenant Accounts API also requires pagination passed as query parameters:

  • page number

    • Page number of accounts list response, indexed from 1
  • per_page number

    • Number of accounts to display per page
  • order string

    • (optional) Order by a specific column, has to be a valid top-level key from the response

    • direction number

      • (optional) 0 for ascending or 1 for descending, is 0 by default
Requestbash
curl "https://api.cloudflare.com/client/v4/tenants/{tenant_id}/accounts?page=1&per_page=10" \
--header "X-Auth-Email: <EMAIL>" \
--header "X-Auth-Key: <API_KEY>"

A successful request will return an HTTP status of 200 and a response body containing account information and feature flags for all accounts managed by the Tenant.

PreviousManage subscriptionsNextGet tenant details

Was this helpful?

YesNo
Edit pageReport issue
[]

Web Proxy Viewer  |  New URL  |  Original Page