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

# List integrations

> Returns every registered integration manifest. Filter by `manifest_name` to enumerate versions of one integration. Each row carries the manifest contents, publisher metadata, and registration timestamps — use to render a marketplace surface or pick a version to install.



## OpenAPI

````yaml /openapi.json get /integrations
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /integrations:
    get:
      tags:
        - Integrations
      summary: List integrations
      description: >-
        Returns every registered integration manifest. Filter by `manifest_name`
        to enumerate versions of one integration. Each row carries the manifest
        contents, publisher metadata, and registration timestamps — use to
        render a marketplace surface or pick a version to install.
      parameters:
        - schema:
            type: string
          required: false
          name: manifest_name
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 200
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: List of registered Integrations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        manifest_name:
                          type: string
                        manifest_version:
                          type: string
                        publisher:
                          type: string
                        summary:
                          type: string
                        direction:
                          type: string
                          enum:
                            - read
                            - write
                            - both
                        runtime_compatibility:
                          type: array
                          items:
                            type: string
                        registered_at:
                          type: string
                        manifest:
                          type: object
                          additionalProperties:
                            nullable: true
                      required:
                        - id
                        - manifest_name
                        - manifest_version
                        - publisher
                        - direction
                        - runtime_compatibility
                        - registered_at
                        - manifest
                required:
                  - data
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````