curl --request POST \
--url https://api.messages.dev/v1/audio-messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "+15551234567",
"to": "+15559876543",
"audio_message": "file_abc123",
"reply_to": "msg_abc123"
}
'import requests
url = "https://api.messages.dev/v1/audio-messages"
payload = {
"from": "+15551234567",
"to": "+15559876543",
"audio_message": "file_abc123",
"reply_to": "msg_abc123"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
from: '+15551234567',
to: '+15559876543',
audio_message: 'file_abc123',
reply_to: 'msg_abc123'
})
};
fetch('https://api.messages.dev/v1/audio-messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.messages.dev/v1/audio-messages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'from' => '+15551234567',
'to' => '+15559876543',
'audio_message' => 'file_abc123',
'reply_to' => 'msg_abc123'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.messages.dev/v1/audio-messages"
payload := strings.NewReader("{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.messages.dev/v1/audio-messages")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messages.dev/v1/audio-messages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"status": "pending",
"request_id": "<string>"
}{
"error": {
"type": "invalid_request_error",
"code": "missing_required_parameter",
"message": "The 'from' query parameter is required.",
"param": "from"
},
"request_id": "req_abc123"
}{
"error": {
"type": "authentication_error",
"code": "missing_api_key",
"message": "Missing Authorization header. Use 'Authorization: Bearer sk_live_...'"
},
"request_id": "req_abc123"
}{
"error": {
"type": "invalid_request_error",
"code": "contact_has_not_messaged",
"message": "Cannot send to a contact who has not messaged this line first.",
"param": "to"
},
"request_id": "req_abc123"
}{
"error": {
"type": "not_found_error",
"code": "line_not_found",
"message": "Line not found.",
"param": "from"
},
"request_id": "req_abc123"
}Send an audio message
Sends an audio file as a native iMessage audio message (waveform balloon with a play button on the receiver) instead of a generic file pill.
Two-step flow: upload an audio file via POST /v1/files, then pass
the returned file ID as audio_message. Common formats are accepted
— m4a, mp3, wav, caf, aiff. Audio is transcoded server-side, so you
don’t need to pre-encode.
iMessage only — SMS lines are rejected. Some lines don’t support
audio messages; sending from one of those returns
400 advanced_features_required.
Like POST /v1/messages, the contact-first restriction applies: the
recipient must have messaged your line first.
Like all writes, this is asynchronous: returns a delivery ID with
status: "pending". Track via GET /outbox or webhooks.
curl --request POST \
--url https://api.messages.dev/v1/audio-messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "+15551234567",
"to": "+15559876543",
"audio_message": "file_abc123",
"reply_to": "msg_abc123"
}
'import requests
url = "https://api.messages.dev/v1/audio-messages"
payload = {
"from": "+15551234567",
"to": "+15559876543",
"audio_message": "file_abc123",
"reply_to": "msg_abc123"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
from: '+15551234567',
to: '+15559876543',
audio_message: 'file_abc123',
reply_to: 'msg_abc123'
})
};
fetch('https://api.messages.dev/v1/audio-messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.messages.dev/v1/audio-messages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'from' => '+15551234567',
'to' => '+15559876543',
'audio_message' => 'file_abc123',
'reply_to' => 'msg_abc123'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.messages.dev/v1/audio-messages"
payload := strings.NewReader("{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.messages.dev/v1/audio-messages")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messages.dev/v1/audio-messages")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"from\": \"+15551234567\",\n \"to\": \"+15559876543\",\n \"audio_message\": \"file_abc123\",\n \"reply_to\": \"msg_abc123\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"status": "pending",
"request_id": "<string>"
}{
"error": {
"type": "invalid_request_error",
"code": "missing_required_parameter",
"message": "The 'from' query parameter is required.",
"param": "from"
},
"request_id": "req_abc123"
}{
"error": {
"type": "authentication_error",
"code": "missing_api_key",
"message": "Missing Authorization header. Use 'Authorization: Bearer sk_live_...'"
},
"request_id": "req_abc123"
}{
"error": {
"type": "invalid_request_error",
"code": "contact_has_not_messaged",
"message": "Cannot send to a contact who has not messaged this line first.",
"param": "to"
},
"request_id": "req_abc123"
}{
"error": {
"type": "not_found_error",
"code": "line_not_found",
"message": "Line not found.",
"param": "from"
},
"request_id": "req_abc123"
}Authorizations
Use an API key as a bearer token: Authorization: Bearer sk_live_...
Each key has a set of scopes that gate which endpoints it can call:
messages:read, messages:write, chats:read, lines:read,
reactions:read, reactions:write, typing:read, typing:write,
receipts:read, receipts:write, webhooks:read, webhooks:write,
outbox:read, files:read, files:write. Keys can also be restricted
to a subset of lines.
Body
Sender line handle (phone number or Apple ID)
"+15551234567"
Recipient phone number, Apple ID, or chat ID (cht_...)
"+15559876543"
File ID (file_...) of the uploaded audio
"file_abc123"
Message ID (msg_...) or iMessage GUID to reply to
"msg_abc123"