> ## 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.

# API Root

> Returns basic API information and documentation link



## OpenAPI

````yaml /openapi.json get /
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:
  /:
    get:
      summary: API Root
      description: Returns basic API information and documentation link
      operationId: getApiRoot
      responses:
        '200':
          description: API information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RootResponse'
              example:
                success: true
                message: RBA Exchange Rates API
                documentation: https://docs.exchangeratesapi.com.au
                version: 1.0.0
components:
  schemas:
    RootResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
        documentation:
          type: string
          format: uri
        version:
          type: string
      required:
        - success
        - message
        - documentation
        - version

````