Wallet Sets API — new endpoints
Added five new endpoints for wallet sets — aggregated portfolio data across up to one EVM and one Solana address simultaneously.Pass one or two addresses via theaddresses query parameter (at most one EVM and one Solana address):GET /wallet-sets/portfolioGET /wallet-sets/positions/GET /wallet-sets/transactions/GET /wallet-sets/charts/{chart_period}GET /wallet-sets/pnl
Fungibles API — sort by trading volume
Added 24-hour trading volume as a new sort option forGET /fungibles/.-market_data.trading_volumes.volume_1d— highest volume firstmarket_data.trading_volumes.volume_1d— lowest volume first
Fungibles API — new fields
Added trading volume and deployment date fields to fungible data. No breaking changes.New fields inFungibleAttributes.market_data:trading_volumes.volume_1d— total 24-hour trading volume across all chains
AttributesImplementation (new dedicated type for implementations array, backward compatible with all existing fields):market_data.trading_volumes.volume_1d— 24-hour trading volume on this chaindeployment_date— ISO 8601 datetime when the token contract was deployed
Transactions API — OpenAPI documentation fix
Fixed OpenAPI schema inconsistencies between documentation and implementation for the/transactions endpoints. No breaking changes — API responses remain unchanged, only the OpenAPI spec was corrected.Nullable fields corrected:- Fee:
fungible_info,price,valuemarked as nullable - Refund:
fungible_info,price,valuemarked as nullable - Transfer:
price,valuemarked as nullable - Fungible Info:
iconmarked as nullable
- Transaction attributes:
address,refund,delegations - Fungible Info:
id
null values, as these were already nullable in practice.Chart periods — new time values
Added two new time period values to thechart_period parameter:6months— 6-month chart period5years— 5-year chart period
hour, day, week, month, 3months, year, and max.Affected endpoints:GET /wallets/{address}/charts/{chart_period}GET /fungibles/{fungible_id}/charts/{chart_period}GET /fungibles/by-implementation/charts/{chart_period}
Portfolio API — sync parameter
Added newsync query parameter to the /wallets/{address}/portfolio endpoint.true: Triggers a position sync and waits up to 30 seconds for fresh portfolio data before responding.false(default): Returns immediately with cached data.
sync=true.Positions API — sync parameter
Added newsync query parameter to the /wallets/{address}/positions endpoint.true: Waits up to 30 seconds for protocol positions to be updated and returns fresh data.false(default): Returns immediately with available position data.
sync=true.