Returns the unlimited (no data cap, dataValue == -1) local Plans available for a specific Destination. Optionally filtered by planType.
GET
/plans/{iso3}/local/unlimited
curl \
--request GET 'https://zim.api.zimconnections.com/plans/{iso3}/local/unlimited' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-App-Identifier: $API_KEY"
Response examples (200)
[
{
"id": "plan_uNlimitedABCDEF123456",
"destination": {
"name": "France",
"isoAlpha3": "FRA"
},
"dataUnit": "GB",
"dataValue": -1,
"durationUnit": "DAYS",
"durationValue": 7,
"features": [
{
"name": "HOTSPOT",
"category": "UTILITY"
},
{
"name": "5G",
"category": "NETWORK"
}
],
"prices": [
{
"currencyISO": "USD",
"value": 2490,
"minorExponentUnits": 2
}
]
},
{
"id": "plan_uNlimitedABCDEF654321",
"destination": {
"name": "France",
"isoAlpha3": "FRA"
},
"dataUnit": "GB",
"dataValue": -1,
"durationUnit": "DAYS",
"durationValue": 30,
"features": [
{
"name": "HOTSPOT",
"category": "UTILITY"
},
{
"name": "5G",
"category": "NETWORK"
}
],
"prices": [
{
"currencyISO": "USD",
"value": 4990,
"minorExponentUnits": 2
}
]
}
]