# Get ticker

Get the last traded price for a given symbol.

Endpoint: GET /v2/ticker
Version: 1.0.1
Security: SSO_TOKEN

## Query parameters:

  - `symbol` (string, required)
    Base and term currency separated by a slash `/`.

## Response 200 fields (application/json):

  - `symbol` (string)
    Base and term currency separated by a slash `/` (for example `EUR/USD`).

  - `rate` (number)
    Rate, either bid or offer based on value of `bid` attribute.

  - `isBid` (string)
    Whether or not the rate is bid or offer:
- `true`=bid
- `false`=offer

  - `timestamp` (integer)
    Rate timestamp in Unix time, UTC timezone.

  - `bid` (boolean)
    Whether or not the rate is bid or offer:
- `true`=bid
- `false`=offer

