---
title: "All Tickers"
method: GET
path: "/v2/snapshot/locale/global/markets/crypto/tickers"
tags: ["crypto:snapshot"]
---

# All Tickers

`GET /v2/snapshot/locale/global/markets/crypto/tickers`

Get the current minute, day, and previous day’s aggregate, as well as the last trade and quote for all traded cryptocurrency symbols.
<br />
<br />
Note: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST.

## Query parameters

- `tickers` string[]

## Response `200`

Get current state for all tickers

- object
  - `status` string, required — The status of this request's response.
  - `tickers` object[] — An array of snapshot data for the specified tickers.
    - `day` object, required — The most recent daily bar for this ticker.
      - `c` number, double, required — The close price for the symbol in the given time period.
      - `h` number, double, required — The highest price for the symbol in the given time period.
      - `l` number, double, required — The lowest price for the symbol in the given time period.
      - `o` number, double, required — The open price for the symbol in the given time period.
      - `v` number, double, required — The trading volume of the symbol in the given time period.
      - `vw` number, double, required — The volume weighted average price.
    - `fmv` number, double — Fair market value is only available on Business plans. It is our proprietary algorithm to generate a real-time, accurate, fair market value of a tradable security. For more information, <a rel="nofollow" target="_blank" href="https://massive.com/contact">contact us</a>.
    - `lastTrade` object, required — The most recent trade for this ticker.
      - `c` integer[], required — The trade conditions.
      - `i` string, required — The Trade ID which uniquely identifies a trade. These are unique per combination of ticker, exchange, and TRF. For example: A trade for AAPL executed on NYSE and a trade for AAPL executed on NASDAQ could potentially have the same Trade ID.
      - `p` number, double, required — The price of the trade. This is the actual dollar value per whole share of this trade. A trade of 100 shares with a price of $2.00 would be worth a total dollar value of $200.00.
      - `s` number, required — The size (volume) of the trade.
      - `t` integer, required — The millisecond accuracy timestamp. This is the timestamp of when the trade was generated at the exchange.
      - `x` integer, required — The exchange that this crypto trade happened on. See <a href="https://massive.com/docs/rest/crypto/market-operations/exchanges">Exchanges</a> for a mapping of exchanges to IDs.
    - `min` object, required — The most recent minute bar for this ticker.
      - `c` number, double, required — The close price for the symbol in the given time period.
      - `h` number, double, required — The highest price for the symbol in the given time period.
      - `l` number, double, required — The lowest price for the symbol in the given time period.
      - `n` integer, required — The number of transactions in the aggregate window.
      - `o` number, double, required — The open price for the symbol in the given time period.
      - `t` integer, required — The Unix millisecond timestamp for the start of the aggregate window.
      - `v` number, double, required — The trading volume of the symbol in the given time period.
      - `vw` number, double, required — The volume weighted average price.
    - `prevDay` object, required — The previous day's bar for this ticker.
      - `c` number, double, required — The close price for the symbol in the given time period.
      - `h` number, double, required — The highest price for the symbol in the given time period.
      - `l` number, double, required — The lowest price for the symbol in the given time period.
      - `o` number, double, required — The open price for the symbol in the given time period.
      - `v` number, double, required — The trading volume of the symbol in the given time period.
      - `vw` number, double, required — The volume weighted average price.
    - `ticker` string, required — The exchange symbol that this item is traded under.
    - `todaysChange` number, double, required — The value of the change from the previous day.
    - `todaysChangePerc` number, double, required — The percentage change since the previous day.
    - `updated` integer, required — The last updated timestamp.

## Other responses

- `default` — Unexpected error

---

[API](https://skmtc.net/massive/apis/polygon-api.md) · [All operations](https://skmtc.net/massive/apis/polygon-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/massive/polygon-api/revisions/ad6f143e43aa/schema)
