# man > Finance::Quote::SEB

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

## Quick Reference

- `$q->fetch("seb_funds", "fund name")` — obtain fund prices from www.seb.se

## Name

Finance::Quote::SEB - Obtain fund prices from www.seb.se

## Synopsis

perl
use Finance::Quote;
$q = Finance::Quote->new;
%fundinfo = $q->fetch("seb_funds", "fund name");
## Options

No specific options are documented. The module provides a single method `fetch` that takes the source name `seb_funds` and the fund name as argument.

## Fund Names

Fund names must be given exactly as listed, including spaces and case. There is no unique identifier. Consult <https://seb.se/bors-och-finans/fonder/fondkurslista> for all available funds. Example: `"SEB Aktiesparfond"`.

## Returned Labels

Information available from SEB may include the following labels: `date`, `method`, `source`, `name`, `currency`, `price`. Prices are updated at the end of each bank day.

## Examples

perl
use Finance::Quote;
$q = Finance::Quote->new;
%fundinfo = $q->fetch("seb_funds", "SEB Aktiesparfond");
## See Also

- [SEB website](https://www.seb.se/)
- [Finance::Quote](https://metacpan.org/pod/Finance::Quote)

## Exit Codes

Not documented.