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.

Variant 1 · Elegant Modern
Claims found

$0.00

14 property records from one phone-search match

States
CA, GA, MN
Format
JSON
Variant 2 · Dark Luxe Fintech
Claims found

$0.00

14 property records from one phone-search match

States
CA, GA, MN
Format
JSON
Variant 3 · Receipt
BlueNavy claims statementRef. #BN-8472-PHS

Claims found · Total

$0.00

Records
14
States
CA, GA, MN
Format
JSON
Variant 4 · Terminal / Data
STATUS
200 OK
MATCHES
14
VALUE
$0.00
STATES
CA, GA, MN
FORMAT
JSON

Quickstart

Make your first authenticated call

  1. 01

    Token request

    shellPOST /api/oauth/token
    curl -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=..."
  2. 02

    Phone search

    shellPOST /api/v1/phone-search
    curl -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"}'