API & agents
Run audits from Claude, ChatGPT, or your own code.
The web app and the API share one audit engine. Every call runs 10 real AI queries (5 on ChatGPT, 5 on Google’s Gemini), checks reviews, schema, and listings or catalog signals, and returns one standardized JSON report. API access comes with the Agency plan — your workspace key is your API key.
Audit a local business
curl -X POST https://www.checkmybusinessai.com/api/v1/audit \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Summit Family Dental",
"city": "Austin, TX",
"category": "Dentist",
"vertical": "local"
}'Audit an ecommerce brand
Same endpoint — swap the body. No city needed.
{
"name": "Ridge Wallet",
"category": "wallets",
"website": "https://ridge.com",
"vertical": "ecommerce"
}What comes back
{
"business": { "name", "city", "category", "vertical" },
"visibility_score": 30,
"score_breakdown": { "ai_presence", "reviews", "schema", "listings_or_catalog", "website" },
"issues": [ { "area", "severity", "detail" } ],
"competitors": [ { "name", "score", "beats_client_on" } ],
"revenue_estimate": { "monthly_low", "monthly_high", "assumptions" },
"recommendations": [ { "priority", "action", "how" } ],
"generated_at": "..."
}Each audit also saves a report ID, so /?rid=... share links and /api/results/{rid}/pdf exports work for API runs too.
Using it from an AI agent
Paste this into a Claude Code skill, a ChatGPT custom GPT instruction, or any agent framework’s tool description:
You have access to the CheckMyBusinessAI audit API.
To audit a business, POST to https://www.checkmybusinessai.com/api/v1/audit
with header "Authorization: Bearer <key>" and JSON body:
{ name, city, category, vertical: "local" } for local businesses, or
{ name, category, website, vertical: "ecommerce" } for online brands.
The response is a standardized visibility report. Summarize the score,
the competitors AI mentions instead, and the top 3 recommendations.Get an API key
API access is included in the Agency plan ($99/mo, 50 audits). Checkout takes a minute and your key arrives by email.
See pricing →