GET
/
accounts
/
{acc_id}
/
card_brands
curl https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/card_brands \
  -H "Method-Version: 2025-07-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "cbrd_Accm7P6t6mYQP",
      "account_id": "acc_LxwEqNicr66yP",
      "brands": [
        {
          "id": "pdt_15_brd_1",
          "card_product_id": "pdt_15",
          "description": "Chase Sapphire Reserve",
          "name": "Chase Sapphire Reserve",
          "issuer": "Chase",
          "network": "visa",
          "network_tier": "infinite",
          "type": "specific",
          "url": "https://static.methodfi.com/card_brands/1b7ccaba6535cb837f802d968add4700.png"
        }
      ],
      "status": "completed",
      "source": "method",
      "error": null,
      "created_at": "2025-08-12T00:56:50.139Z",
      "updated_at": "2025-08-12T00:56:50.139Z"
    },
    {...}
  ],
  "message": null
}
You are viewing latest API version 2025-07-04. To view the previous version click here.
Retrieve a list of Card Brands’ metadata 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 Card Brands created on and after the date provided.
to_date
string
ISO 8601 formatted date (YYYY-MM-DD) to filter for Card Brands 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 Card Brands to return per page.

Returns

Returns a list of Card Brands.
curl https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/card_brands \
  -H "Method-Version: 2025-07-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "cbrd_Accm7P6t6mYQP",
      "account_id": "acc_LxwEqNicr66yP",
      "brands": [
        {
          "id": "pdt_15_brd_1",
          "card_product_id": "pdt_15",
          "description": "Chase Sapphire Reserve",
          "name": "Chase Sapphire Reserve",
          "issuer": "Chase",
          "network": "visa",
          "network_tier": "infinite",
          "type": "specific",
          "url": "https://static.methodfi.com/card_brands/1b7ccaba6535cb837f802d968add4700.png"
        }
      ],
      "status": "completed",
      "source": "method",
      "error": null,
      "created_at": "2025-08-12T00:56:50.139Z",
      "updated_at": "2025-08-12T00:56:50.139Z"
    },
    {...}
  ],
  "message": null
}