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
      • GETGet cluster options
      • GETGet Deployment options
    • 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 ReferenceOptions

Get Deployment options

GET
https://api.astronomer.io/platform/v1beta1/organizations/:organizationId/deployment-options
GET
/platform/v1beta1/organizations/:organizationId/deployment-options
$curl https://api.astronomer.io/platform/v1beta1/organizations/organizationId/deployment-options \
> -H "Authorization: Bearer <token>"
1{
2 "executors": [
3 "string"
4 ],
5 "resourceQuotas": {
6 "defaultPodSize": {
7 "cpu": {
8 "ceiling": "10",
9 "default": "5",
10 "floor": "1"
11 },
12 "memory": {
13 "ceiling": "10",
14 "default": "5",
15 "floor": "1"
16 }
17 },
18 "resourceQuota": {
19 "cpu": {
20 "ceiling": "10",
21 "default": "5",
22 "floor": "1"
23 },
24 "memory": {
25 "ceiling": "10",
26 "default": "5",
27 "floor": "1"
28 }
29 }
30 },
31 "runtimeReleases": [
32 {
33 "airflowDatabaseMigration": false,
34 "airflowVersion": "2.7.1",
35 "channel": "stable",
36 "releaseDate": "2022-11-22T04:37:12Z",
37 "stellarDatabaseMigration": false,
38 "version": "9.1.0"
39 }
40 ],
41 "schedulerMachines": [
42 {
43 "name": "SMALL",
44 "spec": {
45 "cpu": "1",
46 "memory": "2Gi",
47 "concurrency": 10,
48 "ephemeralStorage": "10Gi"
49 }
50 }
51 ],
52 "workerMachines": [
53 {
54 "concurrency": {
55 "ceiling": 10,
56 "default": 5,
57 "floor": 1
58 },
59 "name": "A5",
60 "spec": {
61 "cpu": "1",
62 "memory": "2Gi",
63 "concurrency": 10,
64 "ephemeralStorage": "10Gi"
65 }
66 }
67 ],
68 "workerQueues": {
69 "maxWorkers": {
70 "ceiling": 10,
71 "default": 5,
72 "floor": 1
73 },
74 "minWorkers": {
75 "ceiling": 10,
76 "default": 5,
77 "floor": 1
78 },
79 "workerConcurrency": {
80 "ceiling": 10,
81 "default": 5,
82 "floor": 1
83 }
84 },
85 "workloadIdentityOptions": [
86 {
87 "label": "workload-label",
88 "role": "workload-role"
89 }
90 ]
91}
Get the options available for configuring a Deployment.
Was this page helpful?
Previous

List clusters

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 retrieve Deployment options for.

Query parameters

deploymentIdstringOptional
The ID of a Deployment to retrieve options for.
deploymentTypeenumOptional
The runtime type of the deployment.
Allowed values:
executorenumOptional
The executor of the deployment.
Allowed values:
cloudProviderenumOptional
The cloud provider of the cluster for the deployment.
Allowed values:

Response

OK
executorslist of strings
The available executors.
resourceQuotasobject
runtimeReleaseslist of objects
The available Astro Runtime versions.
schedulerMachineslist of objects
The available scheduler sizes.
workerMachineslist of objects
The available worker machine types.
workerQueuesobject
workloadIdentityOptionslist of objects
The available workload identity options.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
500
Internal Server Error