SMSpy Testing Sandbox
Test SMSpy's monitoring and analysis capabilities in a secure environment without impacting real data. Simulate scenarios and explore APIs to understand how they integrate into your workflows.
How to use SandboxStart Testing
Use the form below to simulate an SMS monitoring session. This sandbox uses dummy data for security and ethical compliance.
Note: This sandbox only simulates SMS monitoring. No real data is collected or stored. Use it responsibly for testing purposes only.
Try Our APIs
Use the sandbox to test SMSpy's REST API endpoints without an account. Below are simple example requests that you can run here.
// Start Monitoring
fetch('https://api.smspy.com/monitor/start', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_SANDBOX_TOKEN' },
body: JSON.stringify({ targetNumber: '+1234567890' })
}).then(res => res.json()).then(data => console.log(data));
// Retrieve Recent SMS Data
fetch('https://api.smspy.com/monitor/data', {
method: 'GET',
headers: { 'Authorization': 'Bearer YOUR_SANDBOX_TOKEN', 'Range': 'last 24h' }
}).then(res => res.json()).then(data => console.log("Recent Activity:", data));
Replace YOUR_SANDBOX_TOKEN with a dummy API key. No real API authentication is enforced in the sandbox.
View Full API ReferenceTest Results
No simulations have been run yet. Run the "Simulate Activity" button above to see output here.