Skip to main content
GET
/
business-details
Get Account Details
curl --request GET \
  --url https://api.usepooler.com/business-details \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "stan": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "business_name": "<string>",
    "business_address": "<string>",
    "business_city": "<string>",
    "business_state": "<string>",
    "business_country": "<string>",
    "business_zip": "<string>",
    "business_phone": "<string>",
    "business_email": "[email protected]",
    "status": "<string>",
    "is_developer_access_enabled": true,
    "is_live_mode_enabled": true,
    "is_test_mode_enabled": true,
    "can_go_live": true,
    "current_mode": "<string>",
    "account_balance": "<string>",
    "account_balance_in_float": 123
  }
}
Retrieve detailed information about your business account including balance, status, payment configuration, and account settings.

Overview

This endpoint returns comprehensive information about your Pooler business account. Use this endpoint to:
  • Check your account balance and status
  • Verify your account mode (test or live)
  • Review payment configuration settings
  • Confirm developer access permissions
  • View business profile information
This endpoint requires authentication with your API key. The response includes your current account balance, status, and all configuration details.

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header as: Bearer {your_api_key}

Response

200 - application/json

Business account details retrieved successfully

success
boolean
message
string
stan
string<uuid>
data
object