Skip to main content
This page contains all significant updates, improvements, and bug fixes for the DexPaprika API. We’re committed to making our product better with each release. Check our API reference for the latest version.
2025-10-16
APIDocs
v1.4.1

Changed

  • GET /networks/{network}/multi/prices: requests are now limited to a maximum of 10 tokens per call.
  • Parameter encoding updated to a single comma-separated tokens list (explode=false).

Error handling

  • Requests with more than 10 tokens return 400 Bad Request.
  • Requests with zero tokens still return 400 Bad Request (unchanged).

Docs

  • Updated API reference, tutorial, and MCP notes to reflect the cap, edge-case behavior, and comma-separated encoding.
2025-10-14
APIFeatureDocsCompatibility
v1.4.0

Added

  • New endpoint: GET /networks/{network}/multi/prices for batch token price retrieval on a network.
    • Request: repeatable tokens query parameter (e.g., ?tokens=0x...&tokens=0x...).
    • Response: array of { id, chain, price_usd } objects for tokens with available prices; unknown/unpriced tokens are omitted.

Changed

  • AssetPrice schema added and documented in OpenAPI.
  • Internals: performance optimization to fetch token summaries conditionally.

Compatibility

  • Certain price-related fields now use omitempty semantics in responses. If you previously relied on nulls for absent values, note these keys may now be omitted when data is unavailable.

Docs

2025-06-17
APISchemaDocs
v1.3.1

Enhanced

  • Transaction Schema:
    • Added token_0_symbol and token_1_symbol fields to transaction objects for explicit token symbol tracking.
    • Added price_0, price_1, price_0_usd, and price_1_usd fields to transaction objects for detailed price reporting.
    • Added created_at field to transaction objects for precise transaction timestamping.

Migration/Compatibility

  • No breaking changes to existing endpoints, but clients parsing transaction objects should update their models to support the new fields for full compatibility.

FAQs

We ship changes continuously. Breaking changes are called out explicitly with migration guidance.
Each breaking change section includes steps and replacement endpoints when applicable.
Watch this changelog and our Discord announcements; major updates are posted there.
2025-01-27
APIBreaking ChangesDeprecation
v1.3.0

Deprecated

  • BREAKING: The /pools endpoint has been permanently deprecated and now returns 410 Gone
  • Users should migrate to /networks/{network}/pools to get top pools for each specific network

Changed

  • Enhanced deprecation messaging with clear migration paths for affected endpoints

Migration guide

Instead of using the deprecated global pools endpoint:
GET /pools
Use the network-specific pools endpoint for each blockchain:
GET /networks/ethereum/pools
GET /networks/solana/pools
GET /networks/fantom/pools
This change provides better performance and more relevant results by focusing on network-specific data.
2025-05-12
APIFeatureDocs
v1.2.1

Added

2025-04-10
APIBreaking Changes
v1.2.0

Added

  • Added operation IDs to all endpoints for better client code generation
  • Added fully diluted valuation (fdv) field to token responses
  • Added detailed license information and contact details in API specification
  • Added buy_usd and sell_usd fields to provide monetary values for trades
  • Added last_price_usd_change field to all time intervals (24h, 6h, 1h, 30m, 15m, 5m, 1m)
  • Added organized API tags with descriptions for better navigation

Changed

  • Updated OpenAPI specification from 3.0.3 to 3.1.0 for improved documentation
  • Changed OHLCV endpoint response format from wrapped object to direct array of records (Breaking Change)
  • Renamed buy/sell fields to buys/sells for consistency (Breaking Change)
  • Changed network response format from object to array for cleaner consumption
  • Updated network schema with improved field naming (display_name instead of just name)
  • Standardized ID field in Network schema to use string identifiers instead of numeric IDs
  • Enhanced token schema with additional fields: chain, total_supply, added_at, last_updated
  • Improved parameter documentation with examples and clearer descriptions

Fixed

  • Improved consistency in representing null values in responses
  • Updated example responses to more accurately reflect actual API behavior
  • Fixed formatting inconsistencies in API documentation

Improved

  • Enhanced OHLCV schema with time_open and time_close fields to clearly define candlestick periods
  • Improved validation for time intervals and limits in OHLCV endpoint
  • Added explicit error response documentation for the /stats endpoint
  • Enhanced descriptions for all endpoints and parameters
2025-03-15
APIFeature
v1.1.0

Added

  • Support for buy/sell volume metrics across all time intervals
  • Added transaction counts to pool details
  • Added initial support for price tracking

Changed

  • Improved error messaging with more specific error codes
  • Enhanced documentation with more descriptive examples

Fixed

  • Corrected timestamp format inconsistencies across endpoints
  • Fixed incorrect price calculations in some edge cases
2025-02-01
APIInitial Release
v1.0.0

Added

  • Initial public beta release
  • Support for Solana network
  • Basic endpoints for networks, DEXes, pools, and tokens
  • Search functionality across tokens, pools, and DEXes
  • OHLCV data for historical price tracking
  • Transaction history for pools
2025-01-15
APIBeta
v0.9.0

Added

  • Pool and token details endpoints
  • Initial version of search functionality

Changed

  • Improved error handling and response formats
  • Enhanced documentation with examples
2024-12-01
APIAlpha
v0.8.0

Added

  • Initial development release
  • Preliminary endpoints for pools and DEXes