GET
/
accounts
/
{acc_id}
/
payment_instruments
curl "https://production.methodfi.com/accounts/acc_4m9amk4KFiaQX/payment_instruments" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "pmt_inst_pd788hPVhLT37",
      "account_id": "acc_GAzrD99cUqGEN",
      "type": "card",
      "card": {
        "number": "5555555555551580",
        "exp_month": "04",
        "exp_year": "2027"
      },
      "network_token": null,
      "chargeable": true,
      "status": "completed",
      "error": null,
      "created_at": "2025-04-03T19:30:56.039Z",
      "updated_at": "2025-04-03T19:30:56.039Z"
    },
    {
      "id": "pmt_inst_vk423jTNmSR82",
      "account_id": "acc_GAzrD99cUqGEN",
      "type": "network_token",
      "card": null,
      "network_token": {
        "token": "1234567890123456"
      },
      "chargeable": true,
      "status": "completed",
      "error": null,
      "created_at": "2025-04-03T19:32:11.125Z",
      "updated_at": "2025-04-03T19:32:11.125Z"
    }
  ],
  "message": null
}

Retrieves a list of PaymentInstrument objects for an Account.

Path Parameters

acc_id
string
required

The ID of the Account

Query Parameters

from_date
string

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

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Payment Instruments 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 Payment Instruments to return per page.

Returns

Returns a list of PaymentInstrument objects.

curl "https://production.methodfi.com/accounts/acc_4m9amk4KFiaQX/payment_instruments" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "pmt_inst_pd788hPVhLT37",
      "account_id": "acc_GAzrD99cUqGEN",
      "type": "card",
      "card": {
        "number": "5555555555551580",
        "exp_month": "04",
        "exp_year": "2027"
      },
      "network_token": null,
      "chargeable": true,
      "status": "completed",
      "error": null,
      "created_at": "2025-04-03T19:30:56.039Z",
      "updated_at": "2025-04-03T19:30:56.039Z"
    },
    {
      "id": "pmt_inst_vk423jTNmSR82",
      "account_id": "acc_GAzrD99cUqGEN",
      "type": "network_token",
      "card": null,
      "network_token": {
        "token": "1234567890123456"
      },
      "chargeable": true,
      "status": "completed",
      "error": null,
      "created_at": "2025-04-03T19:32:11.125Z",
      "updated_at": "2025-04-03T19:32:11.125Z"
    }
  ],
  "message": null
}