Discover/Amazonaws API
live

Amazonaws APIcheckip.amazonaws.com

Get the public IPv4 address of any HTTP client via the checkip.amazonaws.com API. One endpoint, one field, zero parameters required.

Endpoint health
verified 3h ago
get_ip
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the Amazonaws API?

The checkip.amazonaws.com API exposes 1 endpoint — get_ip — that returns a single ip_address field containing the public-facing IPv4 address of the requesting client as observed by AWS infrastructure. No query parameters, authentication, or request body are needed. It is useful anywhere you need a reliable, network-level view of an outbound IP: VPN verification, proxy detection, server egress auditing, or NAT traversal debugging.

Try it

No input parameters required.

api.parse.bot/scraper/d0143342-4c15-40d1-a6f8-53a36fcb9cb8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d0143342-4c15-40d1-a6f8-53a36fcb9cb8/get_ip' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace checkip-amazonaws-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: CheckIP SDK — retrieve your public IP address."""
from parse_apis.checkip_amazonaws_com_api import CheckIP, NotFoundError

client = CheckIP()

# Get the caller's public IP address as seen by AWS.
try:
    info = client.ip_infos.get()
    print(f"Public IP: {info.ip_address}")
except NotFoundError as exc:
    print(f"Service unavailable: {exc}")

print("exercised: ip_infos.get")
All endpoints · 1 totalmissing one? ·

Returns the public-facing IPv4 address of the caller as seen by AWS infrastructure. No parameters required — the service reflects whatever source IP reaches it.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "ip_address": "string"
  },
  "sample": {
    "data": {
      "ip_address": "193.23.198.197"
    },
    "status": "success"
  }
}

About the Amazonaws API

What the API Returns

The get_ip endpoint returns one field: ip_address, a string containing the public IPv4 address that AWS sees as the source of the incoming request. The address reflects the outermost network boundary the request passed through — a NAT gateway, a cloud egress IP, a residential router, or a VPN exit node — not any private or internal address.

Endpoint Behavior

get_ip takes no inputs. The response is determined entirely by the network path the request travels. If the caller is behind a corporate NAT, the returned address is the NAT's public IP. If running inside a cloud VM with an Elastic IP, the result is that Elastic IP. There is no way to query the IP of an arbitrary third party through this endpoint — it only reflects the caller's own source address.

Practical Notes

Because the endpoint requires no credentials and no parameters, it is well-suited for lightweight health checks, egress IP logging in CI/CD pipelines, and confirming that a VPN or proxy tunnel is active before making downstream requests. The response contains only the ip_address field — no geolocation, ASN, hostname, or threat intelligence data is included.

Reliability & maintenanceVerified

The Amazonaws API is a managed, monitored endpoint for checkip.amazonaws.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when checkip.amazonaws.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official checkip.amazonaws.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Verify the egress IP of a cloud function or container before making allowlist-restricted API calls
  • Confirm a VPN or proxy connection is active by checking that ip_address matches the expected exit node
  • Log the public IP of a server at startup for inventory or auditing purposes
  • Detect NAT traversal in CI/CD pipelines by recording the outbound IP during each build
  • Validate that a residential proxy rotates to a new ip_address between requests
  • Automate firewall rule generation by fetching the current egress IP of a dynamic host
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does checkip.amazonaws.com have an official developer API?+
checkip.amazonaws.com is a plain HTTP service operated by Amazon Web Services. AWS does not document it as a formal developer API with versioning, SDKs, or a support SLA — it is a utility endpoint that reflects the caller's IP address.
What exactly does the `get_ip` endpoint return?+
It returns a single field, ip_address, containing the public IPv4 address AWS observes as the source of the HTTP request. The value is the outermost public IP — typically a NAT gateway, cloud egress IP, or VPN exit node — not any private network address behind it.
Does the API return IPv6 addresses?+
The get_ip endpoint currently returns IPv4 addresses only. The ip_address field will not contain an IPv6 address even if the client supports dual-stack networking. You can fork this API on Parse and revise it to target an IPv6-capable reflection endpoint if you need IPv6 support.
Does the API return geolocation, ASN, or hostname data alongside the IP?+
Not currently. The response contains only the ip_address string — no country, city, ASN, ISP name, PTR record, or threat intelligence is included. You can fork this API on Parse and revise it to enrich the response by chaining a geolocation or ASN lookup endpoint.
Can I use this endpoint to look up the IP address of a third-party server or domain?+
No — get_ip only reflects the IP of the client making the request. It cannot resolve or look up the public IP of an arbitrary hostname or third-party service. You can fork this API on Parse and revise it to add a DNS resolution or WHOIS lookup endpoint for that use case.
Page content last updated . Spec covers 1 endpoint from checkip.amazonaws.com.
Related APIs in Developer ToolsSee all →
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
python.org API
Access comprehensive Python release information including downloads, versions, and supported operating systems, plus stay updated with the latest Python news and events. Search across Python.org's resources and browse release files, details, and the FTP index all in one place.
nvidia.com API
nvidia.com API
lucide.dev API
Browse and download thousands of Lucide icons with instant search and category filtering to find exactly what you need. Get SVG files and metadata for each icon to integrate them seamlessly into your projects.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
namecheap.com API
Search for available domain names, check their registration status, and browse TLD pricing across different extensions. Discover discounted domains on the marketplace and explore hosting bundles to find the perfect combination for your website needs.
dummyjson.com API
Get realistic fake data for products, users, and shopping carts to test your application without needing a real backend. Search for specific products, retrieve individual product details, browse user profiles, and access shopping cart information—all perfect for prototyping and development.