Read the PULL feed
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/events \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/events"
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/events', 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/events",
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/events"
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/events")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/events")
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": {
"events": [
{
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"eventCreatedAt": "2026-09-02T14:03:11.482Z",
"version": "1.0",
"data": {
"referenceId": "c2608cc2-084b-41d1-8be2-c4f3abd55e5a",
"referenceType": "TRANSACTION",
"amount": "1500.00"
}
}
],
"count": 1,
"nextCursor": "eyJ1IjoiRVZFTlRTIn0.a3f9c1e8d0"
},
"errors": []
}Reads events from the PULL feed instead of receiving them at a URL. Requires a live PULL subscription and the events permission.
PULL responses are unsigned — you are reading from Endl over an authenticated connection, so there is no signature to verify.
GET
/
api
/
v0
/
events
Read the PULL feed
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/events \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/events"
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/events', 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/events",
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/events"
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/events")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/events")
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": {
"events": [
{
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"eventCreatedAt": "2026-09-02T14:03:11.482Z",
"version": "1.0",
"data": {
"referenceId": "c2608cc2-084b-41d1-8be2-c4f3abd55e5a",
"referenceType": "TRANSACTION",
"amount": "1500.00"
}
}
],
"count": 1,
"nextCursor": "eyJ1IjoiRVZFTlRTIn0.a3f9c1e8d0"
},
"errors": []
}Authorizations
Your partner API key. Requires the webhooks permission, or events for the PULL feed.
Query Parameters
Filter by event type. Repeatable.
Pagination cursor.
Page size, maximum 100.
Required range:
x <= 100Response
A page of events.