cURL
curl --request GET \
--url 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}'
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
import requests
url = 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}'
headers = {
'Authorization': 'Bearer {api_key}',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
print(response.json())
<?php
$ch = curl_init('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer {api_key}',
'Accept: application/json',
],
]);
echo curl_exec($ch);
curl_close($ch);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}", nil)
req.Header.Set("Authorization", "Bearer {api_key}")
req.Header.Set("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"))
.header("Authorization", "Bearer {api_key}")
.header("Accept", "application/json")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = HttpClient.newHttpClient()
.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer {api_key}");
client.DefaultRequestHeaders.Add("Accept", "application/json");
var response = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"));
Console.WriteLine(await response.Content.ReadAsStringAsync());
require 'net/http'
require 'uri'
uri = URI('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}')
req = Net::HTTP::Get.new(uri)
req['Authorization'] = 'Bearer {api_key}'
req['Accept'] = 'application/json'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }
puts res.body
{
"data": {
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2026-01-15 12:00:00"
}
}
Notification handlers
Retrieve one
Notification handlers — Retrieve one. GET /notification-handlers/{notification_handler_id}
GET
/
notification-handlers
/
{notification_handler_id}
cURL
curl --request GET \
--url 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}'
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
import requests
url = 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}'
headers = {
'Authorization': 'Bearer {api_key}',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
print(response.json())
<?php
$ch = curl_init('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer {api_key}',
'Accept: application/json',
],
]);
echo curl_exec($ch);
curl_close($ch);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}", nil)
req.Header.Set("Authorization", "Bearer {api_key}")
req.Header.Set("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"))
.header("Authorization", "Bearer {api_key}")
.header("Accept", "application/json")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = HttpClient.newHttpClient()
.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer {api_key}");
client.DefaultRequestHeaders.Add("Accept", "application/json");
var response = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"));
Console.WriteLine(await response.Content.ReadAsStringAsync());
require 'net/http'
require 'uri'
uri = URI('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}')
req = Net::HTTP::Get.new(uri)
req['Authorization'] = 'Bearer {api_key}'
req['Accept'] = 'application/json'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }
puts res.body
{
"data": {
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2026-01-15 12:00:00"
}
}
Interactive playground for
GET /notification-handlers/{notification_handler_id}.
Paste your API key in the Authorization field as
Bearer {api_key}.cURL
curl --request GET \
--url 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}' \
--header 'Authorization: Bearer {api_key}'
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
const response = await fetch('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer {api_key}',
Accept: 'application/json'
}
});
const data = await response.json();
console.log(data);
import requests
url = 'https://api.kloo.li/v1/notification-handlers/{notification_handler_id}'
headers = {
'Authorization': 'Bearer {api_key}',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
print(response.json())
<?php
$ch = curl_init('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer {api_key}',
'Accept: application/json',
],
]);
echo curl_exec($ch);
curl_close($ch);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}", nil)
req.Header.Set("Authorization", "Bearer {api_key}")
req.Header.Set("Accept", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"))
.header("Authorization", "Bearer {api_key}")
.header("Accept", "application/json")
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = HttpClient.newHttpClient()
.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer {api_key}");
client.DefaultRequestHeaders.Add("Accept", "application/json");
var response = await client.SendAsync(new HttpRequestMessage(HttpMethod.Get, "https://api.kloo.li/v1/notification-handlers/{notification_handler_id}"));
Console.WriteLine(await response.Content.ReadAsStringAsync());
require 'net/http'
require 'uri'
uri = URI('https://api.kloo.li/v1/notification-handlers/{notification_handler_id}')
req = Net::HTTP::Get.new(uri)
req['Authorization'] = 'Bearer {api_key}'
req['Accept'] = 'application/json'
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }
puts res.body
{
"data": {
"id": 1,
"type": "email",
"name": "Work email",
"settings": {
"email": "hey@example.com"
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2026-01-15 12:00:00"
}
}
Authorizations
Get your API key at https://kloo.li/account-api. Use Authorization: Bearer {api_key}.
Path Parameters
Resource identifier
Response
Success
⌘I

