> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dexutils.io/llms.txt
> Use this file to discover all available pages before exploring further.

# DexUtils Pro API Changelog and Version Release Notes

> Track every DexUtils Pro API release: new endpoints, field additions, behavioral changes, bug fixes, and deprecations from v1.0.0 onward.

This changelog records every notable update to the DexUtils Pro API, including new endpoints, field additions, behavioral changes, bug fixes, and deprecations. Entries are listed in reverse chronological order. The current stable version is **v1**, available at `https://api.dexutils.io/v1`.

<Tip>
  The v1 API is stable. We are committed to backward compatibility — no breaking changes will be introduced without a major version bump to v2. Existing integrations will continue to work as new fields and endpoints are added.
</Tip>

***

## v1.4.0 — June 2025

This release focuses on reducing quota consumption for high-frequency use cases and expanding pool and token metadata.

* **Added** `POST /tokens/batch` endpoint — fetch prices and metadata for up to 100 tokens in a single request, dramatically reducing request count for multi-token dashboards.
* **Added** `dext_score` field on pool detail responses — an integer score from 0 to 100 reflecting the pool's overall safety and quality assessment.
* **Added** `verified` boolean field on token responses — indicates whether the token contract has passed DexUtils verification checks.
* **Improved** The transactions endpoint now accepts a `maker` query parameter, allowing you to filter transactions by a specific wallet address.

***

## v1.3.0 — April 2025

Solana support arrives in this release, extending the API's multichain coverage beyond EVM networks for the first time.

* **Added** Solana network support — you can now query tokens, pools, and transactions on Solana using the `solana` network slug.
* **Added** `GET /networks/{network}/dexes` endpoint — returns a list of DEXes active on the specified network along with metadata such as name, version, and total liquidity.
* **Changed** `chain_id` is now `null` for non-EVM networks. Solana does not use EVM-style numeric chain IDs, so this field will always be `null` for Solana responses.

<Note>
  If your integration checks `chain_id` to identify networks, update your logic to also handle `null` values for Solana and any future non-EVM networks.
</Note>

***

## v1.2.0 — February 2025

This release adds time-range filtering for transactions and enriches pool detail responses with liquidity lock data.

* **Added** `from_timestamp` and `to_timestamp` query parameters on the transactions endpoint — filter transactions to a specific time window using Unix timestamps.
* **Added** `locked_liquidity_pct` field on pool detail responses — the percentage of LP tokens that are locked in a time-lock contract.
* **Added** `lp_holder_count` field on pool detail responses — the number of unique addresses holding LP tokens for the pool.
* **Fixed** Incorrect 24-hour volume aggregation for tokens traded across multiple pools. Volume figures now correctly deduplicate cross-pool swaps.

***

## v1.1.0 — December 2024

Cross-chain discovery and transaction filtering arrive in this release.

* **Added** `GET /search` endpoint — search for tokens and pools by name, symbol, or address across all supported networks in a single request.
* **Added** `min_amount_usd` filter on the transactions endpoint — exclude low-value swaps from results by setting a minimum USD transaction size.
* **Changed** The default sort on `GET /networks/{network}/pools` has changed from `created_at` to `liquidity`. If your integration relies on creation-date ordering, pass `sort=created_at` explicitly.

***

## v1.0.0 — October 2024

Initial public release of the DexUtils Pro API.

* **Launched** Core endpoint groups: `/networks`, `/tokens`, `/pools`, `/transactions`.
* **Supported networks at launch**: Ethereum, BNB Chain, Polygon, Arbitrum.
* **Authentication**: Bearer token via `Authorization` header.
* **Pagination**: `limit` and `page` query parameters on all list endpoints.

***

<Note>
  Stay up to date with API releases by subscribing to the [DexUtils Developer Newsletter](https://dexutils.io/newsletter) or joining the **#api-updates** channel in the [DexUtils Discord](https://discord.gg/dexutils). Breaking changes and deprecation notices are always announced at least 60 days in advance.
</Note>
