mirrored listing x402 eip155:8453

United Kingdom 500 MB: a prepaid travel eSIM with 500 MB of data for 1 day

United Kingdom 500 MB: a prepaid travel eSIM with 500 MB of data for 1 day. Buy it when a traveller needs mobile data abroad without a local SIM card or roaming fees. Pay in USDC on Base with x402, no account or API key needed. The installable eSIM (QR code, LPA activation code, one-tap iPhone and Android links) is ready within seconds from order_status_url. Optional JSON body: quantity (1 to 20) and email.

Do you run simfuse.app? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1290000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated

Provider

simfuse.app · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x74Ae7540109F9640c426b34dfD06e60D4918CD0a",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1290000",
    "maxTimeoutSeconds": 120
  }
]

Output schema

{
  "bazaar": {
    "category": "connectivity",
    "discoverable": true,
    "info": {
      "input": {
        "body": {
          "email": "[email protected]",
          "quantity": 1
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "currency": "USD",
          "order_id": "01jbxr8m0zqk3n2p9v7c4t6d5e",
          "order_status_url": "https://api.simfuse.app/agentic/orders/01jbxr8m0zqk3n2p9v7c4t6d5e?expires=1820786636&signature=4d91bbf3263025d2fb50e85f99ebe74c",
          "order_url": "https://simfuse.app/orders/01jbxr8m0zqk3n2p9v7c4t6d5e",
          "status": "paid",
          "total": "11.99"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "email": {
                  "description": "Optional. The traveller's email address, where the eSIM install details are also sent. Omit it to collect the eSIM only from order_status_url.",
                  "type": "string"
                },
                "quantity": {
                  "default": 1,
                  "description": "How many eSIMs of this plan to buy, 1 to 20. Defaults to 1. The price in the 402 challenge is for this quantity.",
                  "maximum": 20,
                  "minimum": 1,
                  "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": {
                "currency": {
                  "description": "ISO 4217 currency of total.",
                  "type": "string"
                },
                "order_id": {
                  "description": "The SimFuse order id.",
                  "type": "string"
                },
                "order_status_url": {
                  "description": "Signed URL to poll (GET) for the order; once provisioned it returns the installable eSIM: ICCID, LPA activation code, QR code and one-tap iPhone/Android install links.",
                  "type": "string"
                },
                "order_url": {
                  "description": "URL of the order page for a person.",
                  "type": "string"
                },
                "status": {
                  "description": "Order status; \"paid\" once the payment has settled.",
                  "type": "string"
                },
                "total": {
                  "description": "Amount charged, in major units of currency.",
                  "type": "string"
                }
              },
              "required": [
                "order_id",
                "status",
                "order_status_url"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://simfuse.app/x402/purchase/01kvmtdbwa5xk7h0k7p6t6t927"
# -> 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/purchase/01kvmtdbwa5xk7h0k7p6t6t927");
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/purchase/01kvmtdbwa5xk7h0k7p6t6t927")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8968.json, and this resource appears in /discovery/resources and /discovery/search.