Travel apps & itinerary builders
Help travelers find connectivity alongside their next trip. Match a destination with data allowances and validity, then link to the selected plan on Wanderly.
We use cookies to improve your experience and analyse site traffic. See our Privacy Policy.
Bring Wanderly’s travel eSIM catalog into your app. Compare destinations, data allowances and prices, then send travelers to the right plan.
Free catalog access · No API key · JSON & CSV
const response = await fetch(
"https://getwanderly.com/api/catalog.json"
);
if (!response.ok) throw new Error("Catalog unavailable");
const { products } = await response.json();
// Fixed-data plans for Japan. Filter in your app.
const plans = products.filter(plan =>
plan.country_code === "JP" &&
plan.plan_kind === "total" &&
plan.data_gb >= 5
);
// Use each plan's buy_url to open Wanderly.Example request, not a price quote. Check validity and coverage before recommending a plan.
Use the same structured catalog to power different ways of discovering a travel plan.
Help travelers find connectivity alongside their next trip. Match a destination with data allowances and validity, then link to the selected plan on Wanderly.
Build plan tables from structured prices and coverage. Catalog access is public; affiliate participation and tracked links are managed separately through our partner program.
Give your application a catalog it can read. Retrieve the feed, filter plans in your own tool, and let travelers review the plan and complete their purchase on Wanderly.
GET /api/catalog.json returns the complete native catalog under products. Prefer a spreadsheet? Use /api/catalog.csv.
Filter in your application by country_code, coverage_type, plan_kind, data_gb and validity_days. Daily allowances and total-data plans are different products; compare like for like.
Use buy_url to open a preselected plan, or url for its destination page. Travelers review the current price and finish checkout on Wanderly.
The public feed gets you started with product discovery. For attribution and commissions, join the affiliate program and use the tracking links provided for your account.
Explore the affiliate programExplain device compatibility, plan activation and coverage alongside your recommendations. Our guide helps you get those details right.
Explore the fields, fetch a feed and build your first plan comparison.
Open developer documentation