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

# Introduction

> Accept cross cross chain crypto payments directly — no custodians, no gas.

## What is Direkt?

Direkt is a cross chain crypto payment infrastructure API. Bridge assets by sending funds to a deposit address, no wallet connection, gas or signing required.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="bolt" href="/quickstart">
    Go from zero to first payment in 5 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/quote">
    Full endpoint docs with examples
  </Card>

  <Card title="Guides" icon="book" href="/guides/create-payment">
    Step-by-step integration guides
  </Card>

  <Card title="Telegram Support" icon="telegram" href="https://t.me/Lase404">
    Get help directly from the team
  </Card>
</CardGroup>

## How it works

<Steps>
  <Step title="Create a quote">
    POST to `/api/quote` with the token details, amount, currency, from and destination chain. Direkt returns a unique deposit address.
  </Step>

  <Step title="Show the address to your user">
    Display the address (and QR code) in your UI. The user sends crypto to it from any wallet.
  </Step>

  <Step title="User Deposit — User sends funds to the deposit address (wallet transfer or exchange withdrawal)." />

  <Step title="Detect + Sweep — Direkt detects the deposit onchain and sweeps funds to the depository contract." />

  <Step title="Fill — Order gets filled on the destination chain from pre-positioned liquidity. Funds are delivered to the recipient address." />

  <Step title="Poll for status">
    GET `/api/status/:id` until the status is `confirmed` or `completed`.
  </Step>
</Steps>

## Supported chains

| Chain           | Symbol | Type |
| --------------- | ------ | ---- |
| Ethereum        | ETH    | EVM  |
| BNB Smart Chain | BNB    | EVM  |
| Polygon         | MATIC  | EVM  |
| Arbitrum        | ARB    | EVM  |
| Base            | BASE   | EVM  |
| Optimism        | OP     | EVM  |
| Solana          | SOL    | SVM  |

## Key concepts

* **No signing required**: Users bridge/swap by sending funds to an address, no wallet connection needed.
* **Works cross-chain and same-chain**: Supports both bridges and swaps.
* **Ideal use cases**: CEX withdrawals, fiat onramps, and headless systems where the sender can't sign.
* **UX**: Identical to a normal token transfer.
* **Quote Regeneration:** When funds arrive at a deposit address, Direkt evaluates what was sent versus what was originally quoted. How mismatches are handled varies.
