> ## Documentation Index
> Fetch the complete documentation index at: https://supermemory-personal-brain-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get container tag merge status

> Get queued container tag merge status



## OpenAPI

````yaml https://api.supermemory.ai/v4/openapi get /v3/container-tags/merge/{mergeId}
openapi: 3.1.0
info:
  title: supermemory API
  description: >-
    The Memory API for the AI era. OpenAPI operations include x-codeSamples for
    the official TypeScript and Python SDKs (Mintlify-compatible).
  version: 3.0.0
servers:
  - description: Production Server
    url: https://api.supermemory.ai
security:
  - bearerAuth: []
tags:
  - name: Ingest
    description: Ingest documents, files, URLs, conversations, and other content
  - name: Recall (Search)
    description: >-
      Semantic recall across your content — supports memories, hybrid, and
      documents modes
  - name: Profiles
    description: >-
      Entity profiles for users, participants, or any entity — includes profile
      search
  - name: Content Management
    description: List, get, update, and delete content and memories
  - name: Container Tags
    description: List and manage container tags (spaces) — settings, merge, and delete
  - name: Connections
    description: External service integrations
  - name: Settings
    description: Organization settings
  - name: Documents
    description: List, get, and search documents
paths:
  /v3/container-tags/merge/{mergeId}:
    get:
      tags:
        - Container Tags
      summary: Get container tag merge status
      description: Get queued container tag merge status
      operationId: getV3ContainerTagsMergeByMergeId
      parameters:
        - schema:
            type: string
          in: path
          name: mergeId
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  status:
                    type: string
                    enum:
                      - queued
                      - waiting_for_ingest
                      - copying_vectors
                      - db_committing
                      - cleanup_pending
                      - completed
                      - failed
                  sourceTags:
                    type: array
                    items:
                      type: string
                  targetTag:
                    type: string
                  progress:
                    anyOf:
                      - type: object
                        properties:
                          phase:
                            type: string
                            enum:
                              - queued
                              - waiting_for_ingest
                              - copying_vectors
                              - db_committing
                              - cleanup_pending
                              - completed
                              - failed
                          currentSourceTag:
                            type: string
                          currentKind:
                            type: string
                            enum:
                              - chunk
                              - memory
                          copiedRows:
                            type: number
                          completedSourceTags:
                            type: array
                            items:
                              type: string
                          inFlightItems:
                            type: number
                          attempt:
                            type: number
                      - type: 'null'
                  lastError:
                    anyOf:
                      - type: string
                      - type: 'null'
                required:
                  - id
                  - status
                  - sourceTags
                  - targetTag
                  - progress
                  - lastError
          description: Merge job status
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Merge job not found
      x-codeSamples:
        - lang: bash
          label: cURL
          source: >-
            curl "https://api.supermemory.ai/v3/container-tags/merge/merge_abc"
            \
              -H "Authorization: Bearer $SUPERMEMORY_API_KEY"
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
          example: Invalid request parameters
        details:
          type: string
          description: Additional error details
          example: Query must be at least 1 character long
      required:
        - error
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````