Coverage

Retrieve consumer lending coverage

GET
Retrieve state-by-state consumer coverage list. The state-by-state consumer coverage list reflects your state coverage and compliant loan thresholds based on your use case. We configure this based on your licensing and compliance setup, upon our review to ensure you're compliant with state and federal requirements.

Response

This endpoint returns a map from strings to objects
amount_threshold
object
apr_threshold
object
origination_fee_threshold
object

Errors

GET
1curl https://production.pier-finance.com/api/coverage/consumer \
2 -H "Authorization: Bearer <token>"
1{
2 "AL": {
3 "amount_threshold": {
4 "min": 5000,
5 "max": 5000000
6 },
7 "apr_threshold": {
8 "type": "tiered",
9 "max": []
10 },
11 "origination_fee_threshold": {
12 "max": 500
13 }
14 }
15}