REST API, webhook events, and the full skill catalog the agents are wired with. Free tier includes 1,000 calls/month. CMS connector SDK and prompt probe endpoints are part of v1 — see endpoint reference below.
Audit a URL, get a JSON report, ship a fix to your CMS — all in one request.
$ curl https://api.visibilitypro.ai/v1/audits \
-H "Authorization: Bearer $VP_KEY" \
-d '{"url": "https://your-site.com/page", "depth": "full"}'
Response (truncated):
{
"id": "aud_8f3a21c",
"url": "https://your-site.com/page",
"score": 64,
"findings": [
{
"agent": "content-agent",
"severity": "high",
"issue": "answer-first intro missing",
"passage": "...",
"suggested_fix": "...",
"fix_id": "fix_9c2"
}
],
"next_actions": ["export_task"]
}
All requests authenticate via bearer token. API key issuance is currently in development — sign up for early access. Scoped keys (read-only, prompt-only, full) planned on Agency+.
API keys are currently in development. Rate limits below reflect the planned values — sign up to be notified at launch.
Limit headers (X-RateLimit-Remaining, X-RateLimit-Reset) on every response.
Subscribe to events at the workspace level:
audit.completed — agent finished, findings availablefinding.created — new high-severity issuefix.drafted — CMS draft created, awaiting approvalfix.shipped — change published to live sitecitation.gained — new citation detected on a tracked enginecitation.lost — previously-cited brand fell out of an answerhallucination.detected — engine asserting a falsifiable claim about your brandcrawler.anomaly — >25% w-o-w fetch drop on a tracked botEvery payload is signed with HMAC-SHA256 over the request body. Verify the X-VP-Signature header before trusting the event.
The CMS connector SDK lets you implement custom discover(), draft(), preview(), and publish() methods for any CMS. Built-in connectors: WordPress, Shopify, Webflow, Drupal, Magento, Joomla, Squarespace + Wix (assist mode), GitHub + GitLab PR mode (Next.js / Nuxt / Astro / Hugo / Gatsby). Sign up to obtain SDK keys.