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

# Get available exporters

> Retrieves exporters (CRM/destination integrations) available on Databar.

**Pagination:** pass `page` to receive a paginated envelope (`{items, page, limit, has_next_page, total_count}`).

**Deprecated:** calling without `page` returns a plain JSON array for backward compatibility. This form will be removed in a future version -- always pass `page` for new integrations.



## OpenAPI

````yaml GET /v1/exporters/
openapi: 3.1.0
info:
  title: Databar.ai API
  description: >-

    # Authentication


    Databar uses API keys to allow access to the API. You can find your API key
    in your workspace home page, but to use the REST API you’ll first need to
    schedule a call with us.

    Our API expects the API key to be included in all API requests to the server
    in the Header of your request with the key `x-apikey`.

    To find your API key, head over to your Databar workspace and click
    Integrations.


    **Example:**


    `bash

    curl https://api.databar.ai/v1/user/me -H x-apikey: {YOUR_API_KEY}`
  contact:
    email: info@databar.ai
  version: 0.1.2
servers:
  - url: https://api.databar.ai
    description: Production
security: []
paths:
  /v1/exporters/:
    get:
      tags:
        - Exporter
      summary: Get available exporters
      description: >-
        Retrieves exporters (CRM/destination integrations) available on Databar.


        **Pagination:** pass `page` to receive a paginated envelope (`{items,
        page, limit, has_next_page, total_count}`).


        **Deprecated:** calling without `page` returns a plain JSON array for
        backward compatibility. This form will be removed in a future version --
        always pass `page` for new integrations.
      operationId: Exporters_v1_exporters__get
      parameters:
        - name: q
          in: query
          required: false
          schema:
            type: string
            minLength: 3
            title: Search Query
            description: Query string used for searching through exporters.
          description: Query string used for searching through exporters.
        - name: page
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 1
              - type: 'null'
            description: Page number. Omit for a plain list.
            title: Page
          description: Page number. Omit for a plain list.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: Items per page (max 500). Only used with page.
            default: 50
            title: Limit
          description: Items per page (max 500). Only used with page.
        - name: x-apikey
          in: header
          required: true
          schema:
            type: string
            title: API Key
            description: API Key for authentication
          description: API Key for authentication
      responses:
        '200':
          description: List of exporters (plain array or paginated envelope)
          content:
            application/json:
              schema: {}
              examples:
                plain_list:
                  summary: Without page param (backward-compatible)
                  value:
                    - id: 1
                      name: Google Sheets Exporter
                      description: Push data to Google Sheets
                      dataset: 42
                paginated:
                  summary: With ?page=1&limit=50
                  value:
                    items:
                      - id: 1
                        name: Google Sheets Exporter
                        description: Push data to Google Sheets
                        dataset: 42
                    page: 1
                    limit: 50
                    has_next_page: false
                    total_count: 1
        '403':
          description: Forbidden
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````