---
title: "Get daily reward history for a stablecoin"
method: GET
path: "/rewards/{currency}/history"
tags: ["Rewards"]
---

# Get daily reward history for a stablecoin

`GET /rewards/{currency}/history`

Returns paginated daily reward records with per-provider breakdowns, AUM, fees, and distribution status. Data is calculated with a t-2 business day lag; the most recent available record corresponds to two business days prior to the current date.

## Path parameters

- `currency` string, required

## Query parameters

- `limit` integer
- `cursor` string

## Response `200`

Daily reward history

- DeveloperRewardHistory
  - `currency` string — The stablecoin symbol
  - `developer_id` string — The developer ID
  - `reserves_currency` string — The denomination currency for all monetary amounts
  - `data` object[]
    - `date` string — The reward calculation date (YYYY-MM-DD)
    - `distributed` boolean — Whether rewards for this date have been distributed
    - `total` object
      - `aum` string — Developer AUM across all providers
      - `developer_rewards` string — Gross rewards (net of premint yield)
      - `net_rewards` string — Net rewards after fees
      - `bridge_fee_bps` string — Effective fee rate for that day
      - `bridge_fee` string — Fee amount for that day
      - `annualized_yield_bps` string — Blended annualized yield across providers
    - `providers` object[]
      - `provider` string — Provider identifier
      - `aum` string — Developer AUM held at this provider
      - `developer_rewards` string — Gross rewards from this provider
      - `annualized_yield_bps` string — Annualized yield rate for this provider
  - `pagination` object
    - `has_more` boolean — Whether more pages are available
    - `next_cursor` string, nullable — Cursor for the next page

## Other responses

- `400` — Request containing missing or invalid parameters.
- `401` — Missing or invalid API key
- `500` — Unexpected error. User may try and send the request again.

---

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