Skip to main content
GET
https://sendazi.com/api/v1
/
sms-campaigns
List SMS Campaigns
curl --request GET \
  --url https://sendazi.com/api/v1/sms-campaigns
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sendazi.com/api/v1/sms-campaigns",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests

url = "https://sendazi.com/api/v1/sms-campaigns"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://sendazi.com/api/v1/sms-campaigns', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
HttpResponse<String> response = Unirest.get("https://sendazi.com/api/v1/sms-campaigns")
.asString();
const url = 'https://sendazi.com/api/v1/sms-campaigns';
const options = {method: 'GET'};

fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
require 'uri'
require 'net/http'

url = URI("https://sendazi.com/api/v1/sms-campaigns")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 3,
        "uuid": "c6c2f78c-fd96-4c46-806b-f42db252d67d",
        "name": "test",
        "total_recipients": 1,
        "messages_sent": 0,
        "credits_used": "0.00",
        "sender_id": "SIRATEQ GH",
        "created_at": "2026-01-01T01:37:19.000000Z",
        "updated_at": "2026-01-01T01:37:25.000000Z",
        "scheduled_at": null,
        "status": "failed",
        "is_recurring": false,
        "recurrence_frequency": "daily",
        "recurrence_interval": 1,
        "recurrence_ends_at": null,
        "started_at": null,
        "ended_at": "2026-01-01 01:37:25"
      }
    ],
    "first_page_url": "https://sendazi.com/api/v1/sms-campaigns?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "https://sendazi.com/api/v1/sms-campaigns?page=1",
    "next_page_url": null,
    "path": "https://sendazi.com/api/v1/sms-campaigns",
    "per_page": 10,
    "prev_page_url": null,
    "to": 3,
    "total": 3
  }
}
page
integer
default:"1"
Page number for pagination
per_page
integer
default:"10"
Number of items per page
{
  "success": true,
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 3,
        "uuid": "c6c2f78c-fd96-4c46-806b-f42db252d67d",
        "name": "test",
        "total_recipients": 1,
        "messages_sent": 0,
        "credits_used": "0.00",
        "sender_id": "SIRATEQ GH",
        "created_at": "2026-01-01T01:37:19.000000Z",
        "updated_at": "2026-01-01T01:37:25.000000Z",
        "scheduled_at": null,
        "status": "failed",
        "is_recurring": false,
        "recurrence_frequency": "daily",
        "recurrence_interval": 1,
        "recurrence_ends_at": null,
        "started_at": null,
        "ended_at": "2026-01-01 01:37:25"
      }
    ],
    "first_page_url": "https://sendazi.com/api/v1/sms-campaigns?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "https://sendazi.com/api/v1/sms-campaigns?page=1",
    "next_page_url": null,
    "path": "https://sendazi.com/api/v1/sms-campaigns",
    "per_page": 10,
    "prev_page_url": null,
    "to": 3,
    "total": 3
  }
}