IP Lookup API

Dokumentasi resmi IP Lookup API dari Maelyn API untuk geolokasi, ISP, dan ASN sebuah alamat IP

Base Information

  • BASE_URL_API: https://api.maelyn.eu/api
  • Path / Endpoint: /tools/ip-lookup
  • Method: GET
  • Credit Usage: 1

Authentication

Gunakan header berikut pada setiap request:

x-maelyn-auth: YOUR_API_KEY

Query Parameters

Example Request

GET /tools/ip-lookup?ip=8.8.8.8

Parameters

NameTypeRequiredDescription
ipstringYesIPv4/IPv6 valid.

Example Usage

GET /tools/ip-lookup?ip=8.8.8.8

Success Response

{
  "success": true,
  "data": {
    "ip": "8.8.8.8",
    "negara": "United States",
    "kode_negara": "US",
    "provinsi": "Virginia",
    "kota": "Ashburn",
    "koordinat": { "lat": 39.03, "lon": -77.5 },
    "timezone": "America/New_York",
    "isp": "Google LLC",
    "organisasi": "Google Public DNS",
    "asn": "AS15169 Google LLC"
  }
}

Playground