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

# Introduction

> Drive Bloom swaps and token launches programmatically with a personal API key.

The Bloom API lets you drive trading and token launches programmatically using a
personal API key. There are two endpoints:

* **[Swaps](/api-reference/swap)**: execute buys and sells across one or more of
  your wallets, with optional take-profit, stop-loss, trailing, time-based, and
  dev-sell auto-orders.
* **[Token deploys](/api-reference/deploy)**: launch new tokens on supported DEXes
  (pump.fun, Bags, Bonk), with bundled buys and post-deploy distributions.
  Deploys are Solana-only.

## Base URL

All requests go to a Bloom API host under the `/api/v1` prefix. Solana is served
from two regions — pick the one nearer you:

```
https://eu.solana.bloombot.app/api/v1/swap
https://us.solana.bloombot.app/api/v1/swap
```

Both regions serve `/api/v1/deploy` as well, and both are backed by the same
account, wallets, and rate-limit budget — the only difference is network
latency. See [Regions](/concepts/chains#regions).

For EVM chains, use `https://evm.bloombot.app` for swaps:

```
https://evm.bloombot.app/api/v1/swap
```

The EVM host does not serve `/deploy`, since token deploys are Solana-only.
Every request is authenticated with a Bearer token.

EVM swaps accept an optional **`chain`** field naming the chain to trade on
(`eth`, `bsc`, `base`, `rbh`, or `arc`); omit it and the token is resolved across
chains automatically. One EVM key covers all of them. See
[Chains and quote assets](/concepts/chains) for the per-chain quote assets and
how fee fields are denominated.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="bolt" href="/quickstart">
    Create a key and make your first swap in a few minutes.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/swap">
    Full request and response schemas for `/swap` and `/deploy`.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    How API keys work: format, limits, and revocation.
  </Card>

  <Card title="Auto-orders" icon="robot" href="/concepts/auto-orders">
    Attach exit strategies and dev-sells to a trade.
  </Card>

  <Card title="Chains and quote assets" icon="link" href="/concepts/chains">
    The `chain` field, per-chain quote assets, and EVM fee units.
  </Card>
</CardGroup>
