GET
/
accounts
/
{acc_id}
/
transactions
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/transactions?from_date=2024-03-13&to_date=2024-03-15" \
  -X GET \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "txn_bSsDNBnFBsJti",
      "account_id": "acc_xHg4lkzbfw8tj",
      "merchant": {
        "name": "Starbucks",
        "category_code": "5812",
        "city": "Seattle",
        "state": "WA",
        "country": "USA",
        "acquirer_bin": "401858",
        "acquirer_card_acceptor_id": "QDFAPZYMMRTS"
      },
      "network": "visa",
      "network_data": {
        "visa_merchant_id": "967543210987",
        "visa_merchant_name": "Starbucks Store 042",
        "visa_store_id": "0042",
        "visa_store_name": "Starbucks Pike Place"
      },
      "amount": 1499,
      "currency": "USD",
      "billing_amount": 1499,
      "billing_currency": "USD",
      "status": "cleared",
      "created_at": "2024-05-07T15:30:25.467Z",
      "updated_at": "2024-05-07T15:30:25.467Z"
    },
  ]
}

Retrieve a list of Transactions objects for a specific Account.

Path Parameters

acc_id
string
required

ID of the Account.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Transactions created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Transactions created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

The number of Transactions to return per page.

Returns

Returns a list of transactions for the account.

curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/transactions?from_date=2024-03-13&to_date=2024-03-15" \
  -X GET \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "data": [
    {
      "id": "txn_bSsDNBnFBsJti",
      "account_id": "acc_xHg4lkzbfw8tj",
      "merchant": {
        "name": "Starbucks",
        "category_code": "5812",
        "city": "Seattle",
        "state": "WA",
        "country": "USA",
        "acquirer_bin": "401858",
        "acquirer_card_acceptor_id": "QDFAPZYMMRTS"
      },
      "network": "visa",
      "network_data": {
        "visa_merchant_id": "967543210987",
        "visa_merchant_name": "Starbucks Store 042",
        "visa_store_id": "0042",
        "visa_store_name": "Starbucks Pike Place"
      },
      "amount": 1499,
      "currency": "USD",
      "billing_amount": 1499,
      "billing_currency": "USD",
      "status": "cleared",
      "created_at": "2024-05-07T15:30:25.467Z",
      "updated_at": "2024-05-07T15:30:25.467Z"
    },
  ]
}