--- title: 'MongoDB Atlas' description: 'Manage clusters, databases, users, and monitoring with the MongoDB Atlas API.' --- # MongoDB Atlas Manage clusters, databases, users, and monitoring with the MongoDB Atlas API. | Detail | Value | |---|---| | Category | Database | | Base URL | `https://cloud.mongodb.com/api/atlas/v2` | | Authentication | HTTP Digest | | Endpoints | 8 | | Connector key | `mongodb-atlas` | ## Using MongoDB Atlas in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **MongoDB Atlas** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /groups](./get_groups_database_listprojects) | List projects | | [GET /groups/{groupId}/clusters](./get_groups_groupid_clusters_database_listclusters) | List clusters | | [POST /groups/{groupId}/clusters](./post_groups_groupid_clusters_database_createcluster) | Create a cluster | | [GET /groups/{groupId}/clusters/{clusterName}](./get_groups_groupid_clusters_clustername_database_getcluster) | Get cluster details | | [DELETE /groups/{groupId}/clusters/{clusterName}](./delete_groups_groupid_clusters_clustername_database_deletecluster) | Delete a cluster | | [GET /groups/{groupId}/databaseUsers](./get_groups_groupid_databaseusers_database_listdatabaseusers) | List database users | | [POST /groups/{groupId}/databaseUsers](./post_groups_groupid_databaseusers_database_createdatabaseuser) | Create a database user | | [GET /groups/{groupId}/alerts](./get_groups_groupid_alerts_database_listalerts) | List alerts | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.