> ## 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.

# Get an integration

> Returns one integration manifest by id. The full manifest body is included — triggers, OAuth requirements, webhook verification, target types, permissions, bidirectional handling. Use as the source-of-truth payload at install time so the consent screen renders the actual scopes the user is approving.



## OpenAPI

````yaml /openapi.json get /integrations/{id}
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /integrations/{id}:
    get:
      tags:
        - Integrations
      summary: Get an integration
      description: >-
        Returns one integration manifest by id. The full manifest body is
        included — triggers, OAuth requirements, webhook verification, target
        types, permissions, bidirectional handling. Use as the source-of-truth
        payload at install time so the consent screen renders the actual scopes
        the user is approving.
      parameters:
        - schema:
            type: string
            minLength: 1
          required: true
          name: id
          in: path
      responses:
        '200':
          description: The Integration item
          content:
            application/json:
              schema:
                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
        '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
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - integration_not_found
                      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_...)

````