Phone Intelligence API

Data back
in milliseconds

One GET request. Carrier, location, name — clean JSON, every time. No SDK. No setup. Secure backend proxy.

Try live →
GET api.aerivue.dev/lookup?number= click to copy

        
Built clean. No fluff.

Fast

Optimized proxy endpoint, low-latency by design.

🔒

Secure

Your API key lives server-side. Never exposed to clients.

📦

Simple

One parameter. One endpoint. JSON back. Done.

🖥

Reliable

Cloud-hosted with consistent availability.

Documentation

Endpoint

GET https://api.aerivue.dev/lookup

Parameters

number string REQUIRED

Example request

// JavaScript fetch
fetch("https://api.aerivue.dev/lookup" +
  "?number=7571902689")
  .then(r => r.json())
  .then(console.log);

# curl
curl "https://api.aerivue.dev/lookup \
  ?number=7571902689"
Sample response
application/json
200 OK
{
  "success": true,
  "result": {
    "result": [
      {
        "fname":    "Godrej Agrovet Limited",
        "circle":   "AIRTEL UP EAST",
        "address":  "Unnao, Uttar Pradesh",
        "num":      "7571902689"
      }
    ],
    "status": "success"
  }
}
Copied to clipboard