For the complete documentation index, see llms.txt. This page is also available as Markdown.

Balance


Get wallet balance

get

Get wallet balance for current user

Authorizations
AuthorizationstringRequired

Your ByteNite access token

Responses
200

A successful response.

accountIdstringOptional

A unique identifier associated with your ByteNite wallet account, separate from your userId.

Example: 18bea1a1-85c9-4652-a32f-4bad10c45d2b
totalBalancenumber · doubleOptional

This represents the total amount of credits or funds available in your ByteNite wallet. This is the overall balance, including any funds that might be reserved or locked.

Example: 10019.4719491
availableBalancenumber · doubleOptional

This is the portion of your total balance that is readily available for use. It excludes any funds that might be held for pending transactions or subscriptions.

Example: 10019.4719491
amountDuenumber · doubleOptional

This represents the dollar value equivalent to the pending ByteChips due at the end of the billing period.

Example: 50
get/balance
GET /v1/wallet/balance HTTP/1.1
Host: api.bytenite.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "accountId": "18bea1a1-85c9-4652-a32f-4bad10c45d2b",
  "totalBalance": 10019.4719491,
  "availableBalance": 10019.4719491,
  "amountDue": 50
}

Last updated

Was this helpful?