SIMUB

SIMUB activation API

Integrate SIMUB SMS and temporary mail activations with documented authentication, lifecycle, error handling and safe server-side examples.

Authentication and endpoint choice

Protected requests use the API key associated with your verified SIMUB account. Send it only over HTTPS and keep it in a server-side secret store or environment variable; never embed it in client code, a public repository or a screenshot. The SMSHub-compatible handler receives action as a parameter, while SIMUB SMS routes put it in the path. Choose one interface and parse its documented response format.

  • Use /stubs/handler_api.php for an existing SMSHub-style client that sends action, api_key and action-specific parameters.
  • Use /api/sms/{action} when a direct SIMUB SMS route better fits your server application.
  • Use the dedicated /api/mail endpoints for temporary mail; SMS activation identifiers and mail identifiers are separate.

Discover services, countries, prices and balance first

Call getBalance for available funds, getServices or getServicesList for current service codes, and getCountries for supported country codes. Choose getPrices, getPricesV2 or getPricesV3 for the response shape your integration expects. Catalogs, counts and prices are provider snapshots: cache them briefly, display the returned price when relevant and revalidate before purchase. Never invent a code from a visible label.

Core SMS activation lifecycle

A purchase and a status check are different operations. Persist the activation identifier immediately so an application timeout does not lose a reserved number.

  • Select a documented service and country, inspect current price and stock, then call getNumber, getNumberV2 or getNumberV3 once.
  • Parse ACCESS_NUMBER:ID:NUMBER or the documented JSON equivalent and store the activation ID with your internal request reference.
  • Poll getStatus with that ID. STATUS_WAIT_CODE means the request is still waiting; STATUS_OK:CODE contains a received code.
  • Use setStatus only for a transition allowed by the reference: 1 ready, 3 request another SMS, 6 complete or 8 cancel. Do not reuse the number for another service.

Statuses, errors and uncertain requests

SMSHub-compatible actions can return text tokens, while newer routes may return JSON. Correct or rotate a BAD_KEY credential instead of retrying. BAD_SERVICE means an action or service is unsupported. NO_BALANCE requires funding; NO_NUMBERS means no matching offer is currently available; BAD_STATUS marks an invalid transition. After a timeout, reset or server error on getNumber, reconcile through the stored activation or status before purchasing again. A blind retry can create a duplicate reservation.

अस्थायी ई-मेल सक्रियण प्रवाह

ई-मेल सक्रियण अलग रूट और JSON प्रतिक्रियाएँ उपयोग करता है। सेवाओं, डोमेन, कीमत और स्टॉक के लिए getPriceRests, getPrices या getRests कॉल करें। getActivation से मिला mailId सुरक्षित रखें। स्थिति के लिए getStatus और प्राप्त कोड के लिए getCode उपयोग करें। setStatus और requestRefund वर्तमान स्थिति तथा प्रकाशित नीति के अनुसार होने चाहिए। अस्थायी मेलबॉक्स स्थायी इनबॉक्स या सुरक्षित रिकवरी पता नहीं है।

सुरक्षित अनुरोध उदाहरण

नीचे दिए मान जानबूझकर अमान्य प्लेसहोल्डर हैं। इन्हें केवल सुरक्षित सर्वर वातावरण में बदलें। curl उदाहरण पैरामीटर अलग-अलग एन्कोड करते हैं और URL को हाथ से नहीं जोड़ते।

  • बैलेंस: curl --get 'https://api.simub.com/stubs/handler_api.php' --data-urlencode 'api_key=YOUR_API_KEY' --data-urlencode 'action=getBalance'
  • नंबर आरक्षित करें: curl --get 'https://api.simub.com/stubs/handler_api.php' --data-urlencode 'api_key=YOUR_API_KEY' --data-urlencode 'action=getNumber' --data-urlencode 'service=tg' --data-urlencode 'country=0'
  • SMS स्थिति पढ़ें: curl --get 'https://api.simub.com/stubs/handler_api.php' --data-urlencode 'api_key=YOUR_API_KEY' --data-urlencode 'action=getStatus' --data-urlencode 'id=ACTIVATION_ID'
  • ई-मेल स्थिति पढ़ें: curl --get 'https://simub.com/api/mail/getStatus' --data-urlencode 'api_key=YOUR_API_KEY' --data-urlencode 'id=MAIL_ACTIVATION_ID'

विश्वसनीयता, सुरक्षा और जिम्मेदार उपयोग

सीमित टाइमआउट रखें, स्थिति पोलिंग में सीमित घातीय बैकऑफ उपयोग करें और अंतिम स्थिति पर रुकें। लॉग से api_key, फोन नंबर, पते और प्राप्त कोड हटाएँ। प्रतिक्रियाएँ सत्यापित करें और एक साथ खरीद सीमित रखें। स्टॉक, नेटवर्क और फ़िल्टर बदलते हैं; उपलब्धता या कोड डिलीवरी की गारंटी नहीं है।

अक्सर पूछे जाने वाले प्रश्न

SIMUB API कुंजी कहाँ रखनी चाहिए?

सर्वर-साइड सीक्रेट मैनेजर या सुरक्षित पर्यावरण चर में रखें। पहुँच सीमित करें और इसे लॉग या क्लाइंट कोड में कभी न डालें।

getStatus कितनी बार कॉल करना चाहिए?

मध्यम अंतराल और सीमित बैकऑफ के साथ पोल करें तथा अंतिम प्रतिक्रिया पर रुकें।

क्या सफल नंबर आरक्षण SMS कोड की गारंटी देता है?

नहीं। यह केवल नंबर आवंटन की पुष्टि करता है; डिलीवरी बाहरी नेटवर्क और प्लेटफ़ॉर्म नियमों पर निर्भर है।

क्या timeout के बाद getNumber फिर चला सकता हूँ?

दोहरी फीस से बचने के लिए पहले सुरक्षित ID, इतिहास या स्थिति से जाँचें कि सक्रियण पहले से बना तो नहीं है।