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

# List enabled currencies

> Returns the currencies enabled for the authenticated tenant from its user_settings configuration, including the configured default currency when available.



## OpenAPI

````yaml /api-reference/openapi.json get /currency/lists
openapi: 3.1.0
info:
  title: BillingServ API V2
  description: >-
    Resources and tools for developers to integrate with the BillingServ v2 API,
    including customer management, domain availability, hosted checkout,
    billing, and service operations. Authenticated API responses include
    X-Request-ID and X-API-Version: 2 headers, and rate-limited endpoints expose
    standard rate-limit headers and return 429 when a limit is exceeded. Clients
    may provide X-Request-ID for request correlation. The supported idempotent
    write operations accept Idempotency-Key. Internal service-to-service routes
    are intentionally excluded from this public contract. v1 is deprecated; use
    the v2 base URL and bearer-token authentication unless an endpoint states
    otherwise.
  version: '2.0'
servers:
  - url: https://demo.onlinebillingform.com/api/v2
    description: BillingServ demo API
security:
  - bearerAuth: []
tags:
  - name: Customer
  - name: Package
  - name: Group
  - name: Country
  - name: County
  - name: Currency
  - name: VPN
  - name: Invoice
  - name: Order
  - name: Module
  - name: Report
  - name: Marketing
  - name: Setting
  - name: Checkout
  - name: Domain
    description: Search enabled domain extensions and check domain availability.
  - name: Usage
  - name: Support
  - name: Licensing
  - name: Webhooks
    description: Outbound events sent by BillingServ to a configured customer endpoint.
paths:
  /currency/lists:
    get:
      tags:
        - Currency
      summary: List enabled currencies
      description: >-
        Returns the currencies enabled for the authenticated tenant from its
        user_settings configuration, including the configured default currency
        when available.
      operationId: GET_currency_lists
      parameters: []
      responses:
        '200':
          description: Enabled currencies for the authenticated tenant
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EnabledCurrenciesResponse'
              example:
                success: true
                currencies:
                  - id: 3
                    name: Euros
                    short_name: EUR
                    symbol: '&euro;'
                    conversion: 1.1877
                    position: 0
                    created_at: null
                    updated_at: null
                    deleted_at: null
                  - id: 4
                    name: British Pounds
                    short_name: GBP
                    symbol: '&pound;'
                    conversion: 1
                    position: 0
                    created_at: null
                    updated_at: null
                    deleted_at: null
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                success: false
                errors: Invalid API Key
        '403':
          description: Authenticated key does not have permission for this endpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                success: false
                errors: Insufficient permissions for this endpoint.
        '429':
          description: Rate limit exceeded
      security:
        - bearerAuth: []
components:
  schemas:
    EnabledCurrenciesResponse:
      type: object
      properties:
        success:
          type: boolean
          const: true
        currencies:
          type: array
          items:
            $ref: '#/components/schemas/Currency'
      required:
        - success
        - currencies
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          const: false
        errors:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
            - type: object
              additionalProperties: true
        code:
          type: string
          description: Machine-readable error category when provided.
        request_id:
          type: string
          description: Request identifier returned in the X-Request-ID response header.
      additionalProperties: true
    Currency:
      type: object
      properties:
        id:
          type: integer
          format: int32
        name:
          type: string
        short_name:
          type: string
          description: ISO-style currency code used by the API and payment providers.
        symbol:
          type: string
          description: >-
            Currency symbol as stored by BillingServ; it may contain an HTML
            entity.
        conversion:
          type: number
          format: double
        position:
          type: integer
          format: int32
        created_at:
          $ref: '#/components/schemas/NullableDateTime'
        updated_at:
          $ref: '#/components/schemas/NullableDateTime'
        deleted_at:
          $ref: '#/components/schemas/NullableDateTime'
      required:
        - id
        - name
        - short_name
        - symbol
        - conversion
        - position
      additionalProperties: true
    NullableDateTime:
      type:
        - string
        - 'null'
      format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'Use `Authorization: Bearer <live_api_key>`.'

````