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

# Supported Currencies

> List all supported currencies with their names, symbols, and countries



## OpenAPI

````yaml /openapi.json get /symbols
openapi: 3.1.0
info:
  title: RBA Exchange Rates API
  description: >-
    Official Reserve Bank of Australia (RBA) exchange rate data through a modern
    REST API. Transforms publicly available RBA data into clean JSON endpoints
    for Australian businesses and developers who need reliable AUD exchange
    rates.
  version: 1.0.0
  license:
    name: MIT
  contact:
    url: https://www.exchangeratesapi.com.au
servers:
  - url: https://api.exchangeratesapi.com.au
    description: Production API
security: []
paths:
  /symbols:
    get:
      summary: Supported Currencies
      description: List all supported currencies with their names, symbols, and countries
      operationId: getSupportedCurrencies
      responses:
        '200':
          description: List of supported currencies
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SymbolsResponse'
              example:
                success: true
                symbols:
                  USD:
                    name: US Dollar
                    symbol: $
                    country: United States
                  EUR:
                    name: Euro
                    symbol: €
                    country: European Union
                count: 21
                base: AUD
                note: >-
                  All rates are quoted as AUD per unit of foreign currency from
                  the Reserve Bank of Australia
components:
  schemas:
    SymbolsResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        symbols:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/CurrencyInfo'
        count:
          type: integer
          description: Number of supported currencies
        base:
          type: string
          example: AUD
        note:
          type: string
      required:
        - success
        - symbols
        - count
        - base
        - note
    CurrencyInfo:
      type: object
      properties:
        name:
          type: string
          description: Full name of the currency
        symbol:
          type: string
          description: Currency symbol
        country:
          type: string
          description: Country or region
      required:
        - name
        - symbol
        - country

````