Get User Remaining Credits
This endpoint retrieves the remaining credits of a user.Response Body Description#
code
(number): The status code of the response.
coins
(number): The remaining coins for the user.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://video.a2e.ai/api/v1/user/remainingCoins'
Responses
application/json {
"code": 0,
"data": {
"coins": 1293,
"diamonds": 3
}
}
Modified at 2025-04-08 22:37:02