{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "x402-dexter-cash-api-tools-x402-scan-stats",
  "title": "Dexter \u00b7 x402 Ecosystem Leaderboard Stats",
  "url": "https://x402.dexter.cash/api/tools/x402/scan/stats",
  "category": "tools",
  "summary": "Query ranked statistics for x402 ecosystem entities: facilitators, servers, agents, and tools. Chain-filterable leaderboard data.",
  "seo": {
    "title": "Dexter x402 Leaderboard Stats API \u2014 x402 Payment Required",
    "description": "Query x402 facilitator, server, agent, and tool leaderboards. Filter by chain, sort direction. Public x402 ecosystem analytics via Dexter."
  },
  "use_cases": [
    "Discover top-performing x402 facilitators for integration decisions",
    "Track agent and tool popularity across Base and Solana",
    "Monitor ecosystem growth via ranked entity statistics"
  ],
  "ideal_buyer": "x402 infrastructure developers and analysts researching ecosystem participants and performance rankings.",
  "example_prompt": "Get the top 10 facilitators on Base sorted by transaction volume",
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 2.5,
    "median_category_atomic": 20000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "verified_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x9421c7ca7d8dcee9760d72be81137ee162003c36",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "50000",
      "max_timeout_seconds": 60,
      "mime_type": "application/json",
      "description": "x402scan facilitator/server/agent/tool leaderboard proxy",
      "verified": true,
      "hints": {
        "input": {
          "type": "http",
          "method": "GET",
          "queryParams": {
            "ids": {
              "type": "string",
              "description": "Comma-separated IDs to filter specific facilitators, servers, agents, or tools."
            },
            "page": {
              "type": "integer",
              "description": "Zero-based page index. Defaults to 0."
            },
            "chain": {
              "type": "string",
              "description": "Optional chain filter (solana, base, polygon, optimism). Only applies to facilitator/server lookups."
            },
            "limit": {
              "type": "integer",
              "description": "Rows per page (1-50). Defaults to 10."
            },
            "entity": {
              "enum": [
                "facilitators",
                "servers",
                "agents",
                "tools"
              ],
              "type": "string",
              "description": "Leaderboard entity to query. Defaults to facilitators."
            },
            "sort_by": {
              "type": "string",
              "description": "Sort key for the entity (facilitators: tx_count, total_amount, latest_block_timestamp, unique_buyers, unique_sellers, etc.)."
            },
            "direction": {
              "enum": [
                "asc",
                "desc"
              ],
              "type": "string",
              "description": "Sort direction (default desc)."
            },
            "timeframe": {
              "type": "string",
              "description": "Rolling window such as 1d, 7d, 30d, or a numeric day count (defaults to 1d)."
            },
            "include_summary": {
              "type": "boolean",
              "description": "true/false. When false, skips the aggregate summary lookup (default true)."
            }
          },
          "discoverable": true
        },
        "output": {
          "ok": {
            "type": "boolean",
            "description": "True when the x402scan proxy succeeds."
          },
          "error": {
            "type": "string",
            "description": "Error code when ok=false."
          },
          "items": {
            "type": "array",
            "description": "Entity-specific leaderboard rows (facilitators include metrics + docs, servers show destination wallets, agents/tools expose stats)."
          },
          "query": {
            "type": "object",
            "description": "Echo of the normalized query settings (chain, timeframeDays, limit, etc.)."
          },
          "entity": {
            "enum": [
              "facilitators",
              "servers",
              "agents",
              "tools"
            ],
            "type": "string",
            "description": "Entity returned in the leaderboard payload."
          },
          "source": {
            "type": "object",
            "properties": {
              "service": {
                "type": "string",
                "description": "Upstream service label."
              },
              "endpoint": {
                "type": "string",
                "description": "TRPC procedure invoked (e.g. public.facilitators.list)."
              }
            },
            "description": "Metadata about the upstream x402scan endpoint powering the response."
          },
          "status": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Upstream or timeout HTTP status when ok=false."
          },
          "summary": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "chain": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Chain reflected in the totals."
              },
              "uniqueBuyers": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Unique buyers count."
              },
              "timeframeDays": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Window length in days."
              },
              "uniqueSellers": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Unique sellers count."
              },
              "latestActivity": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "ISO timestamp of the freshest upstream activity."
              },
              "totalAmountUsd": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Aggregate volume in USD."
              },
              "totalAmountMicro": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Aggregate volume in micropennies."
              },
              "totalTransactions": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total transactions observed."
              }
            },
            "description": "Aggregate totals when include_summary=true."
          },
          "fetchedAt": {
            "type": "string",
            "description": "ISO timestamp when the proxy pulled x402scan data."
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer",
                "description": "Current page index."
              },
              "limit": {
                "type": "integer",
                "description": "Items per page."
              },
              "totalCount": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total rows when provided."
              },
              "totalPages": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total page count when provided."
              },
              "hasNextPage": {
                "type": [
                  "boolean",
                  "null"
                ],
                "description": "Whether another page is available."
              }
            },
            "description": "Pagination metadata for the returned list."
          }
        }
      }
    },
    {
      "scheme": "exact",
      "network": "solana",
      "pay_to": "DevFFyNWxZPtYLpEjzUnN1PFc9Po6PH7eZCi9f3tTkTw",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "max_amount_required_atomic": "50000",
      "max_timeout_seconds": 60,
      "mime_type": "application/json",
      "description": "x402scan facilitator/server/agent/tool leaderboard proxy",
      "verified": true,
      "hints": {
        "input": {
          "type": "http",
          "method": "GET",
          "queryParams": {
            "ids": {
              "type": "string",
              "description": "Comma-separated IDs to filter specific facilitators, servers, agents, or tools."
            },
            "page": {
              "type": "integer",
              "description": "Zero-based page index. Defaults to 0."
            },
            "chain": {
              "type": "string",
              "description": "Optional chain filter (solana, base, polygon, optimism). Only applies to facilitator/server lookups."
            },
            "limit": {
              "type": "integer",
              "description": "Rows per page (1-50). Defaults to 10."
            },
            "entity": {
              "enum": [
                "facilitators",
                "servers",
                "agents",
                "tools"
              ],
              "type": "string",
              "description": "Leaderboard entity to query. Defaults to facilitators."
            },
            "sort_by": {
              "type": "string",
              "description": "Sort key for the entity (facilitators: tx_count, total_amount, latest_block_timestamp, unique_buyers, unique_sellers, etc.)."
            },
            "direction": {
              "enum": [
                "asc",
                "desc"
              ],
              "type": "string",
              "description": "Sort direction (default desc)."
            },
            "timeframe": {
              "type": "string",
              "description": "Rolling window such as 1d, 7d, 30d, or a numeric day count (defaults to 1d)."
            },
            "include_summary": {
              "type": "boolean",
              "description": "true/false. When false, skips the aggregate summary lookup (default true)."
            }
          },
          "discoverable": true
        },
        "output": {
          "ok": {
            "type": "boolean",
            "description": "True when the x402scan proxy succeeds."
          },
          "error": {
            "type": "string",
            "description": "Error code when ok=false."
          },
          "items": {
            "type": "array",
            "description": "Entity-specific leaderboard rows (facilitators include metrics + docs, servers show destination wallets, agents/tools expose stats)."
          },
          "query": {
            "type": "object",
            "description": "Echo of the normalized query settings (chain, timeframeDays, limit, etc.)."
          },
          "entity": {
            "enum": [
              "facilitators",
              "servers",
              "agents",
              "tools"
            ],
            "type": "string",
            "description": "Entity returned in the leaderboard payload."
          },
          "source": {
            "type": "object",
            "properties": {
              "service": {
                "type": "string",
                "description": "Upstream service label."
              },
              "endpoint": {
                "type": "string",
                "description": "TRPC procedure invoked (e.g. public.facilitators.list)."
              }
            },
            "description": "Metadata about the upstream x402scan endpoint powering the response."
          },
          "status": {
            "type": [
              "integer",
              "null"
            ],
            "description": "Upstream or timeout HTTP status when ok=false."
          },
          "summary": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "chain": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Chain reflected in the totals."
              },
              "uniqueBuyers": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Unique buyers count."
              },
              "timeframeDays": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Window length in days."
              },
              "uniqueSellers": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Unique sellers count."
              },
              "latestActivity": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "ISO timestamp of the freshest upstream activity."
              },
              "totalAmountUsd": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Aggregate volume in USD."
              },
              "totalAmountMicro": {
                "type": [
                  "number",
                  "null"
                ],
                "description": "Aggregate volume in micropennies."
              },
              "totalTransactions": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total transactions observed."
              }
            },
            "description": "Aggregate totals when include_summary=true."
          },
          "fetchedAt": {
            "type": "string",
            "description": "ISO timestamp when the proxy pulled x402scan data."
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer",
                "description": "Current page index."
              },
              "limit": {
                "type": "integer",
                "description": "Items per page."
              },
              "totalCount": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total rows when provided."
              },
              "totalPages": {
                "type": [
                  "integer",
                  "null"
                ],
                "description": "Total page count when provided."
              },
              "hasNextPage": {
                "type": [
                  "boolean",
                  "null"
                ],
                "description": "Whether another page is available."
              }
            },
            "description": "Pagination metadata for the returned list."
          }
        }
      }
    }
  ],
  "duplicate_cluster_id": "data-cl-509135e32e5b",
  "origin": {
    "slug": "x402-dexter-cash",
    "host": "x402.dexter.cash",
    "title": "Public x402 Facilitator for API Payments \u2022 Dexter",
    "description": "Integrate Dexter's public x402 facilitator for verification, signing, and settlement across supported chains.",
    "url": "https://x402.dexter.cash",
    "og_image": "https://dexter.cash/og-images/v2/default",
    "favicon": "https://dexter.cash/assets/logos/logo.svg"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/x402-dexter-cash-api-tools-x402-scan-stats",
    "url": "https://x402all.com/resource/x402-dexter-cash-api-tools-x402-scan-stats",
    "name": "Dexter \u00b7 x402 Ecosystem Leaderboard Stats",
    "@type": "WebAPI",
    "offers": [
      {
        "url": "https://x402all.com/resource/x402-dexter-cash-api-tools-x402-scan-stats",
        "@type": "Offer",
        "price": "0.05",
        "availability": "https://schema.org/InStock",
        "priceCurrency": "USDC",
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "0.050000",
          "unitText": "call",
          "priceCurrency": "USDC"
        },
        "eligibleCustomerType": "Agent",
        "additionalProperty": [
          {
            "@type": "PropertyValue",
            "name": "paymentNetwork",
            "value": "base"
          },
          {
            "@type": "PropertyValue",
            "name": "paymentAsset",
            "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
          }
        ]
      },
      {
        "url": "https://x402all.com/resource/x402-dexter-cash-api-tools-x402-scan-stats",
        "@type": "Offer",
        "price": "0.05",
        "availability": "https://schema.org/InStock",
        "priceCurrency": "USDC",
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "0.050000",
          "unitText": "call",
          "priceCurrency": "USDC"
        },
        "eligibleCustomerType": "Agent",
        "additionalProperty": [
          {
            "@type": "PropertyValue",
            "name": "paymentNetwork",
            "value": "solana"
          },
          {
            "@type": "PropertyValue",
            "name": "paymentAsset",
            "value": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
          }
        ]
      }
    ],
    "sameAs": "https://x402.dexter.cash/api/tools/x402/scan/stats",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/x402-dexter-cash",
      "url": "https://x402.dexter.cash",
      "name": "Public x402 Facilitator for API Payments \u2022 Dexter",
      "@type": "Organization"
    },
    "identifier": "x402-dexter-cash-api-tools-x402-scan-stats",
    "description": "Query x402 facilitator, server, agent, and tool leaderboards. Filter by chain, sort direction. Public x402 ecosystem analytics via Dexter.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=x402-dexter-cash-api-tools-x402-scan-stats",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "tools"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=x402-dexter-cash-api-tools-x402-scan-stats"
}
