Integrations
Developer API Documentation
Query catalog statuses, pull incident history logs, and trigger autonomic reverts programmatically.
Endpoints
- GET/v1/asins
List Monitored ASINs
- GET/v1/alerts
Active Violations log
- POST/v1/revert
Trigger Self-Healing Revert
- POST/v1/webhooks
Configure Webhooks
Quickstart: Get Active Alerts
Query all currently active list violations for your seller catalog. Pass your developer token in the header.
// Request Example
curl -X GET "https://api.listingsintegrity.ai/v1/alerts?status=active" \
-H "Authorization: Bearer YOUR_API_TOKEN"
// Response 200 OK
{
"status": "success",
"alerts": [
{
"id": "alert_1029",
"asin": "B08HGJKW1L",
"type": "keyword_injection",
"severity": "critical"
}
]
}