Skip to main content

Credit Card Product Endpoints

A credit_card_product represents the product features associated with a particular credit card, like cashback rewards, zero percent introductory rates, and the like.

Credit Card Product Fields

FieldData TypeDefinition
annual_feeDecimalThe annual fee associated with the credit_card_product.
duration_of_introductory_rate_on_balance_transferIntegerThe duration of an introductory rate on balance transfers, given in months.
duration_of_introductory_rate_on_purchasesIntegerThe duration of an introductory rate on purchases, given in months.
guidStringThe unique identifier for the credit_card_product. Defined by MX.
has_cashback_rewardsBooleanThis indicates whether the credit card offers cashback rewards.
has_other_rewardsBooleanThis indicates whether the credit card offers a rewards system that is different than standard cashback or travel rewards.
has_travel_rewardsBooleanThis indicates whether the credit card offers travel rewards.
has_zero_introductory_annual_feeBooleanThis indicates whether the credit card offers a limited time period where a membership fee is waived.
has_zero_percent_introductory_rateBooleanThis indicates whether the credit card offers a zero percent introductory rate.
has_zero_percent_introductory_rate_on_balance_transferBooleanThis indicates that the credit card offers a zero percent rate when transferring a balance from a different credit card.
is_accepting_applicantsBooleanThis indicates whether the financial institution is still accepting applicants for the credit card.
is_active_credit_card_productBooleanThis indicates whether the credit card is still supported by the financial institution.
is_small_business_cardBooleanThis indicates whether the credit card is associated with a small business.
nameStringThe name associated with the credit_card_product.

Read a Credit Card Product

This endpoint returns the specified credit_card_product according to the unique GUID.

The required credit_card_product_guid can be found on the account object.

Endpoint: GET /credit_card_products/{credit_card_product_guid}

Request
Response
Language:shell

_10
$ curl -i -X GET 'https://vestibule.mx.com/credit_card_products/{credit_card_product_guid}' \
_10
-H 'Accept: application/vnd.mx.atrium.beta+json' \
_10
-H 'MX-API-Key: {mx_api_key}' \
_10
-H 'MX-Client-ID: {mx_client_id}'