Woodside Credit's API Integration provides an easy way for dealerships and marketing partners to display Woodside Credit's low monthly payments.
The API currently consists of a single HTTP GET endpoint where the vehicle purchase price is provided as a URL query parameter. The response is a JSON object with the monthly payment, term, APR and fine print.
Parameter | Required? | Details |
---|---|---|
purchase_price | Yes | Specify the purchase price of the vehicle using this parameter |
indirect | No | Set this optional parameter to `true` for indirect rates. |
Parameter | Details |
---|---|
monthly_payment | The monthly payment applicable (in US dollars). |
term | Repayment duration (in months). |
apr | Calculated APR for this quote (in percentage). |
down_payment | Down payment applicable for this plan (in US dollars). |
fine_print | Fine print to be displayed. |
https://api.woodsidecredit.com/payment_estimate?purchase_price=102930
{
"monthly_payment": 941.13,
"term": 144,
"down_payment": 20586,
"apr":"9.09",
"fine_print":"Monthly payment of $941.13 based on a purchase price of $102930.00 with 20% down and 9.09% APR financing for 144 months. Rate with optional AutoPay (ACH Debit) discount. AutoPay discount is only available prior to loan funding. Rates without AutoPay discount are 0.50% higher. Best rates are available for credit scores of 700 and above. TT&L may also be financed. Not all applicants will qualify. Rates subject to change."
}