API Documentation - SMSBower
API

Introduction

This API is designed to work with SMSBOWER to purchase temporary emails to receive verification codes and successfully register accounts in social networks.

Get mail
https://smsbower.online/api/mail/getActivation?api_key=$api_key&service=
$SERVICE&domain=$DOMAIN&ref=$ref&alias=$alias
Copied

Parameters $api_key - Your API Key $service - service see table $domain - required domain see table $ref - transfer the referral ID $alias - return mail as alias (1/0)

Required: $api_key $service

Example of an answer JSON
{
      "status": 1
      "mail": "[email protected]",
      "mailId": 4,
}
Copied
Example of an error JSON
{
      "status": 0
      "error": "No mails yet",
}

Possible mistakes
No mails yet - There is no available mails Insufficient balance - Insufficient balance

Get mail code
https://smsbower.online/api/mail/getCode?api_key=$api_key&mailId=
$mailId
Copied

Parameters $api_key - Your API Key $mailId - Mail activation ID received in response to mail request

Required: $api_key $mailId

Example of an answer JSON
{
      "status": 1
      "code": "code",
}
Copied
Example of an error JSON
{
      "status": 0
      "error": "Pass mail id",
}

Possible mistakes Pass mail id - The mailId parameter is invalid or was not sent at all Activation is already canceled - Your activation is canceled Code has not been received yet, please try again later - Your verification code is not received now

Get mail prices & rests
https://smsbower.online/api/mail/getPriceRests?api_key=$api_key&service=
$SERVICE&domain=$DOMAIN
Copied
Parameters $api_key - Your API Key $service - service see table $domain - required domain see table

Required: $api_key

Example of an answer JSON
{
      "status": 1
      "data": {
                ''Service'': {
                        ''Domain'': {
                            ''price'':Price,'
                            'count'':Count
                        }
                }
        }
}
Copied

Possible mistakes
No such domain - No such domain

List of available domains
Domain ID
Gmail Gmail
gmail.com
Mailnestpro Mailnestpro
mailnestpro.com
Hihinail Hihinail
hihinail.com
Flytempbox Flytempbox
flytempbox.com
Mailburstx Mailburstx
mailburstx.com
Change activation status
https://smsbower.online/api/mail/setStatus?api_key=$api_key&id=
MAIL_ACTIVATION_ID&status=STATUS
Copied
Parameters $api_key - Your API Key $id - Mail activation id (2 - Cancel, 5 - For waiting next code, 3 - To successfully close activation after code received and write off money from reserved balance)

Required: $api_key $id

Example of an answer JSON
            {
                  "status": 1
                  "message": Success
            }
Copied

Possible mistakes
Bad actual activation status - Bad actual activation status No activation found with such id - No activation found with such id

List of services
Example Postman
Write to us