Cross-region AWS price comparison
Cross-region AWS price comparison. Find the cheapest region for any service in one API call.
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-08
updated
Provider
costpulse.waltsoft.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x318A4B4764eb37c3FCBcE434713128143815FD57",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana",
"payTo": "GsKr5q9TmiJQcEgUpBp2X6SmvSg3dnXuw2uxYJxgPTk8",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"instance": "m5.xlarge",
"service": "ec2"
},
"type": "http"
},
"output": {
"example": {
"all_regions": [
{
"price_per_unit": 0.192,
"region": "us-east-2"
}
],
"cheapest": {
"price_per_unit": 0.192,
"region": "us-east-2",
"unit": "Hrs"
},
"most_expensive": {
"price_per_unit": 0.268,
"region": "ap-southeast-3"
},
"regions_compared": 24,
"savings_vs_most_expensive": "28%",
"service": "ec2",
"sku": "m5.xlarge"
},
"type": "json"
}
},
"schema": {
"properties": {
"all_regions": {
"type": "array"
},
"cheapest": {
"type": "object"
},
"most_expensive": {
"type": "object"
},
"regions_compared": {
"type": "integer"
},
"savings_vs_most_expensive": {
"type": "string"
},
"service": {
"type": "string"
},
"sku": {
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://costpulse.waltsoft.net/v1/cheapest" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://costpulse.waltsoft.net/v1/cheapest");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://costpulse.waltsoft.net/v1/cheapest")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13828.json, and this resource appears in /discovery/resources and /discovery/search.