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

# Get a card deep link

> Creates a shareable deep link for a Remember business card. Omit both `cardId` and `name` to use the token owner's own profile card; otherwise pass **both** together. **Pro license required.**



## OpenAPI

````yaml /api-reference/remember/openapi.json get /remember/card-link
openapi: 3.1.0
info:
  title: Magic Meal Kits — Remember API
  version: 1.0.0
  description: >-
    Generate a Remember business-card deep link through your Magic Meal Kits
    server. Backs the **Remember** Make.com app.


    Auth: the MMK `X-API-KEY` only. Your Remember token is set once on the
    connection page in the Magic Meal Kits app and resolved server-side — no
    per-request token header is needed. **Pro license required.**
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://{deployment}/api/v1
    description: Your Magic Meal Kits deployment
    variables:
      deployment:
        default: magic-meal-kits-xxxxx.run.app
        description: Your Cloud Run host (without protocol)
security:
  - ApiKeyAuth: []
tags:
  - name: Cards
    description: Business-card deep links.
paths:
  /remember/card-link:
    get:
      tags:
        - Cards
      summary: Get a card deep link
      description: >-
        Creates a shareable deep link for a Remember business card. Omit both
        `cardId` and `name` to use the token owner's own profile card; otherwise
        pass **both** together. **Pro license required.**
      operationId: rememberCardLink
      parameters:
        - name: cardId
          in: query
          schema:
            type: integer
            format: int64
          description: >-
            Card ID. Provide together with `name`, or omit both to use your
            profile card.
        - name: name
          in: query
          schema:
            type: string
          description: Card owner name. Provide together with `cardId`.
      responses:
        '200':
          description: Deep link
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse'
              example:
                status: success
                data:
                  url: https://rmbr.in/abc123
        '400':
          description: >-
            Invalid request, or a Basic key (`you are not a magic meal kits PRO
            user`)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse'
        '401':
          description: >-
            Remember connection not configured, or the stored token was rejected
            — (re)connect on the connection page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse'
components:
  schemas:
    StandardResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
        data:
          type: object
          additionalProperties: true
          description: Result payload (includes the deep-link `url`).
        error:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Your deployment's API key (MMK_API_KEY).

````