Skip to main content
GET
/
v1
/
pm
/
maker-rebates
/
active
Get active maker rebates
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/maker-rebates/active
{
  "data": [
    {
      "epochId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "eventId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "marketId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "makerVolume": 2150.00,
      "tradeCount": 18,
      "rebateAmount": 5.40,
      "epochStart": "2026-04-15T00:00:00Z",
      "epochEnd": "2026-04-16T00:00:00Z"
    }
  ]
}

Authentication

Requires API key authentication with read scope.

Example request

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

Response

data
array
List of active rebate accumulations (one per active epoch the user has maker volume in).
{
  "data": [
    {
      "epochId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "eventId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "marketId": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "makerVolume": 2150.00,
      "tradeCount": 18,
      "rebateAmount": 5.40,
      "epochStart": "2026-04-15T00:00:00Z",
      "epochEnd": "2026-04-16T00:00:00Z"
    }
  ]
}