Trade Analytics API

Unlock powerful onchain insights

A single, dedicated endpoint for historical trade data, enabling easy aggregation and analysis of user behavior, revenue insights and more.

Get started

Automate, Analyze, Adapt

Streamlined, Out-of-the-Box

Data without complex transformations
We return formatted data for fees, slippage and settled amounts alongside token metadata, reducing the time it takes to get insights for your business.

Instant USD Conversion

Eliminate the need for external pricing data
Get USD values for revenue and fees without the need to pull and join external pricing data. Simplify your workflow with pre-calculated USD estimates.

Track Revenue with Precision

Feed your internal dashboards
Monitor revenue by piping fee data in USD and token values directly into your internal dashboards. Fully customize what you see and how you see it.

Drill Down Mode

Granular insights at your fingertips
Easily drill down into specific trades for granular analysis. Slice and dice trade data to uncover patterns, anomalies, and insights, enabling smarter decisions.

Built for serious onchain apps

All historical trades:

Access to all historical trades at an individual level, easily aggregated for analytics use cases. Automate workflows without manual intervention.

Clean & Formatted:

Ready to ingest through performant endpoints. Pipe directly into your existing data pipelines.

Instant USD Values:

We return USD estimates for the amounts returned (buyAmount, sellAmount, integratorFee, zeroExFee), eliminating the need to join external pricing data

Revenue Tracking:

Get insights into your revenue health with comprehensive data on revenue and fees collected through your app.

Instant USD Values:

FP&A analysis made easy with apples to apples comparisons in USD values. Simplify your workflows, internal presentations and discussions.

Strategic Finance & BizOps:

An aggregate view for monitoring trends and drill down mode to QA and analyze trade-level details. Improve your team’s ability to make data-driven decision that impact your business.

All Your Data in One Stream:

Get access to all historical data to create reports and generate insights without having to rely on manual ad-hoc pulls.

Strategic Product Insights:

Get aggregate view for monitoring usage trends and drill down mode to interrogate specific user behaviors. Improve your orgs ability to make data-driven decision that impact your business.

Integrate in 5 minutes or less

Embed crypto trading in your app with just a few lines of code.

Play


const main = async () => {

	 const sellAmount = parseUnits("1000", await usdc.read.decimals());

  	// fetch quote
  	const quoteParams = new URLSearchParams({
  		chainId: client.chain.id.toString(),
    	sellToken: usdc.address,
    	buyToken: weth.address,
    	sellAmount: sellAmount.toString(),
      taker: client.account.address,
    });

  const quoteResponse = await fetch(
    "https://api.0x.org/swap/permit2/quote?" + quoteParams.toString(),
    {
      headers,
    }
  );

  const quote = await quoteResponse.json();
  console.log("Quote to swap 1000 USDC for WETH: ", quote);

}
main();

Play


const main = async () => {

	 const sellAmount = parseUnits("1000", await usdc.read.decimals());

  	// fetch quote
  	const quoteParams = new URLSearchParams({
  		chainId: client.chain.id.toString(),
    	sellToken: usdc.address,
    	buyToken: weth.address,
    	sellAmount: sellAmount.toString(),
      taker: client.account.address,
    });

  const quoteResponse = await fetch(
    "http://api.0x.org/gasless/quote?" + quoteParams.toString(),
    {
      headers,
    }
  );

  const quote = await quoteResponse.json();
  console.log("Quote to swap 1000 USDC for WETH: ", quote);

}
main();

Developer Guides

Tap into a decade of onchain expertise

Developer Guides

App spotlight: DODO

App spotlight: DODO

Power your AI agents with Swap API

Power your AI agents with Swap API

Fundamentals: AI agents

Fundamentals: AI agents

Fundamentals: Bridges

Fundamentals: Bridges