LeadX provides enriched B2B business and contact data via its APIs, which enables use cases like credit risk assessment, sales and marketing, customer verification (Know Your Customer/KYC), and AI-driven analytics. In this tutorial, we focus on credit risk.Documentation Index
Fetch the complete documentation index at: https://docs.leadx.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before you begin, ensure you have the following:- A valid LeadX API Key.
-
You can run the
cURLcommands in a terminal or another API querying application, like Postman
Vetting a Loan Application
Suppose Acme Plumbing LLC is applying for an equipment loan. We can use LeadX’s endpoints in sequence to build a credit profile.Get Company Profile (KYC)
First call the This call returns details like company name, address, industry, employee count, and NAICS codes. For example, Acme might have
/companies endpoint with a company URL:Terminal
estimated_number_employees: 12, industry: Construction, and naics_code: 238220 (Plumbing, Heating, and Air-Conditioning Contractors). Verifying this information ensures we know exactly who the borrower is (KYC) and what business they operate.Find Key Contacts
Next call the Example output might include information like:If the response shows A valid phone/email confirms the contact’s identity and helps prevent fraud.
/contacts endpoint to get executives or owners. Again, you can use the company URL for input:Terminal
-
"first_name":"Jane" -
"last_name":"Smith" -
"title":"Owner" -
"department":"C Level Executive" -
"linkedin":"linkedin.com/in/jane-smith" -
"years_in_role":5.
/emails/validation endpoint:Terminal
"status": "Valid", the email is deliverable.Similarly, we can use the /mobile-numbers/enrich endpoint to retrieve a mobile number:Terminal
Check UCC Filings (Existing Liens)
The The following output is provided:This shows Acme Plumbing has an active lien filed Jan 15, 2023 (expiring Jan 15, 2028). Knowing Acme’s lien count gives insight into its leverage.
/ucc/debtor endpoint reveals any Uniform Commercial Code (UCC) financing statements filed by the business. We call:Terminal
200 - Successful Response
Build a Risk Profile
Now we combine the data:
- Firmographics: Industry, size, location, age of company
- Contact verification: Valid owner/executive information
- Lien information: Number of active UCCs
Next Steps
Develop a system to automatically ingest and analyze the data received from LeadX API responses. Automating this process can significantly streamline your loan approval operations, so you can focus more on strategic decision-making rather than manual verification tasks.