> ## 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.

# Salt Edge Transactions Mapping

This data comes from Salt Edge's [/api/v5/transactions](https://docs.saltedge.com/account_information/v5/#transactions-list) endpoint and is returned from Meld's [/bank-linking/transactions](/api-reference/bank-linking/transactions/bank-linking-transactions-search) endpoint.

<Note>
  Example values: `amount: -22.40`, `currency: "EUR"`, `status: "POSTED"`, `transactionDate: "2024-08-10"`, `postedDate: "2024-08-11"`.
</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" }}>
        SaltEdge Response Field
      </th>
    </tr>
  </thead>

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

      <td style={{ textAlign: "left" }}>
        The amount of the transaction
      </td>

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

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

      <td style={{ textAlign: "left" }}>
        The currency used in the transaction
      </td>

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

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

      <td style={{ textAlign: "left" }}>
        The recipient of the transaction
      </td>

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

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

      <td style={{ textAlign: "left" }}>
        The status of the transaction
      </td>

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

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

      <td style={{ textAlign: "left" }}>
        The date and time the transaction was made
      </td>

      <td style={{ textAlign: "left" }}>
        made\_on
      </td>
    </tr>

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

      <td style={{ textAlign: "left" }}>
        The date and time the transaction was posted
      </td>

      <td style={{ textAlign: "left" }}>
        extra.posting\_date\
        *If extra.posting\_date is null then:*\
        made\_on
      </td>
    </tr>
  </tbody>
</Table>
