Rafobase Logo

Get merchant commission tiers

Retrieve the commission tiers configured by the merchant for this creator's program. This endpoint does not require authentication.

GET
/creators/{token}/tiers

Retrieve the commission tiers configured by the merchant for this creator's program. This endpoint does not require authentication.

Path Parameters

token*string

Creator public token

Response Body

application/json

application/json

curl -X GET "https://api-base.rafo.work/api/v1/creators/abc123def456/tiers"
{
  "data": [
    {
      "name": "Gold",
      "commissionRate": 0.15
    }
  ]
}
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Resource not found"
  }
}