1. Cloud eSIM
EIOTCLUB API
  • API Interface
    • Interface Description
    • Signature algorithm
    • Error Code
    • Card service interfaces
      • Query all cards under account (Deprecated)
      • Single Card Information Query (Deprecated)
      • Query Batch Card
      • Query Card Package Order Records
      • Query available packages for a card
      • Single Card Refresh (Deprecated)
      • Query international card warning information under the account
      • Card total statistics
      • Query profit sharing information at the current level
      • Query the list of operators that the card can switch to
      • Switch the operator of the card
      • Unlock the IMEI pool of the card
      • Add IMEI to the IMEI card pool
      • Send SMS
      • Query the refundable amount
      • Query customer account balance
      • Query the status of a package subscription order
      • Query the product to which the card belongs
      • Query the orderable packages under the specified product
      • Query orderable eSIM products
      • Purchase eSIM
      • Refund an eSIM order
      • Query eSIM order details
      • Query the refundable amount of an eSIM order
      • Query the details of the package corresponding to the order
      • Card bind device
      • Card unbind device
      • Card Transfer Package
      • Refresh package usage
      • Cancel current session
      • Query the seed number list of the eUICC card
      • Deliver eSIM remotely
      • Query all profiles under eUICC
      • Query Switchable Products for the Card
      • Switch Card Product
    • Card package subscription interfaces
      • Package subscription interface
      • Package refund interface
    • Asynchronous notification
      • Traffic alert
      • Unlock notification
      • Card locking notification
      • Subscription notification
      • Subscription notification - detailed version
      • Package activation notice
      • Product switching
      • Refund notification
      • Notification of package expiration upon reaching usage limit
      • Notification of card network disconnection
      • Notification of card being removed from the IMEI pool
      • Notification of card being moved into the IMEI pool
      • Notification of agent pool deact pkg
      • Notification of agent pool pkg activate
      • Notification of agent pool pkg traffic alert
      • EIM remote operation result notification
    • Cloud eSIM
      • Query all cloud eSIM cards under account
        POST
      • Single Cloud eSIM Card Details
        POST
      • Query Available Packages for Cloud eSIM Card
        POST
      • Query cloud eSIM card subscription records
        POST
      • Refresh eSIM card under account
        POST
      • Purchase eSIM card plan under account
        POST
      • Cloud eSIM card order status under account
        POST
      • Refund for Cloud eSIM Card Orders Under the Account
        POST
      • Query Refundable Amount for Cloud eSIM Card Orders Under the Account
        POST
      • Cloud eSIM Transfer Package
        POST
      • Cloud eSIM unlock
        POST
      • Query Switchable Products for the Cloud eSIM Card
        POST
      • Switch Cloud eSIM Card Product
        POST
      • Batch Add Cloud eSIM EIDs to IMEI Pool
        POST
    • Cloud eSIM Asynchronous notification
      • Traffic alert
      • Subscription notification
      • Package activation notice
      • Refund notification
      • Notification of package expiration upon reaching usage limit
      • Notification of card network disconnection
      • Product switching
      • Card locked notification
      • Card unlocked notification
    • Pool
      • Get pool package list
      • Create pool
      • Get pool list
      • Delete empty pool
      • Subscribe pool package
      • Get pool record list
      • Unsubscribe pool package
      • Get pool's can add card
      • Add pool's card
      • Get pool's card list
      • Remove pool's card
      • Get pool by iccid
    • CDR
      • Batch Query ICCID Traffic
  1. Cloud eSIM

Query all cloud eSIM cards under account

POST
/api/v3/cloudesim/list
Query all cards under account, get all cards within the account, 500 entries per page

Request

Body Params application/json

Example
{
    "pageNum": "1",
    "appkey": "{{APPKEY}}",
    "timestamp": 1787775642,
    "nonce": 49890,
    "sign": "{{SIGN}}",
    "eids": "1111111111111111111111111111111,222222222222222222222222222"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://oapi.eiotclub.com/api/v3/cloudesim/list' \
--header 'Content-Type: application/json' \
--data '{
    "pageNum": "1",
    "appkey": "",
    "timestamp": 1787775642,
    "nonce": 49890,
    "sign": "",
    "eids": "1111111111111111111111111111111,222222222222222222222222222"
}'

Responses

🟢200成功
application/json
Bodyapplication/json

Example
{
    "code": "6",
    "message": "consectetur Excepteur irure tempor officia",
    "data": {
        "cardInfoList": [
            {
                "eid": "68",
                "activateDate": "2025-02-23",
                "cardStatus": "ACTIVATED_NAME",
                "currentPkgRemainBytes": 34,
                "currentPkgUsedBytes": 69,
                "currentPkgTotalBytes": 96,
                "totalFlowBytes": 66,
                "remainFlowBytes": 87,
                "expectedEndDate": "2024-11-28",
                "productCode": "85",
                "packageEndDate": "2026-02-01",
                "packageCode": "23",
                "packageType": 5,
                "packageName": "www"
            },
            {
                "eid": "24",
                "activateDate": "2024-11-20",
                "cardStatus": "ACTIVATED_NAME",
                "currentPkgRemainBytes": 8,
                "currentPkgUsedBytes": 40,
                "currentPkgTotalBytes": 81,
                "totalFlowBytes": 45,
                "remainFlowBytes": 73,
                "expectedEndDate": "2026-08-01",
                "productCode": "30",
                "packageEndDate": "2024-11-15",
                "packageCode": "14",
                "packageType": 60,
                "packageName": "www"
            }
        ],
        "totalPage": 1
    }
}
Modified at 2026-09-16 06:51:03
Previous
EIM remote operation result notification
Next
Single Cloud eSIM Card Details
Built with