Account Converter Demo

Looks up a Cloudflare account's internal numeric identifier from a tag using the Workers Toolbox Account Converter service.

About the Account Converter

The Account Converter is a Workers service that converts Cloudflare account tags (32-character hexadecimal strings) to their internal numeric identifiers. This is useful for internal Cloudflare tools that need to work with account IDs.

Example Usage:

// In a Worker
const response = await env.ACCOUNT_CONVERTER.convertAccountTagToID(
  ""
);

if (response.ok) {
  console.log("Internal ID:", response.result);
}

Lookup account tag: