Borrowers Endpoints
Applications Endpoints
Loan Agreements Endpoints
Facilities Endpoints
Coverage and Utilities
Borrowers Endpoints
List all borrowers
GET
/
borrowers
List all borrowers
Copy
curl --request GET \
--url https://production.pier-finance.com/api/borrowers \
--header 'Authorization: Basic <encoded-value>'
Copy
[
{
"type": "business",
"address": {
"line_1": "15 Market St",
"line_2": null,
"city": "San Francisco",
"state": "NJ",
"zip": "94133"
},
"business_contact": {
"first_name": "alex",
"last_name": "montana",
"phone": "4155555555",
"email": "alex@acme.co",
"title": "COO"
},
"beneficial_owners": [
{
"address": {
"line_1": "15 Market St",
"line_2": null,
"city": "San Francisco",
"state": "CA",
"zip": "91133"
},
"date_of_birth": "1991-12-18",
"email": "jdoe@acme.com",
"first_name": "Jane",
"last_name": "Dough",
"percent_ownership": 2500,
"phone": "4155555555",
"ssn": "123456789",
"id": "63ae91f8eae458cb0d79f77e"
}
],
"id": "bor_18e5a3726b3943cda2635f40e1041ba4",
"business_name": "Apple Landscaping",
"business_type": "corporation",
"dba_name": "Apple Landscaping",
"ein": "130256721",
"incorporation_date": "2000-12-12",
"kyb_completion_date": "2022-11-15",
"phone": "4152556465",
"state_of_incorporation": "DE",
"created_on": "2022-12-30T07:23:36.665Z"
},
{
"type": "consumer",
"address": {
"line_1": "15 Main Street",
"line_2": "Unit 204",
"city": "Austin",
"state": "TX",
"zip": "73301"
},
"date_of_birth": "1991-12-18",
"email": "jdough@acme.co",
"first_name": "Jane",
"last_name": "Dough",
"ssn": "999888777",
"kyc_completion_date": "2022-11-15",
"phone": "2065886919",
"id": "bor_a1d0c30d77104f35b4c842b99132624e",
"created_on": "2022-12-30T07:23:36.665Z"
}
]
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Response
200 - application/json
List all borrowers
Copy
curl --request GET \
--url https://production.pier-finance.com/api/borrowers \
--header 'Authorization: Basic <encoded-value>'
Copy
[
{
"type": "business",
"address": {
"line_1": "15 Market St",
"line_2": null,
"city": "San Francisco",
"state": "NJ",
"zip": "94133"
},
"business_contact": {
"first_name": "alex",
"last_name": "montana",
"phone": "4155555555",
"email": "alex@acme.co",
"title": "COO"
},
"beneficial_owners": [
{
"address": {
"line_1": "15 Market St",
"line_2": null,
"city": "San Francisco",
"state": "CA",
"zip": "91133"
},
"date_of_birth": "1991-12-18",
"email": "jdoe@acme.com",
"first_name": "Jane",
"last_name": "Dough",
"percent_ownership": 2500,
"phone": "4155555555",
"ssn": "123456789",
"id": "63ae91f8eae458cb0d79f77e"
}
],
"id": "bor_18e5a3726b3943cda2635f40e1041ba4",
"business_name": "Apple Landscaping",
"business_type": "corporation",
"dba_name": "Apple Landscaping",
"ein": "130256721",
"incorporation_date": "2000-12-12",
"kyb_completion_date": "2022-11-15",
"phone": "4152556465",
"state_of_incorporation": "DE",
"created_on": "2022-12-30T07:23:36.665Z"
},
{
"type": "consumer",
"address": {
"line_1": "15 Main Street",
"line_2": "Unit 204",
"city": "Austin",
"state": "TX",
"zip": "73301"
},
"date_of_birth": "1991-12-18",
"email": "jdough@acme.co",
"first_name": "Jane",
"last_name": "Dough",
"ssn": "999888777",
"kyc_completion_date": "2022-11-15",
"phone": "2065886919",
"id": "bor_a1d0c30d77104f35b4c842b99132624e",
"created_on": "2022-12-30T07:23:36.665Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.