changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "description": "Complete request for address counterparties (flattened).",
- "properties": {
- "address": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Single wallet address to analyze. REQUIRED if entity_id is not provided. Cannot be used together with entity_id."
- },
- "addresses": {
- "anyOf": [
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "List of wallet addresses to analyze. REQUIRED if entity_id is not provided. Cannot be used together with entity_id."
- },
- "chain": {
- "default": "all",
- "type": "string"
- },
- "entity_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Entity name to analyze (e.g., 'Binance', 'Paradigm Fund'). REQUIRED if addresses is not provided. Cannot be used together with addresses."
- },
- "groupBy": {
- "default": "wallet",
- "description": "Grouping method for counterparties analysis",
- "enum": [
- "wallet",
- "entity"
- ],
- "type": "string"
- },
- "order_by": {
- "default": "total_volume_usd",
- "type": "string"
- },
- "order_by_direction": {
- "default": "desc",
- "enum": [
- "asc",
- "desc",
- "ASC",
- "DESC"
- ],
- "type": "string"
- },
- "page": {
- "default": 1,
- "type": "integer"
- },
- "sourceInput": {
- "default": "Combined",
- "description": "Source input type for counterparties analysis",
- "enum": [
- "Combined",
- "Tokens",
- "ETH"
- ],
- "type": "string"
- },
- "timeRange": {
- "description": "Date range for counterparties analysis. Max window: 365 days — longer ranges are clamped to the most recent year (prevents timeouts in fast/expert mode) and the effective range is reported in the response. Prefer relative tokens (7D_AGO, 30D_AGO, 90D_AGO, 1Y_AGO).",
- "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"
- }
- },
- "required": [
- "timeRange"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "description": "Complete request for address counterparties (flattened).",
+ "properties": {
+ "address": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Single wallet address to analyze. REQUIRED if entity_id is not provided. Cannot be used together with entity_id."
+ },
+ "addresses": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "List of wallet addresses to analyze. REQUIRED if entity_id is not provided. Cannot be used together with entity_id."
+ },
+ "chain": {
+ "default": "all",
+ "type": "string"
+ },
+ "entity_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Entity name to analyze (e.g., 'Binance', 'Paradigm Fund'). REQUIRED if addresses is not provided. Cannot be used together with addresses."
+ },
+ "groupBy": {
+ "default": "wallet",
+ "description": "Grouping method for counterparties analysis",
+ "enum": [
+ "wallet",
+ "entity"
+ ],
+ "type": "string"
+ },
+ "orderBy": {
+ "anyOf": [
+ {
+ "enum": [
+ "interaction_count",
+ "total_volume_usd",
+ "volume_in_usd",
+ "volume_out_usd"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Sort field. Pass an exact value above or None for default ('total_volume_usd')."
+ },
+ "order_by_direction": {
+ "default": "DESC",
+ "enum": [
+ "ASC",
+ "DESC",
+ "asc",
+ "desc"
+ ],
+ "type": "string"
+ },
+ "page": {
+ "default": 1,
+ "type": "integer"
+ },
+ "sourceInput": {
+ "default": "Combined",
+ "description": "Source input type for counterparties analysis",
+ "enum": [
+ "Combined",
+ "Tokens",
+ "ETH"
+ ],
+ "type": "string"
+ },
+ "timeRange": {
+ "description": "Date range for counterparties analysis. Max window: 365 days — longer ranges are clamped to the most recent year (prevents timeouts in fast/expert mode) and the effective range is reported in the response. Prefer relative tokens (7D_AGO, 30D_AGO, 90D_AGO, 1Y_AGO).",
+ "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"
+ }
+ },
+ "required": [
+ "timeRange"
+ ],
+ "type": "object"
+ }
+]