Lightdash Gitlab API

The Gitlab API from Lightdash — 4 operation(s) for gitlab.

Operations 4

GET /api/v1/gitlab/install Install GitLab integration #
GET /api/v1/gitlab/oauth/callback GitLab OAuth callback #
DELETE /api/v1/gitlab/uninstall Uninstall GitLab integration #
GET /api/v1/gitlab/repos/list List GitLab projects #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lightdash-gitlab-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lightdash-gitlab-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lightdash AiAgents Gitlab API
  version: 0.3156.1
  description: 'Open API documentation for all public Lightdash API endpoints. # Authentication Before you get started, you might need to create a Personal Access Token to authenticate via the API. You can create a token by following this guide: https://docs.lightdash.com/references/personal_tokens

    '
  license:
    name: MIT
  contact:
    name: Lightdash Support
    email: support@lightdash.com
    url: https://docs.lightdash.com/help-and-contact/contact/contact_info/
servers:
- url: /
tags:
- name: Gitlab
paths:
  /api/v1/gitlab/install:
    get:
      operationId: installGitlabIntegration
      responses:
        '302':
          description: Redirect to GitLab OAuth
      description: Initiate GitLab OAuth integration
      summary: Install GitLab integration
      security: []
      parameters:
      - description: Custom GitLab instance URL (optional, defaults to gitlab.com)
        in: query
        name: gitlab_instance_url
        required: false
        schema:
          type: string
      tags:
      - Gitlab
  /api/v1/gitlab/oauth/callback:
    get:
      operationId: gitlabOauthCallback
      responses:
        '204':
          description: No content
      description: GitLab OAuth callback handler
      summary: GitLab OAuth callback
      security: []
      parameters:
      - description: Authorization code from GitLab
        in: query
        name: code
        required: false
        schema:
          type: string
      - description: OAuth state parameter for CSRF protection
        in: query
        name: state
        required: false
        schema:
          type: string
      - description: GitLab instance URL (for self-hosted instances)
        in: query
        name: gitlab_instance_url
        required: false
        schema:
          type: string
      tags:
      - Gitlab
  /api/v1/gitlab/uninstall:
    delete:
      operationId: uninstallGitlabIntegration
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiSuccessEmpty'
      description: Uninstall GitLab integration from the organization
      summary: Uninstall GitLab integration
      security: []
      parameters: []
      tags:
      - Gitlab
  /api/v1/gitlab/repos/list:
    get:
      operationId: getGitlabProjects
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  results:
                    items:
                      $ref: '#/components/schemas/GitRepo'
                    type: array
                  status:
                    type: string
                    enum:
                    - ok
                required:
                - results
                - status
                type: object
      description: List GitLab projects accessible via the integration
      summary: List GitLab projects
      security: []
      parameters: []
      tags:
      - Gitlab
components:
  schemas:
    ApiSuccessEmpty:
      properties:
        results: {}
        status:
          type: string
          enum:
          - ok
      required:
      - status
      type: object
    GitRepo:
      properties:
        defaultBranch:
          type: string
        ownerLogin:
          type: string
        fullName:
          type: string
        name:
          type: string
      required:
      - defaultBranch
      - ownerLogin
      - fullName
      - name
      type: object
  securitySchemes:
    session_cookie:
      type: apiKey
      in: cookie
      name: connect.sid
    api_key:
      type: apiKey
      in: header
      name: Authorization
      description: Value should be 'ApiKey <your key>'