Coverage

Retrieve commercial 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
limit_1
object
max_apr
integerOptional
business_types
list of enumsOptional
Allowed values: corporationllcpartnershipsole_proprietorship

Errors

GET
1curl https://production.pier-finance.com/api/coverage/commercial \
2 -H "Authorization: Bearer <token>"
1{
2 "AL": {
3 "limit_1": {
4 "amount": {
5 "min": 500000,
6 "max": 25000000
7 }
8 },
9 "max_apr": 9999,
10 "business_types": [
11 "corporation",
12 "partnership",
13 "llc",
14 "sole_proprietorship"
15 ]
16 }
17}