DEV Community

Sim7
Sim7

Posted on

SMS-Activate Shut Down — A Working Alternative With Live Stock and a Real API

SMS-Activate went dark in late December 2025. If your scripts or daily activations broke overnight, you are not alone. Their site now shows an official closure notice: operations stopped as of December 22, and they point former users elsewhere.

I've been using Sim7 as a replacement. What mattered for me:

  • 145 countries, catalog refreshed hourly from live inventory
  • 1200+ services (Telegram, Google, Instagram, OpenAI, etc.)
  • Pay-as-you-go from about $0.008 — no subscription
  • Refund when the SMS never shows up
  • Public REST API + webhooks

Example:

curl -s https://sim7.org/api/v1/numbers \
  -H "Authorization: Bearer $SIM7_KEY" \
  -d service=telegram \
  -d country=russia
Enter fullscreen mode Exit fullscreen mode

How I migrate in practice:

  1. Create an account and top up a few dollars
  2. Map old service/country codes to the Sim7 catalog
  3. Prefer webhooks over polling when you can
  4. Keep a second provider as failover — never single-source OTPs again

Disclosure: I work on Sim7.

Start here: https://sim7.org/

Top comments (0)