Skip to main content
GET
/
accounts
/
{acc_id}
/
payment_instruments
curl "https://production.methodfi.com/accounts/acc_4m9amk4KFiaQX/payment_instruments" \
  -H "Method-Version: 2025-07-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

Query Parameters

Returns

Returns a list of PaymentInstrument objects.
curl "https://production.methodfi.com/accounts/acc_4m9amk4KFiaQX/payment_instruments" \
  -H "Method-Version: 2025-07-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
}