GET
/
api
/
platform
/
accounts
/
get-account
/
{account_id}
Retrieve bank account details
curl --request GET \
  --url https://api.sandbox.paywint.com/api/platform/accounts/get-account/{account_id} \
  --header 'X-Platform-ID: <x-platform-id>' \
  --header 'X-Signature: <x-signature>'
{
  "success": true,
  "message": "Operation completed.",
  "data": {
    "id": "5bf6f0d6-0677-4607-9541-68ef7faecbdb",
    "bank_nick_name": "Personal Checking",
    "account_number": "6789",
    "account_balance": 1000,
    "routing_number": "011000015",
    "account_type": "CHECKING",
    "bank_name": "First National Bank",
    "account_holder_name": "John Doe",
    "verification_status": "not_applied",
    "verification_type": "MD",
    "is_verified": false,
    "is_default": true,
    "created_at": "2025-06-16T12:03:48.726826Z"
  },
  "queryGeneratedTime": 1718006400
}

Headers

X-Platform-ID
string<uuid>
required

Unique platform identifier (UUID). You receive this during onboarding. Must be sent with every API request.

X-Signature
string
required

HMAC-SHA256 request signature for authentication. Use your platform secret key to compute it as: METHOD + PATH + QUERY + BODY_HASH.

Path Parameters

account_id
string<uuid>
required

Unique identifier (UUID) of the bank account to retrieve.

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

message
string
default:Success

A short, human-readable message describing the result of the request.

Example:

"Operation completed."

data
object | null

The main response payload, if applicable

queryGeneratedTime
number | null
default:1756883312.350897

The Unix timestamp (in seconds) indicating when the response was generated.

Example:

1718006400