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

# ListConnectLinksAPI mirrors erdo_list_integration_connect_links.




## OpenAPI

````yaml /api/openapi.json get /v1/integration-connect-links
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, and experiments. Authenticate with
    a Bearer API key (erdo_api_...) or scoped token (erdo_token_...).
  version: '2026-07-25'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/integration-connect-links:
    get:
      summary: |
        ListConnectLinksAPI mirrors erdo_list_integration_connect_links.
      operationId: GET:mcp.ListConnectLinksAPI
      parameters:
        - allowEmptyValue: true
          explode: true
          in: query
          name: app
          required: false
          schema:
            type: string
          style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  links:
                    items:
                      $ref: '#/components/schemas/mcp.ConnectLinkListItem'
                    type: array
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    mcp.ConnectLinkListItem:
      description: >
        targets — a native integration slug (reverse-mapped from the service's
        config\_id) or a Pipedream app slug (carried on the link itself).
        IntegrationID is empty for a Pipedream link that hasn't completed yet,
        since no integration exists until then.
      properties:
        app:
          type: string
        config_id:
          type: string
        created_at:
          format: date-time
          type: string
        expired:
          type: boolean
        expires_at:
          format: date-time
          type: string
        for_reauth:
          type: boolean
        id:
          type: string
        integration_id:
          type: string
        link_url:
          type: string
        status:
          type: string
      title: >
        ConnectLinkListItem is one connect link in the org listing. App is the
        app slug

        it
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````