Woodside Credit

API Integration

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.


Input Parameters
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.



Output Parameters
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.
GET /payment_estimate

https://api.woodsidecredit.com/payment_estimate?purchase_price=102930

JSON Response

{
  "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. TT&L may also be financed. Not all applicants will qualify. Rates subject to change."
}


API Playground

API Request

Response