curl --request GET \
--url https://api.nuvion.tech/account-details/{detailId} \
--header 'Authorization: <authorization>'{
"message": "Account detail retrieved successfully",
"status": 200,
"data": {
"account_detail": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"account_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"account_number": "1234567890",
"routing_number": "987654321",
"description": "Primary account details",
"issuer": {
"name": "Example Bank",
"code": "EXBNK",
"address": "123 Banking St, Finance City",
"meta": {}
},
"config": {
"outflow_enabled": true,
"inflow_enabled": true,
"outflow_allowed_counterparties": [],
"inflow_allowed_counterparties": []
},
"status": "active",
"terminate_after": 365,
"created": 1693584000000,
"updated": 1693584000000
},
"entity": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"name": "Acme Corporation",
"type": "business",
"verification_status": "verified"
},
"account": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "checking",
"currency": "USD",
"display_name": "Business Account",
"meta": {},
"config": {
"is_overdraftable": false,
"overdraft_limit": 0
},
"created": 1693584000000,
"updated": 1693584000000,
"balance": {
"available": 0,
"current": 0,
"overdraft_used": 0
}
},
"usage_statistics": {
"total_transactions": 127,
"successful_transactions": 124,
"failed_transactions": 3,
"last_transaction_date": 1735689600000,
"total_volume_by_currency": [
{
"currency": "USD",
"inflow_volume": 250000.75,
"outflow_volume": 180000.5
}
]
}
}
}Retrieves account detail information for the authenticated entity.
curl --request GET \
--url https://api.nuvion.tech/account-details/{detailId} \
--header 'Authorization: <authorization>'{
"message": "Account detail retrieved successfully",
"status": 200,
"data": {
"account_detail": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"account_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"account_number": "1234567890",
"routing_number": "987654321",
"description": "Primary account details",
"issuer": {
"name": "Example Bank",
"code": "EXBNK",
"address": "123 Banking St, Finance City",
"meta": {}
},
"config": {
"outflow_enabled": true,
"inflow_enabled": true,
"outflow_allowed_counterparties": [],
"inflow_allowed_counterparties": []
},
"status": "active",
"terminate_after": 365,
"created": 1693584000000,
"updated": 1693584000000
},
"entity": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"name": "Acme Corporation",
"type": "business",
"verification_status": "verified"
},
"account": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "checking",
"currency": "USD",
"display_name": "Business Account",
"meta": {},
"config": {
"is_overdraftable": false,
"overdraft_limit": 0
},
"created": 1693584000000,
"updated": 1693584000000,
"balance": {
"available": 0,
"current": 0,
"overdraft_used": 0
}
},
"usage_statistics": {
"total_transactions": 127,
"successful_transactions": 124,
"failed_transactions": 3,
"last_transaction_date": 1735689600000,
"total_volume_by_currency": [
{
"currency": "USD",
"inflow_volume": 250000.75,
"outflow_volume": 180000.5
}
]
}
}
}Authorization header: Bearer {jwt or Secretkey}
The unique identifier (ULID) of the account detail to retrieve
Successful operation
A descriptive message indicating the result of the operation
The status of the API operation (successful, error, failed, pending)
The data returned from the operation
Show child attributes
Detailed information about the account details
Show child attributes
Unique identifier for the account details
Identifier of the entity that owns the account
Identifier of the associated account
Account number for the bank account
Routing number for the bank account
Information about the bank or financial institution that issued the account
Show child attributes
Name of the issuing bank or financial institution
Code or identifier for the issuing bank
Physical address of the issuing bank
Additional metadata about the issuer
Configuration options for the account
Show child attributes
Whether outflow (payments from this account) is enabled
Whether inflow (payments to this account) is enabled
List of counterparties allowed for outflow payments
List of counterparties allowed for inflow payments
Current status of the account details
Timestamp when the account details were created (in milliseconds since epoch)
Timestamp when the account details were last updated (in milliseconds since epoch)
Description of the account details
Number of days after which the account details will be terminated
Information about the entity that owns the account
Information about the associated account
Show child attributes
Unique identifier for the account
Identifier of the entity that owns the account
The type of account
The currency code for the account
User-friendly name for the account
Timestamp when the account was created (in milliseconds since epoch)
Timestamp when the account was last updated (in milliseconds since epoch)
Current balance information for the account
Additional metadata for the account
Statistics about the usage of the account
Show child attributes
Total number of transactions performed with this account
Number of successful transactions
Number of failed transactions
Total transaction volume grouped by currency
Show child attributes
Currency code
Total volume of money flowing into the account
Total volume of money flowing out of the account
Timestamp of the last transaction (in milliseconds since epoch)