Skip to main content
POST
/
api
/
v2
/
prequal_prefill
Submit Prefill Form
curl --request POST \
  --url https://develop.qa.credible.com/api/v2/prequal_prefill \
  --header 'Content-Type: application/json' \
  --data '
{
  "meta": {
    "partner": "test-partner",
    "flow": "personal-borrower",
    "ctaLocation": "web",
    "partnerId": "123456"
  },
  "data": {
    "firstName": "TestFirstName",
    "lastName": "TestLastName",
    "dob": "01/01/2000",
    "phone": "(111) 222-3333",
    "email": "[email protected]",
    "ipAddress": "127.0.0.1",
    "address": {
      "street": "378 East Street",
      "city": "Bloomsburg",
      "state": "PA",
      "zipcode": "17815"
    },
    "loan": {
      "requestedAmount": 10600,
      "purpose": "debt_consolidation"
    },
    "financial": {
      "employmentStatus": "employed_full_time",
      "annualIncome": 300000,
      "creditScoreQuality": "excellent",
      "housingType": "rent"
    },
    "citizenship": {
      "status": "us_citizen",
      "ssn": "666-70-1451"
    }
  }
}
'

Body

application/json
meta
object
required

An object specifying the requesting partner and the target prequal flow.

data
object
required

An object containing the user data that will be used to prefill the form; the accepted fields vary depending on the specified flow and are outlined below

Response

200

Successful submission