Returns the Plans available for a specific Destination, split into regular and unlimited buckets.
regular- Plans capped to a finite amount of dataunlimited- Plans with no data cap (dataValue == -1)
GET
/plans/{iso3}/local
curl \
--request GET 'https://zim.api.zimconnections.com/plans/{iso3}/local' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-App-Identifier: $API_KEY"
Response examples (200)
{
"regular": [
{
"id": "plan_guaGulGcrqgTYboPvetgu",
"destination": {
"name": "France",
"isoAlpha3": "FRA"
},
"dataUnit": "GB",
"dataValue": 10,
"durationUnit": "DAYS",
"durationValue": 14,
"features": [
{
"name": "HOTSPOT",
"category": "UTILITY"
},
{
"name": "5G",
"category": "NETWORK"
}
],
"prices": [
{
"currencyISO": "USD",
"value": 1490,
"minorExponentUnits": 2
}
]
}
],
"unlimited": [
{
"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
}
]
}
]
}