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

# list connectable providers

> List every connectable provider with a `kind: "byok" | "oauth"` flag. BYOK providers expose `fields` to POST to /v1/connections; OAuth providers (e.g. notion) connect via the redirect flow at GET /v1/connections/{provider}/oauth/start. Firebase user session required.



## OpenAPI

````yaml /openapi.json get /v1/connections/providers
openapi: 3.1.0
info:
  title: fetchbean API
  version: v1
  description: >-
    One key for web search, page reads, weather, social data, and raw provider
    access.
servers:
  - url: https://api.fetchbean.com
security:
  - bearerAuth: []
paths:
  /v1/connections/providers:
    get:
      tags:
        - Connections
      summary: list connectable providers
      description: >-
        List every connectable provider with a `kind: "byok" | "oauth"` flag.
        BYOK providers expose `fields` to POST to /v1/connections; OAuth
        providers (e.g. notion) connect via the redirect flow at GET
        /v1/connections/{provider}/oauth/start. Firebase user session required.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Authentication error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            retryable:
              type: boolean
            billable:
              type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your fetchbean API key (fb_…).

````