# perldoc > Finance::Quote::AEX

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

## Quick Reference

- `$q = Finance::Quote->new; %info = $q->fetch("aex", "AMG");` — fetch quote from AEX only
- `$q = Finance::Quote->new; %info = $q->fetch("dutch", "AMG");` — fetch with failover to other Dutch sources

## Name

Obtain quotes from Amsterdam Euronext eXchange (AEX).

## 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 stock and bond information from [live.euronext.com](https://live.euronext.com). 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:** `currency`, `date`, `high`, `isin`, `isodate`, `last`, `low`, `name`, `open`, `success`, `symbol`, `volume`.

Use of live.euronext.com is governed by the terms & conditions of that site.

`Finance::Quote` is released under the GNU General Public License, version 2, which carries a "No Warranty" clause.

## Examples

perl
use Finance::Quote;

$q = Finance::Quote->new;

%info = $q->fetch("aex", "AMG");   # Only query AEX
%info = $q->fetch("dutch", "AMG"); # Failover to other sources OK
## See Also

- [Finance::Quote](https://www.chedong.com/phpMan.php/perldoc/Finance%3A%3AQuote/markdown) — base module