# Saily API Scraper - eSIM data (`rl1987/saily-api-scraper`) Actor

Scrape Saily (Nord Security) eSIM data plans: the full public catalogue with pricing, data allowance, validity and covered countries, filterable by country or region — plus the destinations list. Read-only, no account.

- **URL**: https://apify.com/rl1987/saily-api-scraper.md
- **Developed by:** [R.L.](https://apify.com/rl1987) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 result rows

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Saily eSIM Scraper – Travel eSIM Data Plans, Pricing & Coverage API

Extract the full **Saily eSIM catalogue** (Saily is the travel eSIM by **Nord Security**) as clean,
structured JSON — every **data plan** with its **price, data allowance, validity and covered
countries**, filterable by country or region, plus the list of destinations. Read-only public data,
**no account**.

Fast and structured — reads Saily's own mobile catalogue API directly. Export to **JSON, CSV, Excel
or the API**.

### 📶 What this Saily scraper does

- 💳 **eSIM plans** — the whole catalogue (~1,200 plans): price, currency, data amount / unlimited,
  validity, category, cashback, and the countries each plan covers.
- 🌍 **Filter by country or region** — e.g. plans that cover the US, or all Europe plans.
- 🗺️ **Destinations** — 200 countries (with popularity) + 10 regions and their member countries.

### 💡 Use cases

- **eSIM price comparison & monitoring** — track Saily pricing and coverage over time.
- **Travel/telecom market research** — plan structures, data tiers and regional coverage.
- **Affiliate & comparison sites** — power an eSIM comparison table with fresh data.

### 🧭 Modes — input & output examples

#### 1. eSIM plans (optionally filtered)

Input:

```json
{ "mode": "plans", "country": "US", "maxItems": 0 }
```

Output (one row per plan):

```json
{ "id": "31b70ef7-f796-479c-935b-d1ac4185370b", "title": "United States 5 GB / 7 days",
  "category": "standard", "duration_amount": 7, "duration_unit": "day",
  "data_amount": 5, "data_unit": "GB", "is_unlimited": false,
  "price": 28.99, "price_minor": 2899, "currency": "USD",
  "covered_countries": ["US"], "num_countries": 1,
  "cashback_percentage": 3, "requires_identity_verification": false, "is_recurring": false }
```

*(Leave `country` blank for the whole catalogue, or set `regionCode` — e.g. Europe — for a region.)*

#### 2. Destinations (countries & regions)

Input:

```json
{ "mode": "destinations" }
```

Output (country rows and region rows):

```json
{ "type": "country", "iso": "AF", "name": "Afghanistan", "popularity": 1 }
```

```json
{ "type": "region", "region_code": "AFR", "name": "Africa", "num_countries": 35,
  "countries": ["BF", "BJ", "BW", "…"] }
```

### 💳 Pricing

**Pay per result — $1 per 1000 rows** ($0.001 each), whether a plan or a destination.

### ❓ FAQ

**Do I need a Saily/Nord account?** No — the plan catalogue is public and pre-login.

**Can I get plans for one country?** Yes — set `country` (pick from the dropdown); the actor returns
every plan whose coverage includes it.

**Prices?** `price` is the human amount (e.g. 28.99) and `price_minor` the raw minor units, with
`currency`.

### 🛟 Support

Questions or a field you'd like added? Open an issue and we'll help.

# Actor input Schema

## `mode` (type: `string`):

Scrape the eSIM plan catalogue, or the list of destinations (countries + regions).

## `country` (type: `string`):

Plans mode: only plans that cover this country (client-side filter on covered countries).

## `regionCode` (type: `string`):

Plans mode: server-side region filter (e.g. Europe, North America, Global).

## `maxItems` (type: `integer`):

Max rows to return (0 = all; the full catalogue is ~1200 plans).

## `maxConcurrency` (type: `integer`):

Max requests in parallel.

## `maxRequestRetries` (type: `integer`):

Retries per request.

## `proxyConfiguration` (type: `object`):

Optional. Saily's catalogue is public; a proxy is not required.

## Actor input object example

```json
{
  "mode": "plans",
  "country": "",
  "regionCode": "",
  "maxItems": 0,
  "maxConcurrency": 3,
  "maxRequestRetries": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("rl1987/saily-api-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("rl1987/saily-api-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call rl1987/saily-api-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,rl1987/saily-api-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/h3AFtcYB5NXIA2nCw/builds/6ddj7hNbeggYhhq3n/openapi.json
