AIRANKS — The Authoritative Rankings for AI Web Content

AIRANKS measures AI visibility: we ask AI models real product and service questions, capture the complete answers as immutable observations, and publish what they contain — which brands were mentioned, which domains were cited, and which exact pages were linked. Every domain gets an AIR score from 1–10 (a decile of visibility in the active dataset; 0 means insufficient data), with the methodology in the open.

Skip to main content

AIRVER. FIGHTING — 2026

Artificial Intelligence Rankings

build on the ledger

Developer tools

Every official way to reach the AIR API from code or your terminal — all open source at github.com/airanks-net. Each tool talks to the same public API. The CLIs pair themselves with air login (browser device-code flow, nothing to paste); SDKs and direct API calls use a free token from airanks.net/tokens.

air nike.com in any of them answers the same question the site does: does the AI cite this domain, and how strongly?

Quickstart — from zero to a score

# install the CLI
$ npm install -g airanks

# pair it with your free account — opens your browser, no key to paste
$ air login

# any domain's AI Rank
$ air nike.com

# not a domain? it searches domains, brands, and phrases instead
$ air "best crm software"

# who am I, and what tier?
$ air whoami

The API

  • REST API — OpenAPI 3.1

    API docsOpenAPI spec

    Everything below is a client for this. Interactive docs generated straight from the code on every deploy, so they cannot drift: domains, brands, phrases, search, and CLI pairing.

    curl -H "Authorization: Bearer $AIR_API_KEY" https://airanks.net/api/v1/domains/nike.com

Command line

  • air — Node CLI

    npm ↗README ↗

    The flagship CLI: any site's AI Rank, AI-file audit, and search from your terminal.

    npm install -g airanksair nike.com
  • Single-binary build of the same CLI, installable via Homebrew.

    brew install airanks-net/tap/airair nike.com
  • air — Rust CLI

    README ↗

    Rust build of the CLI. crates.io release coming; build from source today.

    cargo install --git https://github.com/airanks-net/rust-cliair nike.com

SDKs

  • JavaScript / TypeScript SDK

    npm ↗README ↗

    Typed API client for Node and the browser.

    npm install @airanks-net/sdkconst { data } = await new AirClient().domain('nike.com');
  • The AIR API client for Python.

    pip install airanksAirClient().domain("nike.com")
  • PHP client

    README ↗

    The AIR API client for PHP / Laravel. Packagist release coming.

    composer require airanks-net/api-client$client->domain('nike.com');

Agent integrations

  • air_rank / air_files / air_search tools for any MCP-speaking agent (Claude, Cursor, …).

    claude mcp add airanks -- npx -y airanks-mcp-serverthen ask: "what's the AI rank of nike.com?"
  • AIR as a callable agent over the BeeAI Agent Communication Protocol.

    pip install airanks-acp-agentairank-acp
  • Any site's AI Rank in one click, right in your browser.