# Ip Asn Get Asn

> 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.

- Skill: `bobadilla-tech/ip-asn-get-asn` (Agent Skill)
- Install (CLI): `npx skillmds@latest add bobadilla-tech/ip-asn-get-asn`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bobadilla-tech/ip-asn-get-asn/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: bobadilla-tech (https://skillmd.com/u/bobadilla-tech)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/bobadilla-tech/ip-asn-get-asn

---


## Endpoint

**GET https://requiems.xyz/v1/networking/ip/asn**

## 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.

## Response Example

```json
{
  "data": {
    "ip": "8.8.8.8",
    "asn": "AS15169",
    "org": "Google LLC",
    "isp": "Google Public DNS",
    "domain": "google.com",
    "route": "8.8.8.0/24",
    "type": "hosting"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## 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") |

## Errors

- `500` **internal_error** — Unexpected server error

