For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
  • Astro API v1beta1
    • v1beta1 deprecation notice
    • Migrate to v1
  • Platform API Reference
      • GETList alerts
      • POSTCreate an alert
      • GETGet an alert
      • POSTUpdate an alert
      • DELDelete an alert
    • Changelog
  • IAM API Reference
    • Changelog
    • Book Office Hours

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
Platform API ReferenceAlerts

List alerts

GET
https://api.astronomer.io/platform/v1beta1/organizations/:organizationId/alerts
GET
/platform/v1beta1/organizations/:organizationId/alerts
$curl https://api.astronomer.io/platform/v1beta1/organizations/organizationId/alerts \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "alerts": [
3 {
4 "createdAt": "2024-04-10T09:15:30Z",
5 "createdBy": {
6 "id": "clm8qv74h000008mlf08scq7k",
7 "apiTokenName": "deployment-service-key",
8 "avatarUrl": "https://avatars.astronomer.io/users/janedoe.png",
9 "fullName": "Jane Doe",
10 "subjectType": "USER",
11 "username": "jane.doe@astronomer.io"
12 },
13 "entityId": "dag-9876zyxw4321vuts",
14 "entityType": "DEPLOYMENT",
15 "id": "alert-0011223344556677",
16 "name": "Daily DAG Success Alert",
17 "organizationId": "org-8765dcba4321hgfe",
18 "rules": {
19 "properties": {
20 "threshold": "100%",
21 "timeWindow": "24h"
22 },
23 "patternMatches": [
24 {
25 "entityType": "DAG_ID TASK_ID",
26 "operatorType": "IS",
27 "values": [
28 "daily_data_pipeline"
29 ]
30 }
31 ]
32 },
33 "severity": "INFO",
34 "type": "DAG_SUCCESS",
35 "updatedAt": "2024-04-10T09:20:00Z",
36 "updatedBy": {
37 "id": "clm8qv74h000008mlf08scq7k",
38 "apiTokenName": "deployment-service-key",
39 "avatarUrl": "https://avatars.astronomer.io/users/janedoe.png",
40 "fullName": "Jane Doe",
41 "subjectType": "USER",
42 "username": "jane.doe@astronomer.io"
43 },
44 "deploymentId": "dep-1234abcd5678efgh",
45 "entityName": "daily_data_pipeline",
46 "notificationChannels": [
47 {
48 "createdAt": "2024-04-01T12:00:00Z",
49 "definition": "Slack channel #alerts for deployment notifications",
50 "entityId": "org-8765dcba4321hgfe",
51 "entityType": "ORGANIZATION",
52 "id": "notif-9988776655443322",
53 "name": "Slack Alerts Channel",
54 "organizationId": "org-8765dcba4321hgfe",
55 "type": "SLACK",
56 "updatedAt": "2024-04-05T15:30:00Z",
57 "deploymentId": "dep-1234abcd5678efgh",
58 "workspaceId": "ws-1122334455667788"
59 }
60 ],
61 "workspaceId": "ws-1122334455667788"
62 }
63 ],
64 "limit": 1,
65 "offset": 1,
66 "totalCount": 1
67}
List alerts.
Was this page helpful?
Previous

Create an alert

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

organizationIdstringRequired
The ID of the Organization to which the alerts belong to.

Query parameters

alertIdslist of stringsOptional
A list of IDs for specific alerts to list. The API returns details for all alerts which have been specified in this list.
deploymentIdslist of stringsOptional
A list of deployment IDs the alerts belong to. The API returns details for all alerts belonging only to the specified Deployments.
workspaceIdslist of stringsOptional
A list of workspace IDs the alerts belong to. The API returns details for all alerts belonging only to the specified Workspaces.
alertTypeslist of enumsOptional
A list of types for specific alerts to filter by. The API returns details for all alerts belonging only to the specified alert types.
entityTypeenumOptional
The type of the entity the alerts belong to.
Allowed values:
offsetintegerOptional>=0Defaults to 0
The number of results to skip before returning values.
limitintegerOptional0-1000Defaults to 20
The maximum number of results to return.
sortslist of enumsOptional

A list of field names to sort by, and whether to show results as ascending or descending. Formatted as <fieldName>:asc or <fieldName>:desc.

Response

OK
alertslist of objects
The list of alerts.
limitinteger
The limit for pagination.
offsetinteger
The offset for pagination.
totalCountinteger
The total count of alerts.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error