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 whoamiThe API
REST API — OpenAPI 3.1
API docsOpenAPI specEverything 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
The flagship CLI: any site's AI Rank, AI-file audit, and search from your terminal.
npm install -g airanksair nike.comair — Go CLI
README ↗Homebrew tap ↗Single-binary build of the same CLI, installable via Homebrew.
brew install airanks-net/tap/airair nike.comair — 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
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-acpChrome toolbar
Get the toolbarREADME ↗Any site's AI Rank in one click, right in your browser.