Skip to content

Retrieve

Get Credit Product Prime Rates
get/v1/credit_products/{credit_product_token}/prime_rates

Get Credit Product Prime Rates

Path Parameters
credit_product_tokenstring

Globally unique identifier for credit products.

Query Parameters
ending_beforestring
optional

The effective date that the prime rates ends before

formatdate
starting_afterstring
optional

The effective date that the prime rate starts after

formatdate
Returns
dataarray of object

List of prime rates

Hide ParametersShow Parameters
effective_datestring

Date the rate goes into effect

formatdate
ratestring

The rate in decimal format

has_moreboolean

Whether there are more prime rates

Request example Request
curl https://api.lithic.com/v1/credit_products/$CREDIT_PRODUCT_TOKEN/prime_rates \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "effective_date": "2019-12-27",
      "rate": "rate"
    }
  ],
  "has_more": true
}