curl --request GET \
--url https://api.nuvion.tech/accounts/{accountId} \
--header 'Authorization: <authorization>'{
"message": "Account retrieved successfully",
"status": 200,
"data": {
"account": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"balance_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"type": "checking",
"currency": "USD",
"display_name": "Business Account",
"meta": {},
"config": {
"is_overdraftable": false,
"overdraft_limit": 0
},
"created": 1693584000000,
"updated": 1693584000000,
"balance": {
"overdraft_used": 0,
"current": 1000.5,
"available": 950.25
}
},
"entity": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"name": "Acme Corporation",
"type": "business",
"verification_status": "verified"
},
"account_details": [
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F6",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"account_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"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",
"created": 1693584000000,
"updated": 1693584000000
}
],
"pinned_status": {
"is_pinned": true,
"pinned_at": 1693584000000,
"pinned_by_count": 1
},
"counterparties_summary": {
"total_active": 3,
"total_inactive": 1,
"recent_activity": 3
},
"compliance_status": {
"risk_level": "low",
"sanctions_status": "clear",
"monitoring_level": "standard",
"last_reviewed": 1672531500000,
"flags": []
}
}
}Retrieves account information for the authenticated entity.
curl --request GET \
--url https://api.nuvion.tech/accounts/{accountId} \
--header 'Authorization: <authorization>'{
"message": "Account retrieved successfully",
"status": 200,
"data": {
"account": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"balance_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F5",
"type": "checking",
"currency": "USD",
"display_name": "Business Account",
"meta": {},
"config": {
"is_overdraftable": false,
"overdraft_limit": 0
},
"created": 1693584000000,
"updated": 1693584000000,
"balance": {
"overdraft_used": 0,
"current": 1000.5,
"available": 950.25
}
},
"entity": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"name": "Acme Corporation",
"type": "business",
"verification_status": "verified"
},
"account_details": [
{
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F6",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"account_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"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",
"created": 1693584000000,
"updated": 1693584000000
}
],
"pinned_status": {
"is_pinned": true,
"pinned_at": 1693584000000,
"pinned_by_count": 1
},
"counterparties_summary": {
"total_active": 3,
"total_inactive": 1,
"recent_activity": 3
},
"compliance_status": {
"risk_level": "low",
"sanctions_status": "clear",
"monitoring_level": "standard",
"last_reviewed": 1672531500000,
"flags": []
}
}
}Authorization header: Bearer {jwt or Secretkey}
The unique identifier (ULID) of the account 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
Show child attributes
Unique identifier for the account
Identifier of the entity that owns the account
Identifier for the balance record associated with this 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
Information about the entity that owns the account
List of account details associated with this account
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 details
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
Information about whether the account is pinned
Summary information about counterparties associated with this account
Show child attributes
Compliance-related information for the account
Show child attributes
Risk level associated with the account
Status of sanctions checks
Level of monitoring applied to the account
List of compliance flags on the account
Timestamp when the account was last reviewed for compliance (in milliseconds since epoch)