# Accounts

Business banking

# View all accounts.

List accounts request example:

 




GET /v1/accounts

Content-Type: application/json
Authorization: Bearer <access_token>

Response:

 













HTTP 200 OK

{
	"data": [
		{
			"balance": 50000000,
			"currency": "EUR",
			"id": "gHcYiRdtr",
			"name": "EUR SEPA Account"
		}
  ]
  "has_more": false
}

# View account by ID.

Get account request example:

 




GET /v1/accounts/:id

Content-Type: application/json
Authorization: Bearer <access_token>

Response:

 








HTTP 200 OK

{
	"balance": 50000000,
	"currency": "EUR",
	"id": "gHcYiRdtr",
	"name": "EUR SEPA Account"
}

# View bank account details.

Get account details request example:

 




GET /v1/accounts/:id/bank_details

Content-Type: application/json
Authorization: Bearer <access_token>

Response:

 
















HTTP 200 OK

{
	"beneficiary": "Intergiro Intl AB (publ)",
	"beneficiary_address": {
		"city": "Stockholm",
		"country_code": "SE",
		"post_code": "10361",
		"street1": "Box 3093"
	},
	"payment_rail": "sepa",
	"details": {
		"bic": "FTCSSESS",
		"iban": "SE2697700000010004174473"
	}
}