⚡ Fast · Secure · JSON

Phone Lookup API

Clean JSON phone data via a single GET request. Secure backend proxy — your key never leaves the server.

Try Live
GET https://api.aerivue.dev/lookup?number=

      

Built for developers

Fast

Optimized proxy with low-latency responses.

🔒

Secure

API key protected server-side. Never exposed.

📦

Simple

One GET param. Clean JSON back. No SDK needed.

🖥

Reliable

Cloud-hosted with consistent uptime.

Documentation

Endpoint

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

Parameters

number string REQUIRED

Example Request

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

Sample Response

200 OK · application/json
success
{
  "success": true,
  "result": {
    "result": [
      {
        "fname": "Godrej Agrovet Limited",
        "circle": "AIRTEL UP EAST",
        "address": "Unnao, Uttar Pradesh",
        "num": "7571902689"
      }
    ],
    "status": "success"
  }
}