Integrate AI Visibility Into Your Workflow
Connect Ansly to your existing tools and workflows. Automate scans, sync results, and build custom reporting.
Powerful REST API
Programmatic access to everything Ansly can do. Trigger scans, retrieve detailed results, compare URLs, and export data — all via simple REST endpoints.
- Trigger scans programmatically
- Retrieve full 147-factor results
- Compare multiple URLs
- Webhook notifications
// Trigger a scan
const response = await fetch('https://api.ansly.ai/v1/scans', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://example.com/page-to-scan'
})
});
const { scanId } = await response.json();
// Poll for results (or use webhooks)
const result = await fetch(
`https://api.ansly.ai/v1/scans/${scanId}/result`,
{ headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
);
const data = await result.json();
console.log(data.score); // 72Available Integrations
REST API
Programmatic access to trigger scans, retrieve results, and export data.
PDF Export
One-click export of scan reports to professional PDF format.
Slack Notifications
Get notified when scans complete or scores change significantly.
Google Sheets
Automatically sync scan results to Google Sheets for reporting.
Zapier
Connect Ansly to 5,000+ apps with custom automation workflows.
WordPress Plugin
Run AI Visibility scans directly from your WordPress dashboard.
What You Can Build
Scheduled Monitoring
Set up daily or weekly automated scans of your key pages. Get notified when scores change significantly.
Custom Dashboards
Pull scan data into your existing BI tools. Build custom reports combining AI Visibility with other metrics.
CI/CD Integration
Add AI Visibility checks to your deployment pipeline. Block deploys that drop your score below a threshold.
Frequently Asked Questions
API access is included in Team and Enterprise plans. Once subscribed, you'll find your API key in your account settings. Our API documentation provides code examples in JavaScript, Python, and cURL.
Team plans include 100 API calls per hour. Enterprise plans have custom rate limits based on your needs. Each scan counts as one API call. Contact us if you need higher limits.
Yes, Enterprise plans include webhook support. You can configure a webhook URL to receive a POST request when any scan completes, including the scan ID and basic results. Full results can then be fetched via the API.