ASN Lookup

Look up Autonomous System Number (ASN), organization, ISP, domain, and network route information for any IP address. Use this endpoint to identify which organization or ISP owns an IP address and understand the network topology.

Get API Key

Overview

Use Cases

  • Network diagnostics and troubleshooting
  • Fraud detection and risk assessment
  • Content delivery optimization
  • Threat intelligence and IP reputation
  • Network mapping and analytics

Features

Autonomous System Number (ASN) lookup
Organization name retrieval
ISP identification
Domain and network route information
Support for both IPv4 and IPv6 addresses

API Endpoints

Lookup ASN (Caller IP)

Look up ASN, organization, ISP, and network details for the requesting client's IP address. Useful when you want information about the user making the request without specifying an IP explicitly.

GET
https://api.requiems.xyz/v1/tech/ip/asn

Try it out

Live Demo
Request

Response Fields

Field Type Description
ip string The IP address that was looked up (the requesting client's IP)
asn string Autonomous System Number in format "ASxxxx" (e.g., "AS15169")
org string Organization name owning the IP address range
isp string Internet Service Provider providing the IP
domain string Domain name associated with the IP or IP range
route string CIDR notation of the network route (e.g., "8.8.8.0/24")
type string Type of network (e.g., "hosting", "isp", "business", "cdn")

Code Examples

curl "https://api.requiems.xyz/v1/tech/ip/asn" \
  -H "requiems-api-key: YOUR_API_KEY"

Error Responses

internal_error

Unexpected server error

Lookup ASN for IP

Look up ASN, organization, ISP, and network details for a specific IP address.

GET
https://api.requiems.xyz/v1/tech/ip/asn/{ip}

Parameters

Name Type Required Description
ip string Required The IP address to look up (supports IPv4 and IPv6)

Try it out

Live Demo
Request

The IP address to look up (supports IPv4 and IPv6)

Response Fields

Field Type Description
ip string The IP address that was looked up
asn string Autonomous System Number in format "ASxxxx" (e.g., "AS15169")
org string Organization name owning the IP address range
isp string Internet Service Provider providing the IP
domain string Domain name associated with the IP or IP range
route string CIDR notation of the network route (e.g., "8.8.8.0/24")
type string Type of network (e.g., "hosting", "isp", "business", "cdn")

Code Examples

curl "https://api.requiems.xyz/v1/tech/ip/asn/8.8.8.8" \
  -H "requiems-api-key: YOUR_API_KEY"

Error Responses

bad_request

The IP address is invalid

internal_error

Unexpected server error

Frequently Asked Questions