Create user payout request

POST /v2/client/redeem-rewards

Create User Payout Request allows to create a payout request for the user.

application/json

Body Required

  • token string Required

    Secure token for price verification during redemption

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • data object
      Hide data attribute Show data attribute object
      • balance string Required
  • 429

    Too many requests in a short period of time

POST /v2/client/redeem-rewards
curl \
 --request POST 'https://api.bitlabs.ai/v2/client/redeem-rewards' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."}'
Request examples
{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Response examples (200)
{
  "data": {
    "balance": "string"
  }
}