LRN Lookup API
Get Local Routing Number (LRN) data for accurate phone number routing and portability information.
How LRN Works
Local Routing Number (LRN) lookup provides essential routing information for phone numbers, including portability data and enhanced network details for accurate call routing and billing.
Key Features:
- Real-time LRN data retrieval
- Number portability detection
- Enhanced LRN data with carrier details
- Messaging provider integration
- High-accuracy routing information
- Bulk lookup capabilities
Use Cases:
- Call routing optimization
- Billing and cost management
- Number portability verification
- Carrier identification
- Fraud prevention and security
- Telecom infrastructure planning
Carrier Routing
Our LRN lookup service provides comprehensive carrier routing information to optimize call delivery and ensure accurate billing. Access real-time data for efficient network management and enhanced customer experience.
Access LRN data through our powerful GraphQL API for flexible queries and efficient data fetching. Perfect for modern applications requiring precise data control.
Explore GraphQL →Need high-volume access or custom features? Our Enterprise plans offer dedicated support, competitive rates, and SLA guarantees.
Contact Sales →Integration
GET /api/v1/lrn?phone_number=+15551234567&include_enhanced_lrn=true
Response:
{
"lrn": "+15551234000",
"phone_number": "+15551234567",
"enhanced_lrn_data": {
"carrier": "Verizon Wireless",
"carrier_type": "mobile",
"city": "New York",
"state": "NY",
"zip_code": "10001",
"county": "New York",
"timezone": "-0500",
"rate_center": "NYC",
"lata": "132",
"ocn": "921"
}
}
GraphQL Query
query {
lookupLrn(
phoneNumber: "+15551234567"
includeEnhanced: true
includeMessaging: false
) {
number
lrn
enhanced {
carrier
carrier_type
city
state
zip_code
county
timezone
rate_center
lata
ocn
}
}
}