> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usepooler.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account Details

> Retrieve detailed information about your business account including balance, status, and payment configuration.

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

<Info>
  This endpoint requires authentication with your API key. The response includes your current account balance, status, and all configuration details.
</Info>


## OpenAPI

````yaml GET /business-details
openapi: 3.0.0
info:
  title: Pooler Developer API
  description: >-
    Comprehensive API documentation for Pooler payment and financial services
    platform
  version: 1.0.0
servers:
  - url: https://api.usepooler.com
    description: Production server
  - url: https://sandbox.usepooler.com
    description: Sandbox server
security:
  - bearerAuth: []
paths:
  /business-details:
    get:
      tags:
        - Business
      summary: Get Account Details
      description: >-
        Retrieve detailed information about your business account including
        balance, status, and payment configuration.
      operationId: getBusinessDetails
      responses:
        '200':
          description: Business account details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BusinessDetailsResponse'
components:
  schemas:
    BusinessDetailsResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        stan:
          type: string
          format: uuid
        data:
          $ref: '#/components/schemas/BusinessDetails'
    BusinessDetails:
      type: object
      properties:
        id:
          type: string
          format: uuid
        business_name:
          type: string
        business_address:
          type: string
        business_city:
          type: string
        business_state:
          type: string
        business_country:
          type: string
        business_zip:
          type: string
        business_phone:
          type: string
        business_email:
          type: string
          format: email
        status:
          type: string
        is_developer_access_enabled:
          type: boolean
        is_live_mode_enabled:
          type: boolean
        is_test_mode_enabled:
          type: boolean
        can_go_live:
          type: boolean
        current_mode:
          type: string
        account_balance:
          type: string
        account_balance_in_float:
          type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token authentication. Include your API key in the Authorization
        header as: Bearer {your_api_key}

````