Skip to main content
GET
https://sendazi.com/api/v1
/
api-keys
List API Keys
curl --request GET \
  --url https://sendazi.com/api/v1/api-keys
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://sendazi.com/api/v1/api-keys",
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/api-keys"

response = requests.get(url)

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

fetch('https://sendazi.com/api/v1/api-keys', 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/api-keys")
.asString();
const url = 'https://sendazi.com/api/v1/api-keys';
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/api-keys")

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": [
    {
      "id": 1,
      "uuid": "f2ed33fd-e4fe-435e-8536-f5f98a155c37",
      "key": "pk_*********************************",
      "status": "active",
      "last_used_at": "2026-01-15T10:00:00.000000Z",
      "created_at": "2026-01-01T00:00:00.000000Z"
    },
    {
      "id": 2,
      "uuid": "30eba0ec-a4cf-485b-9f6b-e8eb308162c1",
      "key": "pk_*********************************",
      "status": "inactive",
      "last_used_at": null,
      "created_at": "2026-01-10T00:00:00.000000Z"
    }
  ]
}
{
  "success": true,
  "data": [
    {
      "id": 1,
      "uuid": "f2ed33fd-e4fe-435e-8536-f5f98a155c37",
      "key": "pk_*********************************",
      "status": "active",
      "last_used_at": "2026-01-15T10:00:00.000000Z",
      "created_at": "2026-01-01T00:00:00.000000Z"
    },
    {
      "id": 2,
      "uuid": "30eba0ec-a4cf-485b-9f6b-e8eb308162c1",
      "key": "pk_*********************************",
      "status": "inactive",
      "last_used_at": null,
      "created_at": "2026-01-10T00:00:00.000000Z"
    }
  ]
}