AI Authority Rank API

Integrate AI visibility scoring, citation tracking, and authority analysis directly into your apps, SaaS platforms, or SEO tools.

Your API Key

aiauth_live_xxxxxxxxxxxxxxxxxxxxxx
Regenerate Key Copy Key

Developer Overview

AI Score API

Get real-time AI authority score for any domain across ChatGPT, Gemini, Claude & Perplexity.

GET https://aiauthorityrank.com/wp-json/aira/v1/score?domain=example.com

Citation Analyzer

Analyze where and how your brand is mentioned inside AI responses.

GET /wp-json/aira/v1/citations?domain=example.com

AI Audit API

Generate full AI visibility audit reports programmatically.

POST /wp-json/aira/v1/audit

API Endpoints

Endpoint Method Description
/wp-json/aira/v1/score GET Get AI authority score
/wp-json/aira/v1/citations GET Get AI mentions & citations
/wp-json/aira/v1/audit POST Generate AI audit report
/wp-json/aira/v1/crawl POST AI crawl simulation

Code Examples

JavaScript

fetch("https://aiauthorityrank.com/wp-json/aira/v1/score?domain=example.com") .then(res => res.json()) .then(data => console.log(data));

Python

import requests url = "https://aiauthorityrank.com/wp-json/aira/v1/score" params = {"domain":"example.com"} r = requests.get(url, params=params) print(r.json())

PHP

$response = file_get_contents( "https://aiauthorityrank.com/wp-json/aira/v1/score?domain=example.com" ); echo $response;