Get WhatsApp
Retrieve the current delivery state of a single transactional WhatsApp message.
Endpoint
GET /whatsapp/:id
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The message ID returned from POST /whatsapp/send |
Response
{
"id": "01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a",
"to": "+966512345678",
"templateName": "verification_code",
"language": "en",
"category": "AUTHENTICATION",
"status": "read",
"failureReason": null,
"sentAt": "2026-03-08T12:00:03.000Z",
"createdAt": "2026-03-08T12:00:00.000Z"
}
Status Values
status advances as the provider reports each step. It is not guaranteed to reach read — that depends on the recipient's privacy settings.
| Status | Description |
|---|---|
queued | Accepted by Arsel, not yet handed to the provider |
sent | The provider accepted it and returned a message ID |
delivered | Confirmed delivered to the recipient's device |
read | The recipient opened the message |
failed | The send failed — see failureReason |
Template parameters are never returned
parameters is deliberately absent from every response. For an authentication template that field holds the one-time code, and an endpoint that reads codes back out would turn a leaked API key into an account-takeover tool.
Examples
- cURL
- JavaScript
- Python
- C#
- PHP
curl "https://api.arsel.sa/v1/whatsapp/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a" \
-H "Authorization: Bearer be_your_api_key"
const response = await fetch(
"https://api.arsel.sa/v1/whatsapp/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a",
{ headers: { Authorization: "Bearer be_your_api_key" } },
);
const message = await response.json();
console.log(message.status);
import requests
response = requests.get(
"https://api.arsel.sa/v1/whatsapp/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a",
headers={"Authorization": "Bearer be_your_api_key"},
)
print(response.json()["status"])
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer be_your_api_key");
var response = await client.GetAsync(
"https://api.arsel.sa/v1/whatsapp/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a");
Console.WriteLine(await response.Content.ReadAsStringAsync());
<?php
$ch = curl_init("https://api.arsel.sa/v1/whatsapp/01957e3a-4b5c-7d8e-9f0a-1b2c3d4e5f6a");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Authorization: Bearer be_your_api_key"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
echo $response;
curl_close($ch);
Error Responses
- 404 Not Found
- 401 Unauthorized
{
"status_code": 404,
"name": "not_found",
"message": "Message not found"
}
{
"status_code": 401,
"name": "unauthorized",
"message": "Invalid or missing API key"
}