removedInput schema / $defs
Removed value: -{
- "AddressHistoricalBalancesRequest": {
- "description": "Complete request for address historical balances (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."
- },
- "lookbackDays": {
- "$ref": "#/$defs/LookbackDays",
- "default": 1,
- "description": "Number of days to look back for historical balances"
- },
- "suspiciousFilter": {
- "$ref": "#/$defs/SuspiciousFilter",
- "default": "on",
- "description": "Whether to exclude suspicious tokens"
- }
- },
- "type": "object"
- },
- "LookbackDays": {
- "description": "Lookback days for historical balance analysis.",
- "enum": [
- 1,
- 7,
- 30,
- 90,
- 120,
- 365,
- 730,
- 999999
- ],
- "type": "integer"
- },
- "SuspiciousFilter": {
- "description": "Options for filtering suspicious tokens.",
- "enum": [
- "on",
- "off"
- ],
- "type": "string"
- }
-}
addedInput schema / additionalProperties
Added value: +false
changedInput schema / properties / request / anyOf
Previous value: -[
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "$ref": "#/$defs/AddressHistoricalBalancesRequest"
- }
-]New value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "description": "Complete request for address historical balances (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."
+ },
+ "lookbackDays": {
+ "default": 1,
+ "description": "Number of days to look back for historical balances",
+ "enum": [
+ 1,
+ 7,
+ 30,
+ 90,
+ 120,
+ 365,
+ 730,
+ 999999
+ ],
+ "type": "integer"
+ },
+ "suspiciousFilter": {
+ "default": "on",
+ "description": "Whether to exclude suspicious tokens",
+ "enum": [
+ "on",
+ "off"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+]