Skip to content

Authorization

api_key

API key is a secret key for a simplified authorization in Onlinesim API.


How to get an API key:

  1. Log in to personal account, go to the Profile and click on API tab.
  2. Copy the key from the API Key field and add it to your application.

How to use it:

  1. All Onlinesim API requests (except for getFreeList) must contain an API key.

  2. API key can be specified as a query parameter, for example:

       https://onlinesim.io/api/getTariffs.php?api_key={api_key}
    

TIP

Using an API key provides a simplified way to authorize requests. We recommend using OAuth 2.0 for more secure data handling.

For detailed information, please refer to the official OAuth 2.0 documentation.

PropertyValue
TypeapiKey
Inquery
Nameapi_key

BearerAuth

The API key can also be used for authorization in the request header using the Authorization: Bearer scheme, for example:

bash
Authorization: Bearer {api_key}
User-Agent: PostmanRuntime/7.29.2
Accept: */\*
Cache-Control: no-cache
Postman-Token: 948bc880-8d25-4298-994f-fe6e22ada339
Host: onlinesim.io
Accept-Encoding: gzip, deflate, br
Connection: keep-alive
Cookie: xxxx

TIP

Using an API key provides a simplified way to authorize requests. We recommend using OAuth 2.0 for more secure data handling.

For detailed information, please refer to the official OAuth 2.0 documentation.

PropertyValue
Typehttp
Schemebearer

OAuth2

OAuth 2.0

The OAuth 2.0 authorization protocol provides several authorization scenarios, in our case Authorization Code and Implicit Flow types are available.

INFO

For detailed information, please refer to the official OAuth 2.0 documentation.

Authorization URL: https://onlinesim.io/oauth/authorize

Token URL: https://onlinesim.io/oauth/token

Scopes:

  • sms-scope grants access to manage numbers for the SMS receiving service from Onlinesim;

  • rent-scope grants access to renting phone numbers from Onlinesim;

  • free-scope grants access to using Onlinesim's free numbers.

Register the app in our authorization service

  1. Open OAuth page
  2. Add your app by clicking "Create New Client", then fill the fields below:
    • Name - could be the app name or any other name you and your users will associate with the app;
    • Redirect URL - after user authorization on our server, the client will be redirected with authorization code to this URL.
    • Confidential - (optional), mark the client as Confidential if your application runs on a server and can securely store the Client Secret.

Client creation

  1. Click "Create". New client will appear in the list of applications.

Client list

  1. Save the Client ID and Secret in a secure location; they will be used by your application for authorization.

OAuth 2.0. Authorization code flow

Authorize a user and get a token

  1. Authorize a client with a GET request to https://onlinesim.io/oauth/authorize with parameters client_id, redirect_uri, response_type, scope, state:
Parameter Description
Parameter NameData TypeDescription
client_idSTRINGClient ID (returned when the app registration process is complete)
redirect_uriSTRINGRedirect destination for the client after a successful authorization, it must match the value of Redirect URL field you've set during app registration process.
response_typeSTRINGUse code as a value for Authorization code flow
scopeSTRINGAccess rights that your app asks from the user. Possible values: sms-scope, rent-scope, free-scope. You can specify multiple values
stateSTRINGA random string for CSRF protection (verify it after the redirect)
  1. After the request to https://onlinesim.io/oauth/authorize is sent, the user from your app will be redirected to the authorization page to enter the login and password. If successful, authorize your app to work with user data in the Onlinesim service. To do so, he has to click on the Authorize button:

OAuth request

INFO

At this point, you can check the state parameter, to confirm secure communication with the authorization service

  1. If the authorization is successful, the user will be redirected to redirect_uri with the parameter code. Now you can get the access token after making a POST request to https://onlinesim.io/oauth/token:
Parameter Description
Parameter nameData typeDescription
grant_typeSTRINGAuthorization scenario type, use authorization_code when using the Authorization Code flow.
client_idSTRINGClient ID (returned when the app registration process is complete)
client_secretSTRINGClient_secret (returned when the app registration process is complete)
redirect_uriSTRINGRedirect URL for the client after a successful authorization, it must match the Redirect URL parameter used during app registration process.
codeSTRINGAuthorization code, obtained in the previous step

DANGER

Since client_secret is a private key, it is not recommended to store it in the frontend of the client. For better security, you should store it in the backend of your app. To implement the Authorization Code scenario, you need to pass this code from the frontend to the backend of your service.

  1. As a result of a successful request to https://onlinesim.io/oauth/token, you get JSON in response, which contains access_token, refresh_token, and expires_in attributes. The expires_in attribute contains the number of seconds before the access token is expired and the refresh_token is used to renew the access token when it expires.

Authorization and token refreshment

For all API requests, add the Authorization: Bearer access_token header. If your request results in ERROR_WRONG_KEY, you need to refresh your token or get a new one.

json
{
  "response": "ERROR_WRONG_KEY"
}

To refresh the token you must make a POST request to https://onlinesim.io/oauth/token with the parameters grant_type, client_id, client_secret, and refresh_token. For the refresh_token field, use the value obtained in step 4.

Parameter Description
Parameter nameData typeDescription
grant_typeSTRINGUse refresh_token as a value
client_idSTRINGClient ID (returned when the app registration process is complete)
client_secretSTRINGClient_secret (returned when the app registration process is complete)
refresh_tokenSTRINGRefresh_token is obtained along with the access_token. It has a much longer lifetime and is used to refresh access_token
codeSTRINGAuthorization code, obtained in the previous step

OAuth 2.0. Implicit flow

Authorize a user and get a token

  1. Authorize a client with a GET request to the endpoint https://onlinesim.io/oauth/authorize with parameters client_id, redirect_uri, response_type, scope, state:
Parameter Description
Parameter nameData typeDescription
client_idSTRINGClient ID (returned when the app registration process is complete)
redirect_uriSTRINGRedirect destination for the client after a successful authorization, it must match the Redirect URL parameter used during app registration process.
response_typeSTRINGUse token as a value for Implicit flow
scopeSTRINGAccess rights that your app asks from the user. Possible values: sms-scope, rent-scope, free-scope. You can specify multiple values
stateSTRINGA random string for CSRF protection (verify it after the redirect)
  1. After the request to https://onlinesim.io/oauth/authorize is sent, the user will be redirected from your app to the authorization page to enter the login & password and, if successful, authorize your app to work with user data in the Onlinesim service. To do so, he has to click on Authorize button:

OAuth request

INFO

At this point, you can check the state parameter, to confirm secure communication with the authorization service

  1. In case of successful authorization, the user will be redirected to the redirect_uri address with the parameter access_token. This token is required for authorization in Onlinesim API.

Authorization of requests to the Onlinesim API

Add to all API requests Authorization: Bearer access_token header. If your request results in ERROR_WRONG_KEY, you should get a new token.

json
{
  "response": "ERROR_WRONG_KEY"
}
PropertyValue
Typeoauth2

OAuth Flows

implicit

authorizationCode