Skip to main content
GET
/
v1
/
pm
/
liquidity-rewards
/
active
Get active liquidity rewards
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/liquidity-rewards/active
{
  "data": [
    {
      "epochId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "eventId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "marketId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "accumulatedShares": 842.10,
      "sampleCount": 5,
      "estimatedPayout": 3.50,
      "epochStart": "2026-03-22T00:00:00Z",
      "epochEnd": "2026-03-23T00:00:00Z"
    }
  ]
}

Authentication

Requires API key authentication with read scope.

Example request

curl "https://relay.bayse.markets/v1/pm/liquidity-rewards/active" \
  -H "X-Public-Key: pk_live_abcdef123456"

Response

data
array
List of active reward accumulations (one per active epoch the user participates in).
{
  "data": [
    {
      "epochId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "eventId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "marketId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "accumulatedShares": 842.10,
      "sampleCount": 5,
      "estimatedPayout": 3.50,
      "epochStart": "2026-03-22T00:00:00Z",
      "epochEnd": "2026-03-23T00:00:00Z"
    }
  ]
}