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

# List Integration Providers

> List supported integration providers (metadata for connect flows).



## OpenAPI

````yaml https://hub.griff.services/documentation/json get /integrations/providers
openapi: 3.1.0
info:
  title: Griffin Hub API
  description: API for managing and running test monitors
  version: 1.0.0
servers:
  - url: https://hub.griff.services
    description: Local development server
  - url: http://localhost:3000
    description: Local development server
security:
  - bearerAuth: []
tags:
  - name: monitors
    description: Test monitor management endpoints
  - name: runs
    description: Test run management endpoints
  - name: metrics
    description: Metrics and health summary endpoints
paths:
  /integrations/providers:
    get:
      tags:
        - integrations
      summary: List Integration Providers
      description: List supported integration providers (metadata for connect flows).
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - providers
                properties:
                  providers:
                    type: array
                    items:
                      type: object
                      required:
                        - category
                        - provider
                        - displayName
                        - authMethod
                      properties:
                        category:
                          type: string
                          enum:
                            - notifications
                            - secrets
                            - metrics
                        provider:
                          type: string
                          enum:
                            - aws
                            - vault
                            - slack
                            - email
                            - webhook
                            - resend
                        displayName:
                          type: string
                        authMethod:
                          anyOf:
                            - type: string
                              enum:
                                - oauth
                            - type: string
                              enum:
                                - credentials
                        configFields:
                          type: array
                          items:
                            type: object
                            required:
                              - key
                              - label
                            properties:
                              key:
                                type: string
                              label:
                                type: string
                              secret:
                                type: boolean
                              required:
                                type: boolean
                              default:
                                type: string
                        credentialFields:
                          type: array
                          items:
                            type: object
                            required:
                              - key
                              - label
                            properties:
                              key:
                                type: string
                              label:
                                type: string
                              secret:
                                type: boolean
                              required:
                                type: boolean
                              default:
                                type: string
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '502':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '503':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
        '504':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````