Credits
Authentication: Required (JWT token or Api Key)
Retrieves the current credit balance for the user.
Authorizations
Responses
200
Successfully retrieved credit balance
application/json
401
Not authenticated
application/json
404
User not found
application/json
get
curl -X GET "https://app.morphware.com/api/credits" \
-H "Authorization: Bearer <YOUR_TOKEN>"
{
"num_credits": 1000
}
Last updated