BlueNavy · API v1
BlueNavy Partner API
OAuth2 client credentials are available at /api/oauth/token. Authenticated partners can call /api/v1/phone-search.
For API documentation access, contact info@bluenavy.org.
Example API output
Show users the claim value a phone search can return
A matched identity can include owner evidence, state property records, and a ready-to-display value estimate in one response.
Claims found
$0.00
14 property records from one phone-search match
- States
- CA, GA, MN
- Format
- JSON
Claims found
$0.00
14 property records from one phone-search match
- States
- CA, GA, MN
- Format
- JSON
BlueNavy claims statementRef. #BN-8472-PHS
Claims found · Total
$0.00
- Records
- 14
- States
- CA, GA, MN
- Format
- JSON
- STATUS
- 200 OK
- MATCHES
- 14
- VALUE
- $0.00
- STATES
- CA, GA, MN
- FORMAT
- JSON
Quickstart
Make your first authenticated call
01 Token request
shellPOST /api/oauth/tokencurl -X POST https://partner.bluenavy.org/api/oauth/token \ -H "content-type: application/x-www-form-urlencoded" \ -d "grant_type=client_credentials" \ -d "client_id=partner_acme" \ -d "client_secret=..."
02 Phone search
shellPOST /api/v1/phone-searchcurl -X POST https://partner.bluenavy.org/api/v1/phone-search \ -H "authorization: Bearer $ACCESS_TOKEN" \ -H "content-type: application/json" \ -d '{"phone_number":"19490000000","first_name":"John","last_name":"Doe"}'