Cambrian List Pools API
GET /api/v1/solana/meteora-dlmm/pools
Meteora DLMM Pools
This endpoint retrieves information about Meteora Dynamic Liquidity Market Maker (DLMM) pools on Solana. It provides comprehensive pool data including token pairs, addresses, fees, and creation timestamps.
Business Value
- Pool Discovery: Find and analyze available Meteora DLMM pools for trading opportunities
- Token Pair Analysis: Access detailed information about token pairs and their pool configurations
- Fee Structure Insights: Understand fee rates and tick spacing for optimal trading strategies
- Market Monitoring: Track pool creation dates and monitor new liquidity additions
- DeFi Integration: Essential data for building DeFi applications and trading bots on Solana
Endpoint Details
URL:
https://opabinia.cambrian.network/api/v1/solana/meteora-dlmm/pools
Method: GET
Authentication: Required via X-API-Key header
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| limit | integer | No | 100 | Limit the number of results (1-1000) |
| offset | integer | No | 0 | Offset the results (0-100000) |
Response Field Descriptions
| Response Field | Type | Description |
|---|---|---|
| poolAddress | FixedString(44) | Unique address of the Meteora DLMM pool |
| chainId | UInt16 | Blockchain chain identifier (900 for Solana) |
| dexAddress | FixedString(44) | Address of the Meteora DEX contract |
| dexName | String | Name of the decentralized exchange (Meteora) |
| token0Address | FixedString(44) | Contract address of the first token in the pair |
| token0Symbol | String | Symbol of the first token |
| token0Decimals | UInt8 | Number of decimal places for the first token |
| token1Address | FixedString(44) | Contract address of the second token in the pair |
| token1Symbol | String | Symbol of the second token |
| token1Decimals | UInt8 | Number of decimal places for the second token |
| createdAt | DateTime('UTC') | Timestamp when the pool was created |
| fee | UInt32 | Pool fee rate (in basis points, e.g., 25000 = 2.5%) |
| tickSpacing | UInt16 | Tick spacing for the pool's price ranges |
Examples
1. Get All Meteora DLMM Pools
Retrieve all available Meteora DLMM pools with default pagination.
curl -X GET "https://opabinia.cambrian.network/api/v1/solana/meteora-dlmm/pools" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response:
{
"columns": [
{
"name": "poolAddress",
"type": "FixedString(44)"
},
{
"name": "chainId",
"type": "UInt16"
},
{
"name": "dexAddress",
"type": "FixedString(44)"
},
{
"name": "dexName",
"type": "String"
},
{
"name": "token0Address",
"type": "FixedString(44)"
},
{
"name": "token0Symbol",
"type": "String"
},
{
"name": "token0Decimals",
"type": "UInt8"
},
{
"name": "token1Address",
"type": "FixedString(44)"
},
{
"name": "token1Symbol",
"type": "String"
},
{
"name": "token1Decimals",
"type": "UInt8"
},
{
"name": "createdAt",
"type": "DateTime('UTC')"
},
{
"name": "fee",
"type": "UInt32"
},
{
"name": "tickSpacing",
"type": "UInt16"
}
],
"data": [
[
"7yBfVUTRygLmpBMVGPiKmZHGepWvEA6hYXdruZDPrgyY",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"AYFkbXHpfgBvLPms75ssGKGZp8QQDCFDHY5XfR6aXrgL",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-31T00:10:45+00:00",
25000,
250
],
[
"ACW2M98JzYrUbvwyEgKSBnLTUN3KYrD3k3wKFAKKdTPV",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"48QXf9VmSRa8rpDyWWN2DLav8PeETtYftFcmkP3iwUjn",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-31T00:02:19+00:00",
25000,
250
],
[
"AnnVMmP2rgHirHc9pBArSTz4syCa2yQViC5jLQJHxJ2A",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"9fA55XYhCpKQVyzSHi2ASJLuNuaFvf4VaaeYwzazyrUt",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-30T16:25:40+00:00",
25000,
250
],
[
"3yvSWV75UiRDNuTsqDeP4LUQ7BFssan6yqQcHsk9fiPo",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"9toNhcf65hWn1mzqW5zPH2mBjNbnK6QXqDYsiCXMLPDM",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-30T16:23:42+00:00",
25000,
250
],
[
"9S2PM3KDCUxvwmr89pU9u1chcTnsnT6Mz5fvXZSzNuhC",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"3JvmvQxmiPYSsHcF4CMjTczd7rtD694G4QcfRwRMMcFZ",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-30T16:19:56+00:00",
40000,
400
]
],
"rows": 100
// ... additional rows omitted for brevity
}
This response shows the most recently created Meteora DLMM pools. Each pool contains detailed information about the token pair (token0/token1), fee structure, and creation timestamp. The data is returned in columnar format for efficient processing.
2. Get Limited Results with Pagination
Retrieve only the first 10 pools with a specific offset.
curl -X GET "https://opabinia.cambrian.network/api/v1/solana/meteora-dlmm/pools?limit=10&offset=20" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response:
{
"columns": [
{
"name": "poolAddress",
"type": "FixedString(44)"
},
{
"name": "chainId",
"type": "UInt16"
},
{
"name": "dexAddress",
"type": "FixedString(44)"
},
{
"name": "dexName",
"type": "String"
},
{
"name": "token0Address",
"type": "FixedString(44)"
},
{
"name": "token0Symbol",
"type": "String"
},
{
"name": "token0Decimals",
"type": "UInt8"
},
{
"name": "token1Address",
"type": "FixedString(44)"
},
{
"name": "token1Symbol",
"type": "String"
},
{
"name": "token1Decimals",
"type": "UInt8"
},
{
"name": "createdAt",
"type": "DateTime('UTC')"
},
{
"name": "fee",
"type": "UInt32"
},
{
"name": "tickSpacing",
"type": "UInt16"
}
],
"data": [
[
"7yBfVUTRygLmpBMVGPiKmZHGepWvEA6hYXdruZDPrgyY",
900,
"LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo",
"Meteora",
"AYFkbXHpfgBvLPms75ssGKGZp8QQDCFDHY5XfR6aXrgL",
"N",
9,
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"USDC",
6,
"2025-12-31T00:10:45+00:00",
25000,
250
]
],
"rows": 10
}
This allows you to implement pagination through large datasets by adjusting the offset parameter to skip previously retrieved records.
x402 Payment Option
This endpoint supports pay-per-use access via the x402 payment protocol (v2) — pay $0.05 USDC per request using blockchain micropayments. No API key required.
Quick Start (TypeScript)
npm install @x402/fetch @x402/evm viem
import { x402Client } from "@x402/core/client";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY as `0x${string}`);
const client = new x402Client();
client.register("eip155:*", new ExactEvmScheme(signer));
const fetchWithPayment = wrapFetchWithPayment(fetch, client);
const response = await fetchWithPayment(
"https://deep42.cambrian.network/api/v1/solana/meteora-dlmm/pools"
);
const data = await response.json();
Quick Start (Python)
pip install "x402[httpx]"
import asyncio, os
from eth_account import Account
from x402 import x402Client
from x402.http.clients import x402HttpxClient
from x402.mechanisms.evm import EthAccountSigner
from x402.mechanisms.evm.exact.register import register_exact_evm_client
async def main():
client = x402Client()
account = Account.from_key(os.getenv("EVM_PRIVATE_KEY"))
register_exact_evm_client(client, EthAccountSigner(account))
async with x402HttpxClient(client) as http:
response = await http.get("https://deep42.cambrian.network/api/v1/solana/meteora-dlmm/pools")
print(response.json())
asyncio.run(main())
Payment Flow
- Send a normal request to the endpoint (no API key needed)
- Server returns
402 Payment Requiredwith payment details - The x402 SDK automatically signs a payment authorization with your wallet
- The SDK resubmits the request with the signed payment
- Server verifies payment and returns the API response
The x402 SDK handles steps 2–5 automatically.
Network: Base (chain ID 8453) | Currency: USDC | Price: $0.05 per request
Related Endpoints
/api/v1/solana/meteora-dlmm/pool- Get basic pool information for a specific Meteora DLMM pool/api/v1/solana/meteora-dlmm/pool-multi- Get comprehensive metrics for multiple Meteora DLMM pools simultaneously/api/v1/solana/tokens- Get a paginated list of known Solana tokens/api/v1/solana/tokens/holders- Get token holder information for any Solana token/api/v1/solana/pool-transactions- Get transaction history for pool operations