> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.sevalla.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Git providers

> Retrieve available Git providers (GitHub, Bitbucket, GitLab) with their OAuth connect URLs. Use the connect_url to initiate the OAuth flow and link a Git account. GitHub also includes a settings_url for managing repository access permissions.



## OpenAPI

````yaml https://api.sevalla.com/v3/openapi.json get /git/providers
openapi: 3.1.0
info:
  title: Sevalla API docs
  version: 1.0.0
servers:
  - url: https://api.sevalla.com/v3
security:
  - bearerAuth: []
paths:
  /git/providers:
    get:
      tags:
        - Git
      summary: List Git providers
      description: >-
        Retrieve available Git providers (GitHub, Bitbucket, GitLab) with their
        OAuth connect URLs. Use the connect_url to initiate the OAuth flow and
        link a Git account. GitHub also includes a settings_url for managing
        repository access permissions.
      operationId: listGitProvidersV3
      responses:
        '200':
          description: List of available Git providers
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    provider:
                      type: string
                      enum:
                        - github
                        - bitbucket
                        - gitlab
                      description: Git provider identifier
                    display_name:
                      type: string
                      description: Human-readable provider name
                    connect_url:
                      type: string
                      description: >-
                        OAuth authorization URL to connect the provider to the
                        user account
                    settings_url:
                      description: >-
                        URL to manage repository access settings. Only available
                        for GitHub.
                      type: string
                  required:
                    - provider
                    - display_name
                    - connect_url
                  additionalProperties: false
                description: List of available Git providers
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message
                    example: Unauthorized
                  status:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                    description: HTTP status code
                    example: 401
                  data:
                    type: object
                    properties:
                      code:
                        description: Error tracking code for support reference
                        example: err-abc-123
                        type: string
                      message:
                        description: Additional error details or instructions
                        example: >-
                          If you need assistance, please contact support and
                          provide this error code.
                        type: string
                    additionalProperties: false
                required:
                  - message
                  - status
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message
                    example: Internal Server Error
                  status:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                    description: HTTP status code
                    example: 500
                  data:
                    type: object
                    properties:
                      code:
                        description: Error tracking code for support reference
                        example: err-abc-123
                        type: string
                      message:
                        description: Additional error details or instructions
                        example: >-
                          If you need assistance, please contact support and
                          provide this error code.
                        type: string
                    additionalProperties: false
                required:
                  - message
                  - status
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication. Pass your API key as a Bearer token in the
        Authorization header.

````