LRN
LRN Lookup (POST)
Retrieve Local Routing Number information for a phone number.
Optional parameters allow including CNAM and Trust data in a single request:
- include_cnam: Add caller name lookup
- include_trust: Add reputation scoring with trust_level (high/medium/low)
- lrn_only: Minimal response with only LRN data (overrides other includes)
Each included lookup is billed separately.
post/api/v1/lrn
Request body
Example request
{
"phone_number": "15555550123"
}Response
Successful LRN lookup
Example response
{
"phone_number": "15555550123",
"lrn": "15555550123",
"lrn_activated_at": "2021-09-01T00:00:00+00:00",
"carrier": "Verizon Wireless",
"line_type": "mobile",
"cnam": {
"caller_name": "ACME CORP"
},
"trust": {
"spam_type": "NONE",
"reputation_score": 85,
"trust_level": "high",
"last_updated": "2026-01-18T12:30:00Z"
}
}