Nice—this is the raw HTML for ICANN’s “List of Accredited Registrars” dropdown. Here’s a quick, copy-paste script you can run in your browser console on that page to extract everything and download a clean CSV (Registrar, IANA):

// Open DevTools (F12) on the registrars page, paste this, press Enter
(() => {
  const spans = [...document.querySelectorAll('label.search-drop-down__item span, span.ng-star-inserted')];
  const rows = spans
    .map(s => s.textContent?.trim())
    .filter(t => t && /\s-\s\d+$/.test(t))                         // only entries like "Name - 1234"
    .map(t => {
      const m = t.match(/^(.+?)\s-\s(\d+)$/);
      return [m[1], m[2]];
    });

  // de-dupe while preserving order
  const seen = new Set();
  const deduped = rows.filter(([name, id]) => {
    const key = name + '|' + id;
    if (seen.has(key)) return false;
    seen.add(key);
    return true;
  });

  const csv = 'Registrar,IANA\n' + deduped
    .map(([name, id]) => `"${name.replace(/"/g, '""')}",${id}`)
    .join('\n');

  const blob = new Blob([csv], { type: 'text/csv' });
  const a = Object.assign(document.createElement('a'), {
    href: URL.createObjectURL(blob),
    download: 'icann-registrars.csv'
  });
  document.body.appendChild(a);
  a.click();
  a.remove();
})();

That’ll give you a tidy CSV of everything in the dropdown (including all those DropCatch.com #### LLC items). Want me to also generate subsets (e.g., only DropCatch.com, only Dynadot*, etc.) or format it as JSON?

Key terms in plain language

Open a term for a concise explanation of language used on this page.

Broadband

A general term for always-on, high-speed Internet access. Broadband can be delivered over fiber, cable, DSL, fixed wireless, cellular, or satellite networks.

Cloud Computing

Computing resources—such as applications, servers, storage, or databases—delivered from remote infrastructure and scaled as requirements change.

Cybersecurity

The practices and controls used to protect identities, devices, networks, applications, and data from unauthorized access, disruption, or manipulation.

Identity and Access Management (IAM)

The systems and policies that determine who a user is, what resources they may access, and how that access is authenticated and reviewed.

API

An application programming interface is a defined way for software systems to exchange data or request functions from one another.

Artificial Intelligence (AI)

Software designed to perform tasks involving prediction, classification, generation, reasoning, or decision support. Business use still requires clear data, governance, security, and human accountability.