# The Financial Address object

### The Financial Address object

```json
{
  "id": "finaddr_61O6nHqDsFuMtECYR16O0lef0dSQgZ0EhGyZsQCXQMls",
  "object": "v2.money_management.financial_address",
  "credentials": {
    "type": "us_bank_account",
    "us_bank_account": {
      "account_number": "123456890",
      "routing_number": "110000000",
      "swift_code": "TSTEZ122",
      "bank_name": "STRIPE TEST BANK",
      "last4": "6890"
    }
  },
  "status": "active",
  "financial_account": "fa_6504m3x1JLdhVIIIT1A16O0lef0dSQgZ0EhGyZsQCXQ28m",
  "created": "2023-03-30T17:32:06.665Z",
  "currency": "usd"
}
```

## Attributes

- `id` (string)
  The ID of a FinancialAddress.

- `object` (string, value is "v2.money_management.financial_address")
  String representing the object’s type. Objects of the same type share the same value of the object field.

- `created` (timestamp)
  The creation timestamp of the FinancialAddress.

- [`credentials`](https://docs.stripe.com/api/v2/money-management/financial-addresses/object.md?query=credentials) (object, nullable)
  Object indicates the type of credentials that have been allocated and attached to the FinancialAddress. It contains all necessary banking details with which to perform money movements with the FinancialAddress. This field is only available for FinancialAddresses with an active status.

- `currency` (enum)
  The currency the FinancialAddress supports.

- `financial_account` (string)
  A ID of the FinancialAccount this FinancialAddress corresponds to.

- `livemode` (boolean)
  Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

- `settlement_currency` (enum, nullable)
  The currency the FinancialAddress settles into the FinancialAccount.

- `status` (enum)
  An enum representing the status of the FinancialAddress. This indicates whether or not the FinancialAddress can be used for any money movement flows.
Possible enum values:
  - `active`
    The Financial Address is active.

  - `archived`
    The Financial Address is archived, it cannot be used anymore.

  - `failed`
    The Financial Address creation failed.

  - `pending`
    The Financial Address is being created.
