Build on the AI Visibility Standard

Integrate AI brand visibility data into your product. Free tier included. RESTful JSON API.

Quick start

1

Get your API key

Free. Just your email. No credit card.

2

Make a request

One endpoint. JSON response. Sub-second cached.

3

Use the data

Score, sentiment, competitors, per-LLM breakdown.

Code examples

curl
curl "https://api.queraid.com/api/v1/score?brand=stripe.com" \
  -H "X-API-Key: qr_YOUR_KEY"
Python
import requests

r = requests.get(
    "https://api.queraid.com/api/v1/score",
    params={"brand": "stripe.com"},
    headers={"X-API-Key": "qr_YOUR_KEY"}
)
print(r.json()["score"])  # 78
JavaScript
const res = await fetch(
  "https://api.queraid.com/api/v1/score?brand=stripe.com",
  { headers: { "X-API-Key": "qr_YOUR_KEY" } }
);
const { score } = await res.json();
console.log(score); // 78

Endpoint reference

Method Path Description Auth
GET /api/v1/score?brand=X Get cached score or start audit Optional
POST /api/v1/score Start full audit (async) Optional
GET /api/v1/score/{id}/status Poll audit progress No
GET /api/v1/score/{id}/result Full audit result JSON No
GET /api/v1/badge/{brand}.svg Embeddable SVG badge No
GET /api/v1/index List industries with brand counts No
GET /api/v1/index/{industry} Top 20 brands in industry No
POST /api/v1/auth/api-key Generate API key No
POST /api/v1/auth/magic-link Send magic link email No
GET /api/v1/auth/me Current user info JWT cookie

Rate limits

Tier API Requests/day Score Checks Price
Free 100 Unlimited $0
Pro 1,000 Unlimited + tracking $29/mo
API Pro 10,000 Unlimited + bulk $99/mo
Enterprise Custom Custom + data feed Contact us

Badge embed

Display your AI visibility score on your website with a dynamic badge.

HTML
<a href="https://queraid.com/brand-visibility?brand=YOUR_BRAND">
  <img src="https://api.queraid.com/api/v1/badge/YOUR_BRAND.svg"
       alt="Queraid AI Visibility Score" />
</a>

Variants: ?variant=dark (default), ?variant=light, ?variant=minimal

See all badge variants →

Get your free API key

No credit card. 100 requests/day. Start building in 30 seconds.