Choose a Number to Receive SMS
Pick a country and select from our free disposable numbers. No signup required!
Select Country
Available Numbers
How JunkSMS Works
Choose a phone number
Select from our pool of active phone numbers from different countries. No signup required.
Use it anywhere
Enter the phone number when signing up for services that require SMS verification.
Get your messages
View all SMS messages sent to that number in real-time. Messages expire after 24 hours.
Why Use JunkSMS?
Privacy Protection
Keep your personal phone number private when signing up for new services.
SMS Verification
Receive verification codes for apps, websites, and online services.
Avoid Spam
Prevent marketing messages and spam from reaching your real phone number.
Completely Free
No registration, no fees, no limits. Use as many numbers as you need.
Need a free disposable email address?
Try JunkInbox.cc - our sister service for disposable email addresses
Need Privacy? Get Your Private Number
Upgrade to JunkSMS Premium for private SMS reception that only you can access.
Completely Private
Only you can see messages sent to your number
Dedicated Number
Your own phone number, not shared with anyone
Message History
Access all your messages anytime in your dashboard
Full Control
Manage renewals, releases, and settings
Cancel anytime • No setup fees
Advertisement
Build with JunkSMS
Integrate disposable phone numbers into your applications with our simple REST API.
# Get available numbers
curl https://junksms.cc/api/numbers
# Get messages for a specific number
curl https://junksms.cc/api/inbox/+12125551001/messages
// Get available numbers
const response = await fetch('https://junksms.cc/api/numbers');
const numbers = await response.json();
// Get messages
const messages = await fetch(`https://junksms.cc/api/inbox/${number}/messages`);
const inbox = await messages.json();
import requests
# Get available numbers
response = requests.get('https://junksms.cc/api/numbers')
numbers = response.json()
# Get messages
messages = requests.get(f'https://junksms.cc/api/inbox/{number}/messages')
inbox = messages.json()
Advertisement