List subscriptions
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/webhooks/subscriptions \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/subscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://qa-api.endl.xyz/api/v0/webhooks/subscriptions")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"status": "SUCCESS",
"data": {
"subscriptions": [
{
"id": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"deliveryMode": "PUSH",
"target": "https://api.acme.com/webhooks/endl",
"eventFilter": [
"payout.completed",
"payout.failed"
],
"schemaVersion": "1.0",
"status": "ACTIVE",
"secretHint": "whsec_…5RtBw",
"createdOn": "2026-09-02T12:34:56.789Z"
}
],
"totalCount": 1
},
"errors": []
}Returns all your non-deleted subscriptions, newest first. Never includes webhook_secret. There is no pagination — you get everything.
GET
/
api
/
v0
/
webhooks
/
subscriptions
List subscriptions
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/webhooks/subscriptions \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/subscriptions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://qa-api.endl.xyz/api/v0/webhooks/subscriptions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://qa-api.endl.xyz/api/v0/webhooks/subscriptions")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/subscriptions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"status": "SUCCESS",
"data": {
"subscriptions": [
{
"id": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"deliveryMode": "PUSH",
"target": "https://api.acme.com/webhooks/endl",
"eventFilter": [
"payout.completed",
"payout.failed"
],
"schemaVersion": "1.0",
"status": "ACTIVE",
"secretHint": "whsec_…5RtBw",
"createdOn": "2026-09-02T12:34:56.789Z"
}
],
"totalCount": 1
},
"errors": []
}Authorizations
Your partner API key. Requires the webhooks permission, or events for the PULL feed.
Response
Your subscriptions.