{
  "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"
}
You are viewing latest API version 2025-07-04. To view the previous version click here.
The CardBrand endpoint retrieves the associated credit card metadata (Product / Brand Name, Art, etc) directly from the card issuer.
CardBrand is only available for visa and mastercard credit cards.
The CardBrand endpoint is available as a:
TypeUse-Case
ProductOn-Demand retrieval of credit card metadata (Product / Brand Name, Art, etc) directly from the card issuer
SubscriptionNear real-time updates on credit card metadata (Product / Brand Name, Art, etc) directly from the card issuer

CardBrand Objects

id
string
Unique identifier for the CardBrand.
account_id
string
The ID of the associated Account.
brands
object[]
The brands associated with the card.
source
enum | null
The source of the card brand. One of method, network or null
status
enum
status of the CardBrand.
error
object | null
An object representing an error that occurred while processing this CardBrand. See CardBrand errors.
created_at
string
Timestamp of when the CardBrand was created.
updated_at
string
Timestamp of when the CardBrand was last updated.

Webhook Payload

The Webhook payload will contain the following information:
{
  "id": "string",
  "type": "card_brand.create" | "card_brand.update" | "card_brand.available",
  "path": "/accounts/<acc_id>/card_brands/<cbrd_id>",
}
{
  "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"
}