ArgumentsType | RequiredDescription
customTotalinteger | requiredThe total price in cents of the item or cart that you wish to calculate a monthly “as low as” amount for.
financingProgramIdstring | optionalSpecify an alternate financing program to use for “as low as” calculation. Leave empty to use your default financing program.
POST https://api.getbread.com/aslowas
{
  "customTotal": 50000,
  "financingProgramId": "52210fd9-10e7-4c12-8fc4-065692d5411f"
}
curl https://api.getbread.com/aslowas/ \
    -u <api-key>:<secret-key> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"customTotal": 50000,"financingProgramId": "52210fd9-10e7-4c12-8fc4-065692d5411f"}'
{
  "asLowAs": {
    "monthly": 2307,
    "amount": "$23.07",
    "termLength": 24,
    "termInterval": "Month",
    "apr": 0.0999,
    "minApr": 0.0599,
    "maxApr": 0.2999,
    "asLowAsText": "This example payment is based on the listed product price of $500.00 assuming a 24-month term and a 9.99% APR. Your terms may vary and are subject to application. Rates range from 5.99% to 29.99% APR. Bread® loans are made by Cross River Bank, member FDIC."
  },
  "financingProgramId": "52210fd9-10e7-4c12-8fc4-065692d5411f"
}