Check Balance

Check the remaining credits in your account.

Check the remaining credits in your account.

get
Authorizations
Responses
201Success
application/json
get
GET /api/v2/check_balance HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
201Success
{
  "balance": 1
}

Call this API endpoint to Check the remaining credits in your account.

Pricing

We do not charge any addtional credits for calling this API to check your balance.

Request

Authentication

This API uses bearer key for authentication. You need to include a valid token in the Authorization header for all requests. Refer to the Quickstart section for how to generate an API key for your account.

Authorization: Bearer RODIN_API_KEY

Response

The JSON response has the following fields.

Property
Type
Description

balance

int

Balance of account.

Examples

export RODIN_API_KEY="your api key"
curl --location 'https://api.hyper3d.com/api/v2/check_balance' \
--header 'Authorization: Bearer JWT'
unset RODIN_API_KEY

Last updated

Was this helpful?