Headline numbers
curl --request GET \
--url https://explorer-explorer.up.railway.app/statsimport requests
url = "https://explorer-explorer.up.railway.app/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/stats', 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://explorer-explorer.up.railway.app/stats",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://explorer-explorer.up.railway.app/stats"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://explorer-explorer.up.railway.app/stats")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/stats")
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{
"totalPayments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"byScheme": {
"exact": 653,
"upto": 22
},
"byConfidence": {
"rail402": 45,
"verified-facilitator": 565,
"x402-shaped": 65
},
"byAsset": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"asset": "<string>"
}
],
"firstPaymentAt": "2023-11-07T05:31:56Z",
"lastPaymentAt": "2023-11-07T05:31:56Z",
"networks": [
"<string>"
],
"ingest": [
{
"network": "<string>",
"consecutiveFailures": 123,
"epoch": "<string>",
"lastLedger": 123,
"lastPollAt": "2023-11-07T05:31:56Z",
"lastError": "<string>",
"backfill": "<string>"
}
]
}payments
Headline numbers
GET
/
stats
Headline numbers
curl --request GET \
--url https://explorer-explorer.up.railway.app/statsimport requests
url = "https://explorer-explorer.up.railway.app/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/stats', 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://explorer-explorer.up.railway.app/stats",
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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://explorer-explorer.up.railway.app/stats"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://explorer-explorer.up.railway.app/stats")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/stats")
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{
"totalPayments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"byScheme": {
"exact": 653,
"upto": 22
},
"byConfidence": {
"rail402": 45,
"verified-facilitator": 565,
"x402-shaped": 65
},
"byAsset": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"asset": "<string>"
}
],
"firstPaymentAt": "2023-11-07T05:31:56Z",
"lastPaymentAt": "2023-11-07T05:31:56Z",
"networks": [
"<string>"
],
"ingest": [
{
"network": "<string>",
"consecutiveFailures": 123,
"epoch": "<string>",
"lastLedger": 123,
"lastPollAt": "2023-11-07T05:31:56Z",
"lastError": "<string>",
"backfill": "<string>"
}
]
}Query Parameters
Scope every aggregate (totalPayments, uniqueBuyers, uniqueSellers, byScheme,
byConfidence, byAsset, first/lastPaymentAt) to the trailing window; the response
echoes window when set. Omit for all-time.
Available options:
24h, 7d, 30d Response
200 - application/json
Aggregates plus ingest health
Show child attributes
Show child attributes
Example:
{ "exact": 653, "upto": 22 }
Show child attributes
Show child attributes
Example:
{ "rail402": 45, "verified-facilitator": 565, "x402-shaped": 65 }
Show child attributes
Show child attributes
Earliest observed payment — the "data since" anchor. On mainnet this is the complete-history first for every watched/verified operator (Horizon retains full history); on testnet nothing older can exist (a chain reset wipes all upstream sources). It is an observation floor, not a network-wide "first ever" guarantee.
Show child attributes
Show child attributes
⌘I