# IPRout 7-Day Developer Key

## Page URL

https://iprout.com/developer-key

## Summary

Generate a test API key, check usage, and test caller-IP or explicit-IP
lookups with IPRout.

The 7-Day Developer Key is built for quick evaluation before creating an
account. It provides temporary access to IPRout GeoIP and ASN lookup features.

## Developer Key Details

- No account required
- 1,000 total requests
- Valid for 7 days
- Full GeoIP and ASN lookup data
- IPv4 and IPv6 support
- Designed for API testing and evaluation

## Generate Developer Key

Use the developer-key page to generate a temporary API key:

https://iprout.com/developer-key

Backend target:

```text
POST /developer-keys
```

## Check Key Usage

Paste a developer key on the developer-key page to check usage status. The raw
key should remain in the form or browser session and should not be placed in
the URL.

Usage status is intended to show remaining requests and expiry information for
temporary developer keys.

## Test Caller IP Lookup

Enter an API key to test a live caller-IP lookup. This uses GET /ip with no
path parameter.

Example:

```bash
curl "https://api.iprout.com/ip" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Test Explicit IP Lookup

Switch to specific IP lookup and enter an IPv4 or IPv6 address to test
GET /ip/{ip}. This looks up the address in the path, not the caller.

Example:

```bash
curl "https://api.iprout.com/ip/8.8.8.8" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

Example response:

```json
{
  "ip": "8.8.8.8",
  "continent": "North America",
  "continent_code": "NA",
  "country": "United States",
  "country_code": "US",
  "region": "California",
  "city": "Mountain View",
  "timezone": "America/Los_Angeles",
  "utc_offset": "-07:00",
  "latitude": 37.4056,
  "longitude": -122.0775,
  "asn": 15169,
  "organization": "Google LLC",
  "currency": "USD",
  "calling_code": "+1"
}
```

## Related Pages

- Pricing: https://iprout.com/pricing
- Documentation: https://iprout.com/docs
- FAQ: https://iprout.com/faq
