Telegram Accounts Rest Api

https://telaccount.ir/

To use this API, you need an API key. Please contact at @telaccount_bot to get your own API key and manage it.
Get countries list by available number

https://telaccount.ir/list_countries

No params required

Request without parameters
{
    "status": "success",
    "countries": [
        "Iran",
        "Bangladesh",
        "Vietnam",
        "Ukraine",
        "United States",
        "Britain (UK)"
    ]
}

Get a phone number from specefic country, The order expires after 3 minutes

https://telaccount.ir/getnum/YOUR-API-KEY/Iran

No params required

Label Description Type Required
api_key Your api key String true
country Country from which you want the number.example: "Iran" String true
{
    "status": "success",
    "number": "+989191234567"
}

Check the status of number [waiting, received, completed, failed]. The code will be given to you if the status is "received" and the response is 100. In this case, your credit will be deducted.

https://telaccount.ir/checkstatus/YOUR-API-KEY/+989191234567

No params required

Label Description Type Required
api_key Your api key String true
phone_number The phone number you received from the /getnum/{api_key}/{country} method String true
{
    "status": "success",
    "number": "+989191234567",
    "code": "12345"
}

Get the price of this number.

https://telaccount.ir/price/YOUR-API-KEY/+989191234567

No params required

Label Description Type Required
api_key Your api key String true
phone_number The number you want to get price String true
{
    "status": "success",
    "price": "20000"
}

Log out this account and terminate session.

https://telaccount.ir/logout/YOUR-API-KEY/+989191234567

No params required

Label Description Type Required
api_key Your api key String true
phone_number The number you want to terminate the session String true
{
    "status": "success",
    "description": "Success log out"
}

User balance.

https://telaccount.ir/balance/YOUR-API-KEY

No params required

Label Description Type Required
api_key Your api key String true
{
    "status": "success",
    "balance": "10000"
}

Price based on country name

https://telaccount.ir/list_prices/YOUR-API-KEY

No params required

Label Description Type Required
api_key Your api key String true
{
    "status": "success",
    "currency": "toman",
    "prices": {
        "Qatar": 15000.0,
        "Belarus": 16500.0,
        "China": 7500.0,
        "France": 36000.0,
        "Mexico": 18000.0,
        "Spain": 36000.0,
        "Turkey": 21000.0,
        "Bangladesh": 12000.0,
        "Kenya": 16500.0,
        "Iran": 24000.0,
        "Russia": 10800.0,
        "Azerbaijan": 15000.0,
        "Argentina": 15000.0,
        "Solomon Islands": 15000.0,
        "Guyana": 15000.0,
        "Mozambique": 15000.0,
        "Mongolia": 16500.0,
        "Kyrgyzstan": 14850.0,
        "Pakistan": 13500.0,
        "Zambia": 15000.0,
        "Saudi Arabia": 15600.0,
        "Britain (UK)": 22500.0,
        "Honduras": 12750.0,
        "New Caledonia": 12750.0,
        "Fiji": 12750.0,
        "Mauritania": 12750.0,
        "Namibia": 10485.0,
        "Eswatini (Swaziland)": 10500.0,
        "Botswana": 15000.0,
        "Malawi": 15000.0,
        "Nigeria": 15000.0,
        "Indonesia": 9000.0,
        "India": 15000.0,
        "Ukraine": 8250.0,
        "Poland": 9000.0,
        "United States": 6750.0,
        "Lesotho": 14850.0,
        "Angola": 15000.0,
        "Vietnam": 8850.0
    }
}