# Freeland eSIM Plans Search

> Freeland eSIM Plans Search is a paid API for AI agents from coinslot.nuanu.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns available eSIM data plans (IDs, data caps, USD prices) for a specified country via ISO 3166-1 alpha-2 code

## Facts

- Endpoint: GET https://coinslot.nuanu.ai/freeland/esim/plans
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freeland-esim-plans-search-7f7b744d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LALjotOdJKue97pvAB4rw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability freeland-esim-plans-search-7f7b744d
```

Example prompt: What eSIM data plans are available for Japan — show me the plan IDs, data caps, and prices in USD.

## When to prefer this

Use this endpoint when you need to discover and compare eSIM data plan options for a specific country before purchase, especially in automated travel-planning or connectivity workflows. It is ideal for agents that need to present pricing options to users or programmatically select a plan based on cost or data cap criteria. Prefer this over general telecom APIs when you need structured plan metadata (IDs, caps, prices) suitable for downstream purchasing flows.

## Known failure modes

- Invalid or unsupported country code returns an error or empty plan list
- Country not covered by any eSIM provider returns empty results
- Payment failure via x402/USDC results in request rejection
- Network timeout or upstream provider outage returns a 5xx error
- Missing required 'country' query parameter returns a 400 validation error

## How this service works

Search available eSIM data plans by country (ISO 3166-1 alpha-2). Returns plan ids, data caps and USD prices. Pay per query in USDC via x402.

## Output

A list of available eSIM data plans for the requested country, including plan IDs, data caps (e.g. in GB/MB), and prices in USD. Allows comparison of different tiers and packages offered for that country.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country"
     ],
     "properties": {
      "country": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 country code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freeland-esim-plans-search-7f7b744d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinslot.nuanu.ai](https://www.zero.xyz/host/coinslot.nuanu.ai/llms.txt)
