{
  "start_date": "YYYY-MM-DD",
  "end_date": "YYYY-MM-DD",
  "merchant_addresses": "your,own,comma,separated,merchant, wallet, addresses",
  "network": "CAIP-2 network filter, or the alias solana-mainnet / solana-devnet",
  "token": "Payment token ticker, e.g. USDC",
  "200": {
    "data": [
      {
        "date": "YYYY-MM-DD",
        "buyer_address": "string",
        "merchant_address": "string",
        "network": "string",
        "payment_token_ticker": "string",
        "settled_count": "number",
        "gross_settlement": "string",
        "gross_facilitator_fee_usd": "string"
      }
    ],
    "meta": {
      "start_date": "string",
      "end_date": "string",
      "network": "string | null",
      "token": "string | null",
      "merchant_addresses": "array of strings | null"
    }
  },
  "400": "Invalid date, network, or token filter.",
  "example_request": "curl --request GET \\n     --url https://api.figment.io/x402/settlement_reports \\n     --header 'accept: application/json' \\n     --header 'x-api-key: your-api-key-here'",
  "example_response": {
    "data": [
      {
        "date": "2026-07-01",
        "buyer_address": "9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin",
        "merchant_address": "3fX8pQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9Pus",
        "network": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1",
        "payment_token_ticker": "USDC",
        "settled_count": 42,
        "gross_settlement": "1234.560000",
        "gross_facilitator_fee_usd": "1.234560"
      }
    ],
    "meta": {
      "start_date": "2026-05-10",
      "end_date": "2026-07-09",
      "network": null,
      "token": "USDC",
      "merchant_addresses": null
    }
  }
}
