search_esim_plans
ActiveTool of Siima eSIM
Search prepaid travel eSIM data plans by destination country (ISO 3166-1 alpha-2, e.g. "JP"), region (e.g. "Europe"), minimum data in GB, maximum total price in USD, or plan duration in days. Returned price_usd is the final amount the customer pays at checkout (all fees included). To buy: call create_checkout_link with the plan id, give the returned URL to the user. After payment the eSIM (QR code + activation link + manual codes) is emailed to them automatically — no account needed.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"limit": {
"type": "integer",
"default": 10,
"maximum": 50,
"minimum": 1,
"description": "Max results to return"
},
"region": {
"type": "string",
"description": "Region name, e.g. \"Europe\", \"Asia\""
},
"country": {
"type": "string",
"maxLength": 2,
"minLength": 2,
"description": "Destination country as ISO 3166-1 alpha-2 code, e.g. \"JP\" for Japan"
},
"min_data_gb": {
"type": "number",
"description": "Minimum data allowance in GB",
"exclusiveMinimum": 0
},
"duration_days": {
"type": "integer",
"description": "Exact plan duration in days",
"exclusiveMinimum": 0
},
"max_price_usd": {
"type": "number",
"description": "Maximum total price in USD (checkout total)",
"exclusiveMinimum": 0
}
},
"additionalProperties": false
}Parent server
Siima eSIM
1/7 registries