Поддержка
Просмотрите базу знаний или свяжитесь с нашим ассистентом поддержки.
Purchasing a Virtual NumberFollow these steps to get a virtual phone number for SMS verification:Add funds — Go to your dashboard and add funds using cryptocurrency or other payment methods.Select a service — Choose the service you need verification for (e.g., WhatsApp, Telegram, etc.).Choose a country — Pick the country you want your number from.Buy the number — Click "Buy" and the number will appear in your active orders.Use the number — Enter the provided number on the service you are registering for.Receive the SMS — The verification code will appear in your dashboard automatically.Important NotesNumbers are temporary and expire after the order is completed.If you do not receive an SMS within the time limit, you can cancel the order for a full refund.Some services may require specific countries — check the availability before purchasing.
Payment MethodsWe support a variety of payment methods to make adding funds as convenient as possible:CryptocurrencyBitcoin (BTC) — The most widely used cryptocurrency.Ethereum (ETH) — Fast and popular option.USDT (TRC-20 & ERC-20) — Stablecoin pegged to USD.Litecoin (LTC) — Low fees and fast confirmation.Processing TimeCryptocurrency payments are typically processed within 1-30 minutes depending on network congestion. Your balance will be updated automatically once the transaction is confirmed on the blockchain.Minimum DepositThe minimum deposit amount is $1.00 USD equivalent.
Refund PolicyWe want you to have a great experience. Here is how refunds work:Automatic RefundsIf you purchase a virtual number and do not receive an SMS within the allotted time, the order will be automatically cancelled and the funds returned to your balance immediately.Manual CancellationYou can manually cancel an active order at any time before receiving an SMS. The refund is instant and goes back to your account balance.Non-Refundable CasesOrders where the SMS was successfully received and displayed.Completed orders (you received the code and used it).If you believe there was an error, please contact our support team through the chat.
Understanding SMS ActivationSMS activation is a service that provides you with temporary virtual phone numbers to receive SMS verification codes from various online platforms.Why Use SMS Activation?Privacy — Keep your personal phone number private when signing up for services.Multiple Accounts — Create accounts on platforms that require unique phone numbers.International Numbers — Access numbers from countries around the world.No SIM Card Needed — Everything works online, no physical SIM card required.How It WorksChoose a service (e.g., WhatsApp, Google, Telegram)Select a country for your virtual numberPurchase the numberUse it to receive the verification SMSThe number expires after useIt is fast, affordable, and completely automated.
Two-Factor Authentication (2FA)Adding 2FA to your account significantly improves security. Here is how to enable it:Go to Settings > Two-Factor Authentication.Click "Enable" to start the setup.Scan the QR code with an authenticator app (Google Authenticator, Authy, etc.).Enter the 6-digit code from the app to confirm.Save your recovery codes in a safe place — you will need them if you lose access to your authenticator app.Supported Authenticator AppsGoogle Authenticator (iOS / Android)Authy (iOS / Android / Desktop)Microsoft Authenticator1PasswordOnce enabled, you will be asked for a verification code every time you log in.
Password ResetIf you have forgotten your password, follow these steps:Go to the login page and click "Forgot Password?".Enter the email address associated with your account.Check your email for a password reset link.Click the link and enter your new password.Log in with your new password.Tips for a Strong PasswordUse at least 8 characters.Include uppercase and lowercase letters, numbers, and special characters.Do not reuse passwords from other services.Consider using a password manager.If you do not receive the reset email, check your spam folder or contact support.
API Quick StartOur RESTful API allows you to integrate SMS verification directly into your application.Step 1: Get Your API KeyGo to Dashboard > API Keys and create a new API key. Keep it safe — it cannot be shown again.Step 2: AuthenticationAll API requests require a Bearer token in the Authorization header:Authorization: Bearer YOUR_API_KEYStep 3: Create an OrderSend a POST request to create a new activation order:POST /api/activations/orders\n{\n "service_id": 1,\n "country_id": 1\n}Step 4: Check for SMSPoll the order endpoint to check for incoming messages:GET /api/activations/orders/{id}For full API documentation, visit our API Docs page.
Creating Your AccountGetting started is easy! Follow these simple steps:Visit the registration page — Click the "Register" button in the top right corner.Fill in your details — Enter your email address and choose a strong password.Verify your email — Check your inbox for a verification link and click it.Start using the service — Once verified, you can add funds and start purchasing virtual numbers.You can also sign up using your Google or Apple account for faster registration.TipsUse a valid email address you have access to — you will need it for password recovery.Enable two-factor authentication for extra security.
Troubleshooting: SMS Not ReceivedSometimes SMS delivery can be delayed. Here are steps you can take:Wait a Few MinutesSome services take up to 5 minutes to send the verification SMS. Be patient and wait.Check the Order StatusMake sure your order is still active in the dashboard. If it has expired, you will need to purchase a new number.Try a Different CountrySome services block certain countries. Try purchasing a number from a different country.Cancel and RetryIf the SMS does not arrive within a reasonable time, cancel the order (you will get a full refund) and try again with a different number.Contact SupportIf the issue persists, chat with our support agent — we are here to help 24/7.
API Rate LimitsTo ensure fair usage and service stability, API requests are rate-limited:EndpointRate LimitGET endpoints60 requests/minutePOST endpoints30 requests/minuteBest PracticesUse webhooks — Instead of polling, configure webhooks to get notified when an SMS arrives.Cache responses — Cache service and country lists as they do not change frequently.Handle errors gracefully — Always check the HTTP status code and implement retry logic with exponential backoff for 429 (Too Many Requests) responses.Use idempotency — For critical operations, include an idempotency key to prevent duplicate orders.Error Codes401 — Invalid or missing API key422 — Validation error (check the response body for details)429 — Rate limit exceeded500 — Server error (retry after a short delay)