# Funding Rates History

> Returns raw historical funding rates for a perpetual symbol. If `to` is omitted, defaults to the current UTC time.


Source: /trader/api/perps/get-funding-rate-history-by-symbol

## `GET /accounts/{account_id}/funding-rates/{symbol_id}/history`

**Funding Rates History**

Returns raw historical funding rates for a perpetual symbol. If `to` is omitted, defaults to the current UTC time.


Tags: `Perps`

#### Path parameters

- `account_id` (string) (required) — Account ID
- `symbol_id` (string) (required) — Internal symbol ID

#### Query parameters

- `to` (integer) — End timestamp (Unix seconds, UTC). Defaults to now.
- `count` (integer) — Maximum number of records to return


### Responses

#### `200` — Funding rate history

**Content-Type:** `application/json`

- `items` (array)
  - items:
    - `t` (integer) — Rate timestamp (Unix seconds)
    - `raw` (number) — Raw funding rate
    - `price` (number) — Price at the time of the rate
    - `settlement_period_end` (string) — Settlement period end timestamp
    - `fetched_at` (string) — When the rate was fetched from the provider
    - `applied_at` (string) — When the rate was applied to client positions

#### `401` — Unauthorized

**Content-Type:** `application/json`

- `error` (object) (required)
  - `type` (string) (required) — Error type code
  - `message` (string) (required) — Human-readable error message
  - `field` (string) — Field name if error is field-specific

#### `500` — Internal server error

**Content-Type:** `application/json`



