Skip to main content

Getting Started

Draft

This is a structural skeleton. Documentation content is authored separately as Markdown/MDX — see docs/_templates/page-template.mdx.

Get from zero to a delivered SMS with a single API call. This guide covers creating an API key, installing an SDK and sending your first message.

Example

Send an SMS in your language of choice:

curl https://api.msgly.live/v1/messages \
-H "Authorization: Bearer $MSGLY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "+48512345678",
"from": "Msgly",
"text": "Your Msgly code is 4921"
}'

How it works