JSON String Escaper
Escape newlines, quotes, and special characters so message text drops straight into a "text" field in an API request body.
"Hey! Your order is ready.\nReply \"YES\" to confirm — or tap here: https://example.com/track"
Hey! Your order is ready.\nReply \"YES\" to confirm — or tap here: https://example.com/track
Dropped into a Request Body
{
"chatId": "14155552671",
"text": "Hey! Your order is ready.\nReply \"YES\" to confirm — or tap here: https://example.com/track",
"session": "default"
}Send It via the API
Paste the escaped string into a POST /v1/sendText body and it's ready to send.