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

# Get Memory Tags

> Retrieve a list of all memory tags available to the specified user. Requires the user's ID.

Retrieve a list of all memory tags available to the specified user. Requires the user's ID.

### Authorization

Requires `Bearer` token authentication using your Developer JWT.


## OpenAPI

````yaml GET /tags
openapi: 3.0.3
info:
  title: Memoram API v1
  description: >-
    API for interacting with the Memoram platform, managing access, memories,
    and tags.
  version: 1.0.0
  contact:
    name: Memoram Support
    url: https://memoram.app
    email: support@memoram.app
servers:
  - url: https://api.memoram.app/api/v1
    description: Production Server
security: []
tags:
  - name: Access Management
    description: >-
      Endpoints for obtaining authentication tokens and managing access requests
      to user memories.
  - name: Memory Management
    description: >-
      Endpoints for creating, retrieving, updating, and deleting user memory
      blobs.
  - name: Memory Tag Management
    description: Endpoints for retrieving memory tags.
paths:
  /tags:
    get:
      tags:
        - Memory Tag Management
      summary: Get Memory Tags
      description: >-
        Retrieve a list of all memory tags available to the specified user.
        Requires the user's ID.
      parameters:
        - name: user_id
          in: query
          required: true
          description: The unique ID of the user whose tags are being requested.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of memory tags.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagListResponse'
        '400':
          description: Bad Request - Missing or invalid user_id.
        '401':
          description: Unauthorized - Invalid or expired JWT.
        '403':
          description: Forbidden - Developer lacks access to this user's tags.
      security:
        - bearerAuth: []
components:
  schemas:
    TagListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
    Tag:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        color:
          type: string
          format: hexcolor
          example: '#3B82F6'
        description:
          type: string
        is_enabled:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained via `/auth/token` endpoint.

````