The Preapproval Lookup endpoint allows you to retrieve preapproval data for applications based on specified filters: date range, phone number, or email address.

HTTP Request

GET https://katapult.com/api/v3/application/preapproval_lookup/

Preapproval Filter Parameters

Query ParametersDescriptionData Type
date_filterSpecifies the type of date to filter by. For this endpoint, use preapproved_datestring
startThe start date for the date range filter in YYYY-MM-DD format. Required if using date filteringstring
endThe end date for the date range filter in YYYY-MM-DD format. Required if using date filteringstring
phoneThe phone number to filter bystring
emailThe email address to filter bystring

❗️

If there is no filter applied then API will return list of all the active preapprovals

Headers

Query ParametersDescriptionData Type
AuthorizationBearer token for authentication. Replace Bearer <katapult-retailer-private-token> with your actual private API tokenstring
AcceptSpecifies the format of the response. Use application/json to receive a JSON formatted response.string

Sample cURL Requests

Using Date Filter

curl --location 'https://katapult.com/api/v3/application/preapproval_lookup/?date_filter=preapproved_date&start=2024-05-01&end=2024-06-09' \
--header 'Authorization: Bearer <private-token>' \
--header 'Accept: application/json

Using Phone Filter

curl --location 'https://katapult.com/api/v3/application/preapproval_lookup/?phone=1234567890' \
--header 'Authorization: Bearer <private-token>' \
--header 'Accept: application/json'

Using Email Filter

curl --location 'https://katapult.com/api/v3/application/preapproval_lookup/[email protected]' \
--header 'Authorization: Bearer <private-token>' \
--header 'Accept: application/json'

Response Codes

AttributeDescription
202 AcceptedThe request was successful, and the response contains the preapproval data
400 Bad RequestThe request could not be understood or was missing the required parameters
401 UnauthorizedAuthentication failed or user does not have permissions for the requested operation