Get the list of alerts
GET alerts/list is a method that is used for obtaining the list of alerts from an account. This method works for Mention alerts as well as Leads alerts.
Resource URL
https://api.awario.com/v1.0/alerts/list
Parameters
Parameter | Description | Default value |
access_token
|
API key for accessing data through API.
|
|
Example request
GET https://api.awario.com/v1.0/alerts/list?access_token=YOUR_API_KEY
Example response
{ "limits": [ { "limit_name": "monthly_mentions", "limit_reached": true, "limit_renewal_date": 1567341352000 } ], "alerts": [ { "alert_id": 1, "alert_type": "mentions", "alert_name": "awario", "project_id": 1, "project_name": "Awario" }, { "alert_id": 2, "alert_type": "mentions", "alert_name": "brand24", "project_id": 1, "project_name": "Awario" }, { "alert_id": 3, "alert_type": "mentions", "alert_name": "mention.com", "project_id": 1, "project_name": "Awario" }, { "alert_id": 4, "alert_type": "leads", "alert_name": "Leads", "project_id": 1, "project_name": "Awario" }, { "alert_id": 5, "alert_type": "mentions", "alert_name": "seo powersuite" "project_id": 2, "project_name": "SEO PowerSuite" }, { "alert_id": 6, "alert_type": "mentions", "alert_name": "ahrefs", "project_id": 2, "project_name": "SEO PowerSuite" }, { "alert_id": 7, "alert_type": "mentions", "alert_name": "semrush", "project_id": 2, "project_name": "SEO PowerSuite" } ] }