# Funding Rates

> Returns the live funding rate and next settlement for a perpetual symbol, scoped to the authenticated user's funding profile. Returns 404 if the symbol has no active funding rate or the account group has no funding profile.


Source: /trader/api/perps/get-funding-rate

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

**Funding Rates**

Returns the live funding rate and next settlement for a perpetual symbol, scoped to the authenticated user's funding profile. Returns 404 if the symbol has no active funding rate or the account group has no funding profile.


Tags: `Perps`

#### Path parameters

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


### Responses

#### `200` — Current funding rate

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

- `rate_percentage` (string) — Raw provider rate over the quote interval (e.g. "0.01000")
- `debit_rate` (string) — Paying-side rate if supplied separately by provider
- `credit_rate` (string) — Receiving-side rate if supplied separately by provider
- `projected_rate` (string) — Provider rate applied at each settlement (no rescaling)
- `quote_interval` (string) — Funding period: 1H, 4H, 8H, or 12H
- `next_payment_at` (integer) — Unix timestamp of the next settlement anchor for this profile

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

#### `404` — Symbol has no active funding rate or account group has no funding profile

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



