{"openapi":"3.0.0","info":{"title":"WalletFinder — Historical On-Chain Trading Analytics","version":"1.0.0","description":"Historical wallet, trade, and swap metrics for Ethereum, Base, and Solana. Filterable analytics — not investment advice."},"servers":[{"url":"https://api.oanor.com/walletfinder"}],"paths":{"/discoverTrades":{"get":{"summary":"Discover trades","description":"Returns a paginated, filterable list of individual token trades made by tracked wallets. Wallet addresses are always returned in plain form on this API tier.","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiscoverTradesResponse"}}},"description":"Paginated list of trades."},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"}}}},"/discoverWallets":{"get":{"summary":"Discover wallets","description":"Returns a paginated, filterable list of tracked wallets with sortable historical trading metrics (PnL, win rate, etc.). Wallet addresses are always returned in plain form on this API tier.","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DiscoverWalletsResponse"}}},"description":"Paginated list of wallets."},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"}}}},"/swaps":{"get":{"summary":"Raw swap events","description":"Returns the raw list of individual swap events (up to 10,000 matching records per request) from the DEX trade log.","responses":{"200":{"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Swap"}}}},"description":"Array of raw swap event records."},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"}}}},"/walletOverview":{"get":{"summary":"Wallet overview","description":"Returns a single wallet's historical trading metrics plus its investment/profit history for the selected timeframe.","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WalletOverviewResponse"}}},"description":"Wallet overview with investment/profit history."},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"404":{"$ref":"#/components/responses/NotFound"}}}},"/walletOverviewStats":{"get":{"summary":"Wallet overview stats","description":"Returns the same historical trading metrics as `/walletOverview`, without the investment/profit history array.","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WalletOverviewStatsResponse"}}},"description":"Wallet overview stats."},"400":{"$ref":"#/components/responses/BadRequest"},"401":{"$ref":"#/components/responses/Unauthorized"},"404":{"$ref":"#/components/responses/NotFound"}}}}}}