List Alerts
Retrieve saved alert data including all deals that matched the alert criteria within the specified date range. Results include a flattened array of deals sorted by date (newest first) with duplicates removed.
Multiple Alerts Support:
- Query multiple alerts in a single request (up to 10)
- Each alert returns its own flattened deals array
- Different alerts can have different frequencies (e.g., one daily, one weekly)
- Total deal count across all alerts determines rate limit usage
Important Notes:
- All alert_ids must belong to alerts you have access to
- Deals are flattened from all time periods and sorted by date DESC (newest first)
- Duplicate deals are automatically removed
- Each deal includes AI-generated reasoning for why it matched the alert criteria
- Deal structure is simplified with flattened company information for easier integration
Authorizations
API key authentication using Bearer token format.
Format: Authorization: Bearer vg_your_api_key_here
API keys follow the pattern: vg_[12_hex_chars]_[32_base64url_chars]
Query Parameters
Comma-separated list of alert UUIDs (up to 10 alerts per request). All alerts must be associated with your API key's account. Example: "uuid1,uuid2,uuid3"
"550e8400-e29b-41d4-a716-446655440000,660e8400-e29b-41d4-a716-446655440001"
Start date for the alert data range (ISO 8601 format). Results will include deals from this date onwards.
"2024-01-01T00:00:00.000Z"
End date for the alert data range (ISO 8601 format). Results will include deals up to and including this date.
Note: All dates are processed in UTC timezone. Deals are grouped into time periods based on UTC date boundaries.
"2024-12-31T23:59:59.999Z"

