For the complete documentation index, see llms.txt. This page is also available as Markdown.

πŸ“‘Liquidity Sources

GET https://api.liqd.ag/dexes

Returns the liquidity sources available on a chain, including each source's routerIndex for use with excludeDexes / includeDexes on route finding and find pools.

Indexes and sources vary by chain and may change over time β€” always query this endpoint rather than hardcoding values.

Required Parameters

Name
Type
Description
Required
Example

chainId

number

Chain to query (999 = HyperEVM, 4663 = Robinhood Chain)

Yes

4663

Example Requests:

GET https://api.liqd.ag/dexes?chainId=999
GET https://api.liqd.ag/dexes?chainId=4663

Response Fields

Field
Description

chainId

Chain that was queried

simulatorAddress

Simulator contract for the chain

data[].routerIndex

Index to pass in excludeDexes / includeDexes

data[].name

Display name of the liquidity source

data[].key

Stable identifier for the source

data[].adapterAddress

Adapter contract address

count

Number of sources returned

Last updated