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

# DEX Aggregators

> How aggregators integrate Bolt to win more routes with zero slippage execution.

## Win routes you could not win before

Aggregators compete on execution quality. Routes are won or lost based on which liquidity source offers the best price for a given trade. On large trades, traditional AMM pools degrade because slippage increases with trade size. This means aggregators are limited by the depth of the pools they route through. **Bolt changes this equation.**

## What Bolt gives you

<Info>
  Zero slippage on every route through Bolt. Trade size does not affect execution price. Your users get better fills. You win more routes.
</Info>

Every swap executes at oracle-referenced prices, regardless of size. This removes the trade-off between size and execution quality. On large trades where traditional pools would slip hard, Bolt becomes increasingly attractive to your routing engine.

## How integration works

<Steps>
  <Step title="Install the Bolt SDK">
    Get started with npm or yarn:

    ```bash theme={null}
    npm install @boltliquidity/sdk
    ```

    See the [5-Minute Integration](https://docs.boltliquidity.io/5-minute-integration) guide for full setup.
  </Step>

  <Step title="Query available pairs">
    Call `getAssets()` to see the pairs supported on Sui:

    ```typescript theme={null}
    const pairs = await bolt.getAssets();
    ```

    This gives you the complete list of tradeable pairs in the Bolt network.
  </Step>

  <Step title="Request a quote">
    Call `getQuote()` with the pair, amount, and direction:

    ```typescript theme={null}
    const quote = await bolt.getQuote({
      from: "SUI",
      to: "USDC",
      amount: "1000000",
      direction: "exact_in"
    });
    ```

    Bolt returns the exact output amount. No slippage estimate needed.
  </Step>

  <Step title="Execute the swap">
    Pass the quote to `executeSwap()` for atomic on-chain settlement:

    ```typescript theme={null}
    const txn = await bolt.executeSwap(quote);
    ```

    Settlement happens in a single transaction. Your user receives the quoted amount.
  </Step>

  <Step title="Route comparison">
    Compare Bolt quotes against other liquidity sources in your routing engine. On large trades, Bolt's zero-slippage execution will win more routes than traditional pools.
  </Step>
</Steps>

## Live on Sui

[Cetus](https://www.cetus.zone/), [FlowX](https://flowx.finance/), [Hop.ag](https://hop.ag/swap/USDC-SUI), and [Aftermath Finance](https://aftermath.finance/) are already routing through Bolt. These integrations demonstrate that Bolt wins routes in production, not just in theory. Both platforms saw immediate gains in execution quality by adding Bolt to their routing logic.

## The business case

<AccordionGroup>
  <Accordion title="Route win rate">
    Bolt wins routes that traditional AMMs lose, especially on larger trades. Because trade size does not affect execution price, Bolt becomes increasingly competitive as trade size grows. Your routing engine gains a new liquidity source that thrives on the trades where other pools are weak.
  </Accordion>

  <Accordion title="Integration overhead">
    Single SDK. No liquidity pool management. No oracle infrastructure to maintain. Integration measured in days, not weeks. Your engineering team can ship this quickly and move on to other priorities.
  </Accordion>

  <Accordion title="Capital efficiency edge">
    29.7x daily inventory turnover — 23x the Sui ecosystem peer average across 16 pools and 8 protocols. This efficiency enables Bolt to offer competitive pricing without requiring a deep capital commitment from the aggregator. You route through a source that doesn't need massive TVL to function.
  </Accordion>
</AccordionGroup>

<Tip>
  If you are evaluating Bolt for your routing engine, the fastest path is the [5-Minute Integration](https://docs.boltliquidity.io/5-minute-integration) guide. You can go from install to simulated swap in one sitting.
</Tip>

***

<CardGroup cols={2}>
  <Card title="5-Minute Integration" icon="rocket" href="/5-minute-integration">
    Get up and running with Bolt in under five minutes.
  </Card>

  <Card title="Talk to the Team" icon="envelope" href="/contact">
    Questions about routing, integration, or execution strategy? Reach out.
  </Card>
</CardGroup>
