# man > Finance::Quote::YahooJSON

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

## Quick Reference

- `%info = Finance::Quote->fetch("yahoo_json", "SBIIN.NS")` — fetch quote for a single stock symbol from Yahoo Finance

## Name

Finance::Quote::YahooJSON — Obtain quotes from Yahoo Finance through JSON call

## Synopsis

perl
use Finance::Quote;

$q = Finance::Quote->new;

%info = Finance::Quote->fetch("yahoo_json", "SBIIN.NS");
## Description

This module fetches stock quotes from Yahoo Finance as JSON. It is loaded by default on a `Finance::Quote` object, or can be loaded explicitly by placing "YahooJSON" in the argument list to `Finance::Quote->new()`. It provides the **yahoo_json** fetch method.

## Labels Returned

The following labels may be returned: `name`, `last`, `isodate`, `volume`, `currency`, `method`, `exchange`, `type`, `div_yield`, `eps`, `pe`, `year_range`, `open`, `high`, `close`, `low`.

## See Also

- [Finance::Quote](https://metacpan.org/pod/Finance::Quote)
- [Finance::Quote::YahooJSON on CPAN](https://metacpan.org/pod/Finance::Quote::YahooJSON)
