Search SimFuse prepaid travel eSIM data plans for 200+ countries and regions
Search SimFuse prepaid travel eSIM data plans for 200+ countries and regions. Filter by destination (ISO country code), days, data and max price; every result has its price and a purchase_url to buy that eSIM with x402 (USDC on Base) or by card. Call it when a traveller needs mobile data abroad and you must pick a plan. No account or API key needed.
1000 (raw units)
price
245
calls / 30d
1
unique payers
2026-09-13
updated
Provider
simfuse.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x74Ae7540109F9640c426b34dfD06e60D4918CD0a",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"category": "connectivity",
"discoverable": true,
"info": {
"input": {
"body": {
"currency": "USD",
"destination": "JP",
"limit": 10,
"min_data_amount_mb": 5120,
"min_validity_days": 7
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"currency": "USD",
"matched": 12,
"plans": [
{
"coverage_countries": [
"JP"
],
"data_amount_mb": 5120,
"id": "01kwsmf1yc5ywmex1c5jcccg09",
"name": "Japan 5 GB",
"price_cents": 1499,
"purchase_url": "https://simfuse.app/x402/purchase/01kwsmf1yc5ywmex1c5jcccg09",
"unlimited": false,
"validity_days": 30
}
],
"returned": 10
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"currency": {
"description": "ISO 4217 code for prices. Defaults to USD.",
"type": "string"
},
"destination": {
"description": "ISO 3166-1 alpha-2 country the traveller visits, e.g. JP. Omit to search every plan, including regional and global ones.",
"type": "string"
},
"limit": {
"description": "Results to return, 1 to 25. Defaults to 10.",
"type": "integer"
},
"max_price_cents": {
"description": "Budget: max price in cents of currency.",
"type": "integer"
},
"min_data_amount_mb": {
"description": "Data needed, in MB (1 GB is 1024).",
"type": "integer"
},
"min_validity_days": {
"description": "Trip length: plans valid at least this many days.",
"type": "integer"
}
}
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"matched": {
"description": "Plans matching, before limit.",
"type": "integer"
},
"plans": {
"description": "Matching plans; each has id, name, data_amount_mb, validity_days, coverage_countries, price_cents and purchase_url (POST it to buy with x402 or card).",
"type": "array"
}
},
"required": [
"plans"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://simfuse.app/x402/plans/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://simfuse.app/x402/plans/search");
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://simfuse.app/x402/plans/search")
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/8959.json, and this resource appears in /discovery/resources and /discovery/search.