Payment stream, newest first
curl --request GET \
--url https://explorer-explorer.up.railway.app/feedimport requests
url = "https://explorer-explorer.up.railway.app/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/feed', 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/feed",
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/feed"
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/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/feed")
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{
"items": [
{
"network": "stellar:testnet",
"epoch": "<string>",
"ledger": 123,
"txHash": "c827992c48bfe911a9b68abcef62e135b2b9555e5211f5c0ea0cdecb3aa8d558",
"buyer": "<string>",
"seller": "<string>",
"amount": "3500000",
"amountDecimal": "0.35",
"assetContract": "CBIELTK6YBZJU5UP2WWQEUCYKLPU6AUNZ2BQ4WWFEIE3USCIHMXQDAMA",
"txSource": "<string>",
"facilitator": {
"id": "rail402",
"displayName": "Rail402"
},
"closedAt": "2023-11-07T05:31:56Z",
"ceiling": "10000000",
"ceilingDecimal": "1",
"asset": "USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5",
"assetCode": "USDC",
"feeSource": "<string>",
"feeChargedStroops": "23086",
"sigExpirationLedger": 123,
"memo": "<string>",
"muxedId": "<string>",
"serviceName": "<string>",
"resource": "<string>"
}
],
"nextCursor": "<string>"
}{
"code": "explorer_invalid_query",
"reason": "Query parameter \"scheme\" must be one of exact, upto.",
"retryable": false,
"details": {
"parameter": "scheme",
"value": "bogus"
}
}payments
Payment stream, newest first
Keyset-paginated stream of classified x402 payments. Filters combine with AND. Follow
nextCursor for the next page; its absence means the last page. A cursor is bound to its
ordering only — changing filters with an old cursor is safe but pages may overlap.
GET
/
feed
Payment stream, newest first
curl --request GET \
--url https://explorer-explorer.up.railway.app/feedimport requests
url = "https://explorer-explorer.up.railway.app/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/feed', 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/feed",
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/feed"
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/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/feed")
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{
"items": [
{
"network": "stellar:testnet",
"epoch": "<string>",
"ledger": 123,
"txHash": "c827992c48bfe911a9b68abcef62e135b2b9555e5211f5c0ea0cdecb3aa8d558",
"buyer": "<string>",
"seller": "<string>",
"amount": "3500000",
"amountDecimal": "0.35",
"assetContract": "CBIELTK6YBZJU5UP2WWQEUCYKLPU6AUNZ2BQ4WWFEIE3USCIHMXQDAMA",
"txSource": "<string>",
"facilitator": {
"id": "rail402",
"displayName": "Rail402"
},
"closedAt": "2023-11-07T05:31:56Z",
"ceiling": "10000000",
"ceilingDecimal": "1",
"asset": "USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5",
"assetCode": "USDC",
"feeSource": "<string>",
"feeChargedStroops": "23086",
"sigExpirationLedger": 123,
"memo": "<string>",
"muxedId": "<string>",
"serviceName": "<string>",
"resource": "<string>"
}
],
"nextCursor": "<string>"
}{
"code": "explorer_invalid_query",
"reason": "Query parameter \"scheme\" must be one of exact, upto.",
"retryable": false,
"details": {
"parameter": "scheme",
"value": "bogus"
}
}Query Parameters
CAIP-2 network id
SAC contract address — filters to payments settled in that asset (the stable key;
never a code string). Combinable with every other filter; supply it on every page
alongside cursor, like seller=/buyer=.
Pattern:
^C[A-Z2-7]{55}$Available options:
exact, upto Seller (payTo) address
Buyer address (G… or C…)
Facilitator registry id, e.g. rail402, x402-org
Available options:
rail402, verified-facilitator, x402-shaped Required range:
1 <= x <= 100Opaque keyset cursor from a previous page's nextCursor
⌘I