Skip to main content
GET
/
v4
/
subscribers
/
{subscriber_id}
/
stats
List stats for a subscriber
curl --request GET \
  --url https://api.kit.com/v4/subscribers/{subscriber_id}/stats \
  --header 'X-Kit-Api-Key: <api-key>'
require 'uri'
require 'net/http'

url = URI("https://api.kit.com/v4/subscribers/{subscriber_id}/stats")

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

request = Net::HTTP::Get.new(url)
request["X-Kit-Api-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
const options = {method: 'GET', headers: {'X-Kit-Api-Key': '<api-key>'}};

fetch('https://api.kit.com/v4/subscribers/{subscriber_id}/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.kit.com/v4/subscribers/{subscriber_id}/stats"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-Kit-Api-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kit.com/v4/subscribers/{subscriber_id}/stats",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Kit-Api-Key: <api-key>"
],
]);

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

curl_close($curl);

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

url = "https://api.kit.com/v4/subscribers/{subscriber_id}/stats"

headers = {"X-Kit-Api-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "subscriber": {
    "id": 1097,
    "stats": {
      "sent": 2,
      "opened": 1,
      "clicked": 1,
      "bounced": 1,
      "open_rate": 0.5,
      "click_rate": 0.5,
      "last_sent": "2025-07-13T12:00:00Z",
      "last_opened": "2025-07-13T12:00:00Z",
      "last_clicked": "2025-07-14T12:00:00Z",
      "sends_since_last_open": 0,
      "sends_since_last_click": 0
    }
  }
}
{
"errors": [
"The access token is invalid"
]
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Path Parameters

subscriber_id
integer
required

Query Parameters

email_sent_after
string

Filter to stats for emails sent after this date (YYYY-MM-DD)/nNOTE: This will only include stats for emails sent in the last 5 years.

email_sent_before
string

Filter to stats for emails sent before this date (YYYY-MM-DD)/nNote: Only data for events in the last 5 years will be included.

Response

Returns the stats for a subscriber

subscriber
object
required