Run in Apidog
This endpoint provides an access token required for making authenticated requests to the Airalo Partners API. Submit your client ID and client secret to obtain a token valid for 24 hours . While the token remains valid for a year, we recommend refreshing it more frequently for enhanced security. Important Notes# The response contains the access token, which must be cached and reused for subsequent API calls until it expires or is refreshed.
Store the client ID and client secret securely in an encrypted format on your systems.
All actions performed using these credentials will be considered valid transactions, and the partner will be responsible for any associated costs.
Request Body Params multipart/form-data
Request Code Samples
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"'
Responses application/json Generate Code
{
"data" : {
"token_type" : "Bearer" ,
"expires_in" : 31622400 ,
"access_token" : "<access token>"
} ,
"meta" : {
"message" : "success"
}
}
Modified at 2025-07-10 09:46:10