Skip to main content
GET
/
v1
/
pm
/
maker-rebates
Get maker rebates
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/maker-rebates
{
  "data": [
    {
      "epochId": "f4d15ea1-813a-41dd-a84c-e95648974dd6",
      "eventId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "marketId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "makerVolume": 5230.50,
      "tradeCount": 47,
      "rebateAmount": 12.75,
      "isPaid": true,
      "epochStart": "2026-04-14T00:00:00Z",
      "epochEnd": "2026-04-15T00:00:00Z",
      "status": "FINALIZED"
    }
  ],
  "pagination": {
    "page": 1,
    "size": 20,
    "totalCount": 1,
    "lastPage": 1
  }
}

Authentication

Requires API key authentication with read scope.

Query parameters

page
integer
default:"1"
Page number.
size
integer
default:"20"
Page size (max 100).

Example request

curl "https://relay.bayse.markets/v1/pm/maker-rebates?page=1&size=10" \
  -H "X-Public-Key: pk_live_abcdef123456"

Response

data
array
List of maker rebate payout records.
pagination
object
{
  "data": [
    {
      "epochId": "f4d15ea1-813a-41dd-a84c-e95648974dd6",
      "eventId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "marketId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "makerVolume": 5230.50,
      "tradeCount": 47,
      "rebateAmount": 12.75,
      "isPaid": true,
      "epochStart": "2026-04-14T00:00:00Z",
      "epochEnd": "2026-04-15T00:00:00Z",
      "status": "FINALIZED"
    }
  ],
  "pagination": {
    "page": 1,
    "size": 20,
    "totalCount": 1,
    "lastPage": 1
  }
}