GET
/accounts/{account_id}Retrieve an Account
Retrieves an Account by its identifier. Use this endpoint when you need the Account's details, including its ownership, funding type, and status.
account_idstringrequired
The identifier of the Account to retrieve.
200Returns the Account object, including its identifier, name, ownership, funding type, and status.
account_revenue_ratestringrequired
The account revenue rate currently being earned on the account, as a string containing a decimal number. For example, a 1% account revenue rate would be represented as "0.01". Account revenue is a type of non-interest income accrued on the account.
bankstringrequired
The bank the Account is with.
closed_atstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account was closed.
created_atstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account was created.
currencystringrequired
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Account currency.
entity_idstringrequired
The identifier for the Entity the Account belongs to.
fundingstringrequired
Whether the Account is funded by a loan or by deposits.
idstringrequired
The Account identifier.
idempotency_keystringrequired
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
informational_entity_idstringrequired
The identifier of an Entity that, while not owning the Account, is associated with its activity.
interest_ratestringrequired
The interest rate currently being earned on the account, as a string containing a decimal number. For example, a 1% interest rate would be represented as "0.01".
loanobjectrequired
The Account's loan-related information, if the Account is a loan account.
namestringrequired
The name you choose for the Account.
program_idstringrequired
The identifier of the Program determining the compliance and commercial terms of this Account.
statusstringrequired
The status of the Account.
typestringrequired
A constant representing the object's type. For this resource it will always be `account`.
4XXReturned when the request encounters a client-side error.
5XXReturned when the request encounters a server-side error.
Error handling
The account_id path parameter must identify an existing Account.