📶 E-SIM Service Documentation
Overview
E-SIM Service provides APIs for electronic SIM management, activation, and metadata retrieval.
Download Postman Collection For ESIM: Download here
🔄 E-Sim API Interaction Workflow

🚀 Quick Start
- Authenticate: Get your API token.
curl --location '{{host}}/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'client_id=' \
--data-urlencode 'password=@Password123' \
--data-urlencode 'username=account@tripdata.vn'
| Parameter | Required | Description |
|---|---|---|
grant_type |
✅ Yes | Must be password |
client_id |
✅ Yes | Client application identifier |
username |
✅ Yes | User's email/username |
password |
✅ Yes | User's password |
Authentication Details | Error Handling
API Endpoint:
- URL:
{{host}}/{path} - Method:
POST - Content-Type:
application/json
- URL:
Explore APIs:
🔑 Core Features
| Feature | Description | Documentation |
|---|---|---|
| Order Lookup | Retrieve details of a specific eSIM order | API Document |
| Country Metadata | Retrieve country list and SIM compatibility | API Document |
| Product Catalog | Search and view available eSIM products | API Document |
🗂️ API Structure
graph TD
A[E-SIM Service] --> B(Manage Orders)
A --> C(Metadata)
A --> D(Order)
B --> E[/GET /get_orderℹ️/]
C --> F[/GET /b2c/*/]
D --> G[/POST /esim📝/]
click B "manage-orders/get_order_by_id.html" "View Manage Orders APIs"
click C "metadata/overview_metadata.html" "View Metadata APIs"
click D "order/order.html" "View Order APIs"
click E "manage-orders/get_order_by_id.html" "View Get Order"
click F "metadata/overview_metadata.html" "View Metadata"
click G "order/order.html" "View Create Order"
🌟 Use Cases
- Instantly activate eSIM profiles for supported devices.
- Manage and track SIM orders.
- Retrieve metadata for SIM cards and supported regions.