---
title: "Last Trade for a Crypto Pair"
method: GET
path: "/v1/last/crypto/{from}/{to}"
tags: ["crypto:last:trade"]
---

# Last Trade for a Crypto Pair

`GET /v1/last/crypto/{from}/{to}`

Get the last trade tick for a cryptocurrency pair.

## Path parameters

- `from` string, required
- `to` string, required

## Response `200`

The last tick for this currency pair.

- object
  - `last` object — Contains the requested trade data for the specified cryptocurrency pair.
    - `conditions` integer[] — A list of condition codes.
    - `exchange` 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.
    - `price` 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.
    - `size` number, double, required — The size of a trade (also known as volume).
    - `timestamp` integer, required — The Unix millisecond timestamp.
  - `request_id` string, required — A request id assigned by the server.
  - `status` string, required — The status of this request's response.
  - `symbol` string, required — The symbol pair that was evaluated from the request.

## 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)
