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

# Get v1reactionsemojis

> Get all available emojis for reactions. This endpoint is only available for standard and enterprise tier organizations.



## OpenAPI

````yaml get /v1/reactions/emojis
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/reactions/emojis:
    get:
      tags:
        - Reactions
      description: >-
        Get all available emojis for reactions. This endpoint is only available
        for standard and enterprise tier organizations.
      parameters: []
      responses:
        '200':
          description: Operation successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmojiResponseDto'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                statusCode: 401
                message: Unauthorized
                error: Unauthorized
        '403':
          description: Forbidden - Organization tier requirement not met
          content:
            application/json:
              example:
                statusCode: 403
                message: >-
                  This feature is only available for standard and enterprise
                  tier organizations
                error: Forbidden
        '404':
          description: Resource not found!
        '429':
          description: Too Many Requests
          content:
            application/json:
              example:
                statusCode: 429
                message: Too Many Requests
                error: Too Many Requests
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                statusCode: 500
                message: Failed to fetch emojis
                error: Internal Server Error
        '503':
          description: Service Unavailable
          content:
            application/json:
              example:
                statusCode: 503
                message: Service Unavailable
                error: Service Unavailable
components:
  schemas:
    EmojiResponseDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the emoji
        name:
          type: string
          description: The name of the emoji
        unicode:
          type: string
          description: The unicode of the emoji
        url:
          type: string
          description: The url of the emoji
        aliases:
          type: string
          description: The aliases of the emoji
        keywords:
          description: The keywords of the emoji
          type: array
          items:
            type: string
        createdAt:
          type: string
          description: The creation date of the comment
        updatedAt:
          type: string
          description: The update date of the comment
      required:
        - id
        - name
        - unicode
        - url
        - aliases
        - keywords
        - createdAt
        - updatedAt
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````