Cambrian Pool Info API

By Cambrian Network solana

GET /api/v1/solana/orca/pool

Orca Pool Information

Retrieves detailed information about a specific Orca liquidity pool on the Solana blockchain. This endpoint provides pool configuration, state data, and metadata for trading and liquidity analysis.

Business Value

  • Pool Analysis: Access comprehensive pool data for liquidity providers and traders
  • Trading Intelligence: Monitor pool state and configuration for informed trading decisions
  • Portfolio Management: Track pool performance and composition for investment strategies
  • DeFi Integration: Enable seamless integration with Orca DEX functionality
  • Risk Assessment: Evaluate pool parameters and liquidity for risk management

Endpoint Details

URL:

https://opabinia.cambrian.network/api/v1/solana/orca/pool

Method: GET
Authentication: Required via X-API-Key header

Query Parameters

Parameter Type Required Default Description
pool_address string Yes - The program ID (address) of the Solana pool.

Response Field Descriptions

Response Field Type Description
columns array Array of column definitions for the response data
data array Array of pool data rows
rows number Total number of rows in the response

Examples

1. Pool Information Retrieval

Demonstrates fetching basic pool information using a valid Orca pool address.

curl -X GET "https://opabinia.cambrian.network/api/v1/solana/orca/pool?pool_address=whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response:

[
  {
    "columns": [],
    "data": [],
    "rows": 0
  }
]

The response indicates no data was found for the specified pool address, which may indicate the pool is inactive or the address is invalid.

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/orca/pool"
);
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/orca/pool")
        print(response.json())

asyncio.run(main())

Payment Flow

  1. Send a normal request to the endpoint (no API key needed)
  2. Server returns 402 Payment Required with payment details
  3. The x402 SDK automatically signs a payment authorization with your wallet
  4. The SDK resubmits the request with the signed payment
  5. 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/orca/pools - Retrieves a list of all Orca pools registered in the database
  • /api/v1/solana/orca/pools/fee-metrics - Retrieves core metrics like fees, volume, TVL, and Fee APR for specific Orca pools
  • /api/v1/solana/orca/pools/historical-data - Retrieves historical daily fee and volume data for Orca pools
  • /api/v1/solana/orca/pools/liquidity-map - Retrieves net liquidity distribution across price ticks for Orca pools
  • /api/v1/solana/orca/pool-multi - Get comprehensive overview metrics for multiple Orca pools simultaneously