--- title: 'GitLab' description: 'Manage projects, merge requests, and CI/CD pipelines via the GitLab API.' --- # GitLab Manage projects, merge requests, and CI/CD pipelines via the GitLab API. | Detail | Value | |---|---| | Category | Dev Tools | | Base URL | `https://gitlab.com/api` | | Authentication | Bearer Token | | Endpoints | 6 | | Connector key | `gitlab` | ## Using GitLab in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **GitLab** 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 /projects](./get_projects_devtools_listprojects) | List projects | | [GET /projects/{id}](./get_projects_id_devtools_getproject) | Get a project | | [GET /projects/{id}/merge_requests](./get_projects_id_merge_requests_devtools_listmergerequests) | List merge requests | | [POST /projects/{id}/merge_requests](./post_projects_id_merge_requests_devtools_createmergerequest) | Create a merge request | | [GET /projects/{id}/issues](./get_projects_id_issues_devtools_listissues) | List project issues | | [GET /projects/{id}/pipelines](./get_projects_id_pipelines_devtools_listpipelines) | List CI/CD pipelines | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.