UtilitiesWallet Balance

Check API Wallet Balance

Check your current Deepvue wallet balance and remaining API credits. Monitor spending to avoid service interruptions.

curl -X GET "https://production.deepvue.tech/v1/internal/wallet-balance" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "client-id: YOUR_API_KEY"
{
  "current_balance": 6448,
  "success": true
}
GET
/v1/internal/wallet-balance
GET
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
API Key (header: client-id)
client-idstring
Required

The CLIENT_ID provided to you. This header parameter is required for authentication purposes.

The CLIENT_ID provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

header
client-idstring
Required

API Key for authentication. The CLIENT_ID provided to you. This header parameter is required for authentication purposes.

Responses

current_balancenumber
successboolean

Overview

This API enables you to check your current Deepvue account wallet balance. Upon successful authentication, the endpoint returns your current balance and a success confirmation.

This endpoint requires x-api-key and client-id headers for authentication. The response includes a numerical balance value and a boolean success flag.

Recharging your wallet

There is no recharge endpoint. To add funds, log in to the Deepvue Dashboard and top up your wallet there. For billing questions or recharge assistance, contact support@deepvue.ai. See Wallet and billing on the support page for the full picture.

To catch a low balance before it interrupts service, poll this endpoint on a schedule and alert on your own threshold. Pair it with the Usage Report API to see which products are consuming the balance.

Was this page helpful?