1. Balance
Sherlockeye API
  • Getting started
  • Searches
    • Create a new asynchronous OSINT search
      POST
    • Get search details and results
      GET
    • Run a synchronous OSINT search with timeout
      POST
    • Delete a search
      DELETE
  • Blockchain
    • Register a search on the blockchain
      POST
  • Webhooks
    • Create a new webhook
      POST
    • List all webhooks for the authenticated user
      GET
    • Get webhook details
      GET
    • Update a webhook
      PUT
    • Delete a webhook
      DELETE
    • Get webhook delivery history
      GET
    • Retry a webhook delivery
      POST
  • Balance
    • Get token balance for the authenticated user
      GET
  • Schemas
    • SearchResult
    • ErrorResponse
    • BalanceResponse
    • CreateSearchRequest
    • CreateSyncSearchRequest
    • CreateSyncSearchResponse
    • CreateSearchResponse
    • GetSearchResponse
    • DeleteSearchResponse
    • BlockchainResponse
    • BlockchainData
    • CreateWebhookRequest
    • UpdateWebhookRequest
    • WebhookResponse
    • WebhookListResponse
    • Webhook
    • DeleteWebhookResponse
    • WebhookDeliveriesResponse
    • WebhookRetryResponse
    • WebhookDelivery
    • WebhookDeliveryAttempt
  1. Balance

Get token balance for the authenticated user

GET
/v1/balance
Returns the current token balance associated with the authenticated user.
This endpoint is read‑only and does not consume tokens.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200
application/json
Balance successfully retrieved.
Body

đźź 401
đźź 403
đźź 429
đź”´500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sherlockeye.io/v1/balance' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Typical balance response
{
    "success": true,
    "data": {
        "tokens": 1200
    }
}
Modified at 2026-03-04 16:42:25
Previous
Retry a webhook delivery
Next
SearchResult
Built with