esimaccess-api

Manage eSIM Access API operations including balance checks, package listing, order creation, eSIM status monitoring, top-ups, cancellations, profile management, webhooks, and refund/reissue workflows. Use when user mentions eSIM, ICCID, data plan, roaming, SIM card, mobile data package, travel connectivity, cellular data usage, or interacts with the eSIM Access API at api.esimaccess.com. Also trigger when user asks about balance, top-up, order status, QR code provisioning, or uploads a list of ICCIDs or order numbers.

242 stars

Best use case

esimaccess-api is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Manage eSIM Access API operations including balance checks, package listing, order creation, eSIM status monitoring, top-ups, cancellations, profile management, webhooks, and refund/reissue workflows. Use when user mentions eSIM, ICCID, data plan, roaming, SIM card, mobile data package, travel connectivity, cellular data usage, or interacts with the eSIM Access API at api.esimaccess.com. Also trigger when user asks about balance, top-up, order status, QR code provisioning, or uploads a list of ICCIDs or order numbers.

Teams using esimaccess-api should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/esimaccess-api/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/esimaccess/esimaccess-api/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/esimaccess-api/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How esimaccess-api Compares

Feature / Agentesimaccess-apiStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Manage eSIM Access API operations including balance checks, package listing, order creation, eSIM status monitoring, top-ups, cancellations, profile management, webhooks, and refund/reissue workflows. Use when user mentions eSIM, ICCID, data plan, roaming, SIM card, mobile data package, travel connectivity, cellular data usage, or interacts with the eSIM Access API at api.esimaccess.com. Also trigger when user asks about balance, top-up, order status, QR code provisioning, or uploads a list of ICCIDs or order numbers.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# eSIM Access API Skill

Interact with the eSIM Access API for complete eSIM lifecycle management.

## When to Use This Skill

Use this skill when the user:

- Asks about eSIM operations: ordering, top-ups, cancellations, status checks
- Mentions ICCID, order number, QR code, or data usage
- Wants to check account balance or list available data packages
- Asks about roaming, travel data plans, or mobile connectivity
- Needs to manage eSIM profiles (suspend, unsuspend, revoke)
- Wants to configure webhooks for eSIM status notifications
- Asks to cancel and reissue an eSIM (refund/replace workflow)
- References the eSIM Access API or api.esimaccess.com

### Example prompts

- "Check my eSIM Access balance"
- "What packages are available for Japan?"
- "Order a 5GB plan for the US"
- "Check the status of order B26041021130002"
- "How much data has ICCID 89852240810733629810 used?"
- "Top up my eSIM with another 5GB"
- "Cancel this unused eSIM and get a refund"
- "Set up a webhook for order notifications"

## Quick Reference

- **Base URL**: `https://api.esimaccess.com/api/v1/open`
- **Auth**: HMAC-SHA256 signed headers — the accessCode is used as both the API identifier and signing key (see `references/api-reference.md`)
- **Prices**: API values / 10,000 = USD (e.g., 18000 = $1.80)
- **Volumes**: Bytes (1073741824 = 1 GB)
- **Credentials**: Get your accessCode from https://console.esimaccess.com/developer/index

## Operations

### Read (safe)
| Operation | Endpoint | Purpose |
|-----------|----------|---------|
| `check_balance` | `/balance/query` | Account balance in USD |
| `list_regions` | `/package/list` | All supported countries |
| `list_packages` | `/package/list` | Products by country/code |
| `list_topup_packages` | `/package/list` | Top-up options for ICCID |
| `check_order_status` | `/esim/query` | Order details + ICCID |
| `check_esim_status` | `/esim/query` | Full eSIM profile info |
| `check_data_usage` | `/esim/usage/query` | Data consumption stats |
| `query_webhook` | `/webhook/query` | Current webhook config |

### Write (costs money or modifies state)
| Operation | Endpoint | Purpose |
|-----------|----------|---------|
| `create_order` | `/esim/order` | Purchase new eSIM |
| `apply_topup` | `/esim/topup` | Add data to existing eSIM |
| `cancel_esim` | `/esim/cancel` | Cancel unused eSIM (refund) |
| `suspend_profile` | `/esim/suspend` | Temporarily disable |
| `unsuspend_profile` | `/esim/unsuspend` | Re-enable suspended |
| `revoke_profile` | `/esim/revoke` | Permanently disable (no refund) |
| `send_sms` | `/esim/sendSms` | Send SMS to eSIM |
| `setup_webhook` | `/webhook/save` | Configure notification URL |

### Composite Workflows
| Operation | Purpose |
|-----------|---------|
| `refund_and_reissue` | Cancel unused eSIM, verify refund, order replacement with same package |

## Key Rules

1. **Order flow**: `create_order` returns `orderNo`. Poll `check_order_status` every 3s (4 retries) for ICCID. ORDER_STATUS webhook is fallback.
2. **Top-ups**: Use `esimTranNo` (not ICCID). `supportTopUpType === 2` means eligible. Cannot top up after expiry.
3. **Cancel vs Revoke**: Cancel works on unused eSIMs (RELEASED/GOT_RESOURCE) and provides refund. Revoke works on activated eSIMs with no refund.
4. **Usage query**: Requires `esimTranNo`, not ICCID. Do an ICCID lookup via `/esim/query` first if needed.
5. **SMS**: Uses `message` field (not `content`). Only works on activated eSIMs.

## Authentication in Any Language

The `references/api-reference.md` file contains HMAC-SHA256 auth examples in both Node.js and Python. Ask your AI to generate auth code in your preferred language using the signature algorithm documented there.

## Testing

```bash
node scripts/test-esim-api.mjs <accessCode>
```

## Installation

### Any AI agent (via Skills CLI)
```bash
npx skills add esimaccess/esimaccess-api
```

### Manual install
Download from https://app.esimaccess.com/public/skill/ and place in your agent's skills directory.

## Files

| File | Purpose |
|------|---------|
| `SKILL.md` | This file - skill definition |
| `scripts/test-esim-api.mjs` | 15 end-to-end API tests |
| `references/api-reference.md` | Full API docs: endpoints, auth, status states, webhooks, error codes |

Related Skills

azure-quotas

242
from aiskillstore/marketplace

Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: "check quotas", "service limits", "current usage", "request quota increase", "quota exceeded", "validate capacity", "regional availability", "provisioning limits", "vCPU limit", "how many vCPUs available in my subscription".

DevOps & Infrastructure

raindrop-io

242
from aiskillstore/marketplace

Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io.

Data & Research

zlibrary-to-notebooklm

242
from aiskillstore/marketplace

自动从 Z-Library 下载书籍并上传到 Google NotebookLM。支持 PDF/EPUB 格式,自动转换,一键创建知识库。

discover-skills

242
from aiskillstore/marketplace

当你发现当前可用的技能都不够合适(或用户明确要求你寻找技能)时使用。本技能会基于任务目标和约束,给出一份精简的候选技能清单,帮助你选出最适配当前任务的技能。

web-performance-seo

242
from aiskillstore/marketplace

Fix PageSpeed Insights/Lighthouse accessibility "!" errors caused by contrast audit failures (CSS filters, OKLCH/OKLAB, low opacity, gradient text, image backgrounds). Use for accessibility-driven SEO/performance debugging and remediation.

project-to-obsidian

242
from aiskillstore/marketplace

将代码项目转换为 Obsidian 知识库。当用户提到 obsidian、项目文档、知识库、分析项目、转换项目 时激活。 【激活后必须执行】: 1. 先完整阅读本 SKILL.md 文件 2. 理解 AI 写入规则(默认到 00_Inbox/AI/、追加式、统一 Schema) 3. 执行 STEP 0: 使用 AskUserQuestion 询问用户确认 4. 用户确认后才开始 STEP 1 项目扫描 5. 严格按 STEP 0 → 1 → 2 → 3 → 4 顺序执行 【禁止行为】: - 禁止不读 SKILL.md 就开始分析项目 - 禁止跳过 STEP 0 用户确认 - 禁止直接在 30_Resources 创建(先到 00_Inbox/AI/) - 禁止自作主张决定输出位置

obsidian-helper

242
from aiskillstore/marketplace

Obsidian 智能笔记助手。当用户提到 obsidian、日记、笔记、知识库、capture、review 时激活。 【激活后必须执行】: 1. 先完整阅读本 SKILL.md 文件 2. 理解 AI 写入三条硬规矩(00_Inbox/AI/、追加式、白名单字段) 3. 按 STEP 0 → STEP 1 → ... 顺序执行 4. 不要跳过任何步骤,不要自作主张 【禁止行为】: - 禁止不读 SKILL.md 就开始工作 - 禁止跳过用户确认步骤 - 禁止在非 00_Inbox/AI/ 位置创建新笔记(除非用户明确指定)

internationalizing-websites

242
from aiskillstore/marketplace

Adds multi-language support to Next.js websites with proper SEO configuration including hreflang tags, localized sitemaps, and language-specific content. Use when adding new languages, setting up i18n, optimizing for international SEO, or when user mentions localization, translation, multi-language, or specific languages like Japanese, Korean, Chinese.

google-official-seo-guide

242
from aiskillstore/marketplace

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

github-release-assistant

242
from aiskillstore/marketplace

Generate bilingual GitHub release documentation (README.md + README.zh.md) from repo metadata and user input, and guide release prep with git add/commit/push. Use when the user asks to write or polish README files, create bilingual docs, prepare a GitHub release, or mentions release assistant/README generation.

doc-sync-tool

242
from aiskillstore/marketplace

自动同步项目中的 Agents.md、claude.md 和 gemini.md 文件,保持内容一致性。支持自动监听和手动触发。

deploying-to-production

242
from aiskillstore/marketplace

Automate creating a GitHub repository and deploying a web project to Vercel. Use when the user asks to deploy a website/app to production, publish a project, or set up GitHub + Vercel deployment.