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

# List Currencies Endpoint

> Currencies endpoint allows you to retrieve a list of currencies. A GET request to this endpoint, along with the necessary authorization, returns a paginated list of currencies with details such as currency ID, name, and code.



## OpenAPI

````yaml get /catalogs/currencies/
openapi: 3.0.1
info:
  title: Trace Connect API
  version: v1
servers:
  - url: http://localhost:3000/connect/v1
security:
  - Bearer: []
paths:
  /catalogs/currencies/:
    get:
      tags:
        - catalogs
      description: View to list, create and update country data.
      operationId: catalogs_currencies_list
      parameters:
        - name: search
          in: query
          description: A search term.
          schema:
            type: string
        - name: name
          in: query
          schema:
            type: string
        - name: code
          in: query
          schema:
            type: string
        - name: all
          in: query
          schema:
            type: string
        - name: limit
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - name: offset
          in: query
          description: The initial index from which to return the results.
          schema:
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                  - count
                  - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type: string
                    format: uri
                    nullable: true
                  previous:
                    type: string
                    format: uri
                    nullable: true
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Currency'
components:
  schemas:
    Currency:
      required:
        - name
      type: object
      properties:
        id:
          type: string
        name:
          title: Currency Name
          maxLength: 1000
          minLength: 1
          type: string
        code:
          title: Currency Code
          maxLength: 100
          type: string
          nullable: true
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````