# SixPath BIN/IP Checker

> SixPath BIN/IP Checker is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.171152/call, status unknown (last checked 2026-09-15).

Looks up geolocation and organization details for a given IP address, returning city, country, and org info.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/bin-ip-checker
- Price: $0.171152/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-bin-ip-checker-50f918b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VGflde1PuPnZUbFZzff2v

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sixpath-bin-ip-checker-50f918b8 -d '<json body>'
```

Example prompt: Can you look up the IP address 203.0.113.42 and tell me what city, country, and organization it belongs to?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call IP geolocation lookup that returns city, country, and organization data without a subscription. Suitable for one-off lookups in automated pipelines or agent workflows on the Base chain.

## Known failure modes

- Invalid or malformed IP address returns an error
- Private/reserved IP ranges may return no meaningful geo data
- Rate limiting or payment failure due to x402 protocol issues
- IP not found in database returns empty or null fields

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns a JSON object with the queried IP address, the organization (ISP or company) it belongs to, the city it is associated with, and the country of origin.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ip": {
   "type": "string",
   "description": "IP address to check"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ip": {
   "type": "string"
  },
  "org": {
   "type": "string"
  },
  "city": {
   "type": "string"
  },
  "country": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sixpath-bin-ip-checker-50f918b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sixpath.vercel.app](https://www.zero.xyz/host/sixpath.vercel.app/llms.txt)
