Open MobileApi
The Android app starts, requests the right permissions, and prepares a device-specific API route.
Android release coming soon
A React Native device bridge solution for contacts, SMS, and real-time mobile API workflows.
Turn an Android phone into an API-connected execution node. Fetch consent-based contact data and send SMS messages through native Android actions triggered by webhook-style backend calls.
https://render-webhook-mobileapi.onrender.com/device/contacts/device_7f4a/device/contacts/:id/send/sms/:id/{ status: "sent" }How it works
MobileApi keeps device-side work where it belongs: on the phone. The backend coordinates requests, while the Android app handles permissions, contact reads, SMS dispatch, and socket responses.
The Android app starts, requests the right permissions, and prepares a device-specific API route.
A persistent Socket.IO connection keeps the phone available to the remote backend while it is online.
Backend endpoints emit contact or SMS jobs toward the connected device.
The phone executes native Android actions and sends the response back through the socket.
Feature highlights
The current solution brings device registration, contacts retrieval, SMS sending, local theme storage, and in-app endpoint documentation into one connected Android workflow.
Real-time Socket.IO bridge
Device-specific API URLs
Android contacts access
Native SMS dispatch
In-app API documentation
Saved light and dark themes
API preview
GET https://render-webhook-mobileapi.onrender.com/device/contacts/:id
Response
{
"status": "success",
"data": [
{
"name": "Demo Contact",
"phoneNumber": "+1 555 010 2040"
}
]
}POST https://render-webhook-mobileapi.onrender.com/send/sms/:id/
Content-Type: application/json
{
"phoneNumber": "+1 555 010 3090",
"message": "Demo message"
}
Response
{
"success": true,
"deviceResponse": {
"status": "sent"
}
}Technical stack
MobileApi is an active connected-device API solution preparing for Android release. The next hardening steps are stronger authentication, backend authorization, improved permission UX, and broader tests.
Release status
Contacts and SMS actions require Android permissions and should be used only with test data or consent-based devices. MobileApi is built as a device-owner controlled solution for webhook-driven mobile actions. For more information, contact tilki00aydin@hotmail.com.
Read the MobileApi Privacy Policy.