curl --request GET \
--url https://explorer-explorer.up.railway.app/ecosystemimport requests
url = "https://explorer-explorer.up.railway.app/ecosystem"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/ecosystem', 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/ecosystem",
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/ecosystem"
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/ecosystem")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/ecosystem")
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{
"generatedAt": "2023-11-07T05:31:56Z",
"networks": [
"<string>"
],
"coverage": [
{
"network": "<string>",
"watchedSacs": "all"
}
],
"totals": {
"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"
},
"windows": {
"24h": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
},
"7d": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
},
"30d": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
}
},
"facilitators": [
{
"facilitatorId": "<string>",
"payments": 123,
"share": 123,
"windows": {
"24h": 123,
"7d": 123,
"30d": 123
},
"displayName": "<string>",
"verified": true,
"lastPaymentAt": "2023-11-07T05:31:56Z"
}
],
"topSellers": [
{
"network": "<string>",
"payTo": "<string>",
"payments": 123,
"uniqueBuyers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
],
"lastPaymentAt": "2023-11-07T05:31:56Z",
"serviceName": "<string>"
}
]
}The analytics snapshot for a live dashboard
All-time totals, trailing 24h/7d/30d activity windows (with new-participant counts),
facilitator market share, and the most active sellers of the last 30 days — one
poll-friendly response, cached ~15s server-side. coverage states which SAC transfers
this deployment’s tail watches (“all” on testnet; a curated asset list on pubnet), so
absence of a payment is always interpretable.
curl --request GET \
--url https://explorer-explorer.up.railway.app/ecosystemimport requests
url = "https://explorer-explorer.up.railway.app/ecosystem"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/ecosystem', 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/ecosystem",
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/ecosystem"
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/ecosystem")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/ecosystem")
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{
"generatedAt": "2023-11-07T05:31:56Z",
"networks": [
"<string>"
],
"coverage": [
{
"network": "<string>",
"watchedSacs": "all"
}
],
"totals": {
"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"
},
"windows": {
"24h": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
},
"7d": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
},
"30d": {
"payments": 123,
"uniqueBuyers": 123,
"uniqueSellers": 123,
"newBuyers": 123,
"newSellers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
]
}
},
"facilitators": [
{
"facilitatorId": "<string>",
"payments": 123,
"share": 123,
"windows": {
"24h": 123,
"7d": 123,
"30d": 123
},
"displayName": "<string>",
"verified": true,
"lastPaymentAt": "2023-11-07T05:31:56Z"
}
],
"topSellers": [
{
"network": "<string>",
"payTo": "<string>",
"payments": 123,
"uniqueBuyers": 123,
"volume": [
{
"assetContract": "<string>",
"count": 123,
"total": "<string>",
"totalDecimal": "<string>",
"asset": "<string>",
"assetCode": "<string>"
}
],
"lastPaymentAt": "2023-11-07T05:31:56Z",
"serviceName": "<string>"
}
]
}Query Parameters
CAIP-2 network id
Response
The ecosystem snapshot
Which SAC transfers this deployment's tail watches, per network
Show child attributes
Show child attributes
All-time aggregates; byAsset entries additionally carry totalDecimal/assetCode
Show child attributes
Show child attributes
Show child attributes
Show child attributes
All-time share per facilitator, largest first
Show child attributes
Show child attributes
Most active sellers over the trailing 30 days (max 10)
Show child attributes
Show child attributes