# man > Finance::Quote::AEX

---
type: CommandReference
command: Finance::Quote::AEX
mode: perldoc
section: 3pm
source: perldoc
---

## Quick Reference

- `$q->fetch("aex", "SYMBOL")` — fetch quotes from AEX source
- `$q->fetch("dutch", "SYMBOL")` — fetch with failover to other Dutch sources
- `Finance::Quote->new` — create new quote object
- `%info` — hash with keys: `currency`, `date`, `high`, `isin`, `isodate`, `last`, `low`, `name`, `open`, `success`, `symbol`, `volume`

## Name

Obtain quotes from Amsterdam Euronext eXchange.

## Synopsis

perl
use Finance::Quote;

$q = Finance::Quote->new;

%info = Finance::Quote->fetch("aex", "AMG");   # Only query AEX
%info = Finance::Quote->fetch("dutch", "AMG"); # Failover to other sources OK
## Description

This module fetches information from <https://live.euronext.com>. Stocks and bonds are supported. It is loaded by default on a `Finance::Quote` object. It can also be loaded explicitly by placing 'aex' in the argument list to `Finance::Quote->new()`.

## Labels Returned

The following labels may be returned: `currency`, `date`, `high`, `isin`, `isodate`, `last`, `low`, `name`, `open`, `success`, `symbol`, `volume`.

### Terms & Conditions

Use of live.euronext.com is governed by any terms & conditions of that site. `Finance::Quote` is released under the GNU General Public License, version 2, which explicitly carries a "No Warranty" clause.