changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "description": "Complete request for token flows (flattened).",
- "properties": {
- "chain": {
- "default": "ethereum",
- "description": "Blockchain network. Supported: arbitrum, avalanche, base, bnb, ethereum, hyperevm, injective, iotaevm, linea, mantle, mantra, monad, near, optimism, plasma, polygon, robinhood, ronin, scroll, sei, solana, sonic, sui, ton, tron, unichain, zksync",
- "type": "string"
- },
- "dateRange": {
- "description": "Date range for flow analysis",
- "properties": {
- "from": {
- "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- },
- "to": {
- "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
- "type": "string"
- }
- },
- "required": [
- "from",
- "to"
- ],
- "type": "object"
- },
- "holder_segment": {
- "default": "top_100_holders",
- "description": "Label types for holder analysis and filtering.",
- "enum": [
- "whale",
- "public_figure",
- "smart_money",
- "top_100_holders",
- "exchange"
- ],
- "type": "string"
- },
- "mode": {
- "default": "onchain_tokens",
- "description": "Analysis mode: 'onchain_tokens' for on-chain tokens by contract address, 'perps' for Hyperliquid perpetual futures by symbol. If mode is omitted and token_address is a symbol (not a contract address), mode defaults to 'perps'.",
- "enum": [
- "onchain_tokens",
- "perps"
- ],
- "type": "string"
- },
- "tokenAddress": {
- "type": "string"
- }
- },
- "required": [
- "tokenAddress"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "description": "Complete request for token flows (flattened).",
+ "properties": {
+ "chain": {
+ "default": "ethereum",
+ "description": "Blockchain network. Supported: arbitrum, avalanche, base, bnb, ethereum, hyperevm, injective, iotaevm, linea, mantle, mantra, monad, near, optimism, plasma, polygon, robinhood, ronin, scroll, sei, solana, sonic, sui, ton, tron, unichain, zksync",
+ "type": "string"
+ },
+ "dateRange": {
+ "description": "Date range for flow analysis",
+ "properties": {
+ "from": {
+ "description": "Start value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ },
+ "to": {
+ "description": "End value: token (see above) or date (YYYY-MM-DD or ___-MM-DD).",
+ "type": "string"
+ }
+ },
+ "required": [
+ "from",
+ "to"
+ ],
+ "type": "object"
+ },
+ "holder_segment": {
+ "default": "top_100_holders",
+ "description": "Label types for holder analysis and filtering.",
+ "enum": [
+ "whale",
+ "public_figure",
+ "smart_money",
+ "top_100_holders",
+ "exchange"
+ ],
+ "type": "string"
+ },
+ "mode": {
+ "default": "onchain_tokens",
+ "description": "Analysis mode: 'onchain_tokens' for on-chain tokens by contract address, 'perps' for Hyperliquid perpetual futures by symbol. If mode is omitted and token_address is a symbol (not a contract address), mode defaults to 'perps'.",
+ "enum": [
+ "onchain_tokens",
+ "perps"
+ ],
+ "type": "string"
+ },
+ "page": {
+ "default": 1,
+ "description": "Page number, starting at 1",
+ "minimum": 1,
+ "type": "integer"
+ },
+ "perPage": {
+ "default": 10,
+ "description": "Number of records per page, from 1 to 1000",
+ "maximum": 1000,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "tokenAddress": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "tokenAddress"
+ ],
+ "type": "object"
+ }
+]