This endpoint comes with a Rate Limit: You can send up to 5 requests to get Access Token during 1 minute.This endpoint lets you obtain an access token, which is necessary for making requests to the Airalo Partners API. By providing your client ID and client secret, you'll receive a token that is valid for 24 hours.It's a good idea to store the access token in your API client and request a new one only if the current token expires or becomes invalid.
Request
Header Params
Body Params multipart/form-data
Request 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--request POST '/v2/token' \
--header'Accept: application/json' \
--form'client_id="<replace with client id>";type=string' \
--form'client_secret="<replace with client secret>"' \
--form'grant_type="client_credentials"'