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

# Get all entries for a dictionary



## OpenAPI

````yaml /openapi.json get /api/dictionaries/{dictionaryId}/entries
openapi: 3.0.0
info:
  title: GoMobile Backend API
  description: >-
    API documentation for GoMobile telephony platform - automated calling
    campaigns, interactive voice flows, and call management
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:3000
    description: Local Development
security: []
tags:
  - name: Organizations
    description: Multi-tenant organization management
  - name: Teams
    description: Team structure and hierarchy
  - name: Contacts
    description: Customer contact management (CRM)
  - name: Entities
    description: Business entities management
  - name: Audiences
    description: Contact segmentation and groups
  - name: Programs
    description: Call campaign configuration
  - name: Call Flows
    description: Interactive call flow builder
paths:
  /api/dictionaries/{dictionaryId}/entries:
    get:
      tags:
        - Dictionaries
      summary: Get all entries for a dictionary
      operationId: DictionaryController_getEntries
      parameters:
        - name: dictionaryId
          required: true
          in: path
          description: Dictionary UUID
          schema:
            type: string
        - name: page
          required: false
          in: query
          description: Page number (1-based)
          schema:
            minimum: 1
            default: 1
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Number of items per page
          schema:
            minimum: 1
            maximum: 100
            default: 20
            example: 20
            type: number
        - name: search
          required: false
          in: query
          description: Search term to filter results
          schema:
            maxLength: 100
            example: john
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaginatedDictionaryEntryResponseDtoResponse
        '404':
          description: Dictionary not found
components:
  schemas:
    PaginatedDictionaryEntryResponseDtoResponse:
      type: object
      properties:
        data:
          description: Array of items
          type: array
          items:
            $ref: '#/components/schemas/DictionaryEntryResponseDto'
        meta:
          description: Pagination metadata
          allOf:
            - $ref: '#/components/schemas/PaginationMeta'
      required:
        - data
        - meta
    DictionaryEntryResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Entry UUID
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        deletedAt:
          type: string
          nullable: true
        createdBy:
          type: string
          nullable: true
        updatedBy:
          type: string
          nullable: true
        deletedBy:
          type: string
          nullable: true
        dictionaryId:
          type: string
          description: Parent dictionary UUID
        key:
          type: string
          description: Lookup key (e.g., "greeting", "0")
        audioId:
          type: string
          description: Audio file UUID for this entry
      required:
        - id
        - createdAt
        - updatedAt
        - dictionaryId
        - key
        - audioId
    PaginationMeta:
      type: object
      properties:
        page:
          type: number
          description: Current page number
          example: 1
        limit:
          type: number
          description: Number of items per page
          example: 20
        total:
          type: number
          description: Total number of items
          example: 150
        totalPages:
          type: number
          description: Total number of pages
          example: 8
        hasNextPage:
          type: boolean
          description: Whether there is a next page
          example: true
        hasPreviousPage:
          type: boolean
          description: Whether there is a previous page
          example: false
      required:
        - page
        - limit
        - total
        - totalPages
        - hasNextPage
        - hasPreviousPage

````