The facilitator registry with per-facilitator stats
curl --request GET \
--url https://explorer-explorer.up.railway.app/facilitatorsimport requests
url = "https://explorer-explorer.up.railway.app/facilitators"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/facilitators', 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/facilitators",
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/facilitators"
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/facilitators")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/facilitators")
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{
"facilitators": [
{
"id": "x402-org",
"baseUrl": "https://x402.org/facilitator",
"verified": true,
"signers": [
"<string>"
],
"uptoContracts": [
"<string>"
],
"networks": [
"<string>"
],
"createdAt": "2023-11-07T05:31:56Z",
"stats": {
"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"
},
"displayName": "x402.org",
"lastSeenAt": "2023-11-07T05:31:56Z",
"lastError": "<string>"
}
]
}entities
The facilitator registry with per-facilitator stats
GET
/
facilitators
The facilitator registry with per-facilitator stats
curl --request GET \
--url https://explorer-explorer.up.railway.app/facilitatorsimport requests
url = "https://explorer-explorer.up.railway.app/facilitators"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://explorer-explorer.up.railway.app/facilitators', 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/facilitators",
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/facilitators"
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/facilitators")
.asString();require 'uri'
require 'net/http'
url = URI("https://explorer-explorer.up.railway.app/facilitators")
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{
"facilitators": [
{
"id": "x402-org",
"baseUrl": "https://x402.org/facilitator",
"verified": true,
"signers": [
"<string>"
],
"uptoContracts": [
"<string>"
],
"networks": [
"<string>"
],
"createdAt": "2023-11-07T05:31:56Z",
"stats": {
"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"
},
"displayName": "x402.org",
"lastSeenAt": "2023-11-07T05:31:56Z",
"lastError": "<string>"
}
]
}Response
200 - application/json
All registered facilitators
Show child attributes
Show child attributes
⌘I