get_destination_esim_plans
jetpacglobal.comRetrieves all fixed-GB and unlimited eSIM data plans for a destination from https://www.jetpacglobal.com, including USD pricing, validity, plan details, coverage, and computed daily cost. Fixed plans are grouped by validity period for straightforward comparison.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_destination_esim_plans?
Retrieves all fixed-GB and unlimited eSIM data plans for a destination from https://www.jetpacglobal.com, including USD pricing, validity, plan details, coverage, and computed daily cost. Fixed plans are grouped by validity period for straightforward comparison. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass destination and get the result back without maintaining a scraper.
Response
{
"coverage": [
{}
],
"currency": "<string>",
"page_name": "<string>",
"source_url": "<string>",
"destination": "<string>",
"unlimited_plans": [
{
"name": "<string>",
"plan_id": "<string>",
"duration": "<string>",
"price_usd": 0,
"catalog_id": "<string>",
"data_amount": "<string>",
"supports_5g": true,
"descriptions": [
"<string>"
],
"package_type": "<string>",
"duration_days": 0,
"source_fields": {},
"esim_config_id": "<string>",
"list_price_usd": 0,
"cost_per_day_usd": 0,
"discount_percent": 0
}
],
"fixed_plan_count": 0,
"unlimited_plan_count": 0,
"fixed_plans_by_validity": [
{
"plans": [
{
"name": "<string>",
"data_gb": 0,
"plan_id": "<string>",
"duration": "<string>",
"price_usd": 0,
"catalog_id": "<string>",
"supports_5g": true,
"descriptions": [
"<string>"
],
"package_type": "<string>",
"duration_days": 0,
"source_fields": {},
"esim_config_id": "<string>",
"list_price_usd": 0,
"cost_per_day_usd": 0,
"discount_percent": 0
}
],
"validity": "<string>",
"validity_days": 0
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c8a05ce-4070-41b1-9219-1f277aeb4366/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c8a05ce-4070-41b1-9219-1f277aeb4366",
"variables": {
"destination": "Japan"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3c8a05ce-4070-41b1-9219-1f277aeb4366") — the "get_destination_esim_plans" function, which retrieves all fixed-GB and unlimited eSIM data plans for a destination from https://www.jetpacglobal.com, including USD pricing, validity, plan details, coverage, and computed daily cost. Fixed plans are grouped by validity period for straightforward comparison.. It takes destination (str). Return the result as structured JSON.