> ## Documentation Index
> Fetch the complete documentation index at: https://docs.meld.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Plaid Balances Mapping

This data comes from Plaid's [/accounts/balance/get](https://plaid.com/docs/api/accounts/) endpoint and is returned from Meld's [/bank-linking/accounts](/api-reference/bank-linking/accounts/bank-linking-accounts-search) endpoint.

<Note>
  Example: a Plaid `accounts.balances.iso_currency_code` of `"USD"` maps to Meld `currency: "USD"`. A Plaid `accounts.balances.current` of `1203.45` maps to Meld `currentAmount: 1203.45`.
</Note>

<Table align={["left","left","left"]}>
  <thead>
    <tr>
      <th style={{ textAlign: "left" }}>
        Meld Field
      </th>

      <th style={{ textAlign: "left" }}>
        Description
      </th>

      <th style={{ textAlign: "left" }}>
        Plaid Response Field
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td style={{ textAlign: "left" }}>
        currency
      </td>

      <td style={{ textAlign: "left" }}>
        The currency of the account balance
      </td>

      <td style={{ textAlign: "left" }}>
        accounts.balances\
        .iso\_currency\_code
      </td>
    </tr>

    <tr>
      <td style={{ textAlign: "left" }}>
        currentAmount
      </td>

      <td style={{ textAlign: "left" }}>
        The current amount in the account
      </td>

      <td style={{ textAlign: "left" }}>
        accounts.balances.current
      </td>
    </tr>

    <tr>
      <td style={{ textAlign: "left" }}>
        availableAmount
      </td>

      <td style={{ textAlign: "left" }}>
        The available amount in the account
      </td>

      <td style={{ textAlign: "left" }}>
        accounts.balances.available
      </td>
    </tr>

    <tr>
      <td style={{ textAlign: "left" }}>
        updatedAt
      </td>

      <td style={{ textAlign: "left" }}>
        The last time balances were updated
      </td>

      <td style={{ textAlign: "left" }}>
        accounts.balances\
        .last\_updated\_datetime
      </td>
    </tr>
  </tbody>
</Table>
