Financing

Get the financing information for a product

get

To get the financing information for a specific product, provide the product ID.

Path parameters
productIdstringRequired

Provide the product identifier.

Query parameters
apiKeystringOptional

Provide your client identifier.

tokenstringOptional

Provide the authorized or anonymous token for a shopper.

expandstringOptional

Use the expand query parameter when you want additional fields to appear in the response. The expand query parameter provides more fields in the response. Expanding resources reduces the number of API calls required to accomplish a task.

fieldsstringOptional

Specify the fields that you want to appear in the response. Filtering the fields returned in the response can conserve bandwidth and accelerate response time.

Responses
200
Successful response.
application/json
get
GET /v1/shoppers/me/product/{productId}/financing HTTP/1.1
Host: api.digitalriver.com
Accept: */*
{
  "uri": "https://api.digitalriver.com/v1/shoppers/me/products/73248500/financing",
  "financingTerm": [
    {
      "id": 1324500,
      "totalRepayable": {
        "currency": "USD",
        "value": "19.99"
      },
      "formattedTotalRepayable": "$8.92",
      "creditAmount": {
        "currency": "USD",
        "value": "19.99"
      },
      "formattedCreditAmount": "$7.20",
      "monthlyPaymentAmount": {
        "currency": "USD",
        "value": "19.99"
      },
      "formattedMonthlyPaymentAmount": "$0.08",
      "durationInMonths": 120,
      "interestRatePct": 0.04500000178813934,
      "interestRatePctForDisplay": 4.5,
      "effectiveInterestRate": 0.04500000178813934,
      "effectiveInterestRateForDisplay": 4.5,
      "description": "4.5% for 120 months"
    }
  ]
}

Last updated