> For the complete documentation index, see [llms.txt](https://docs.blockz.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.blockz.fi/overview/quick-integration.md).

# Quick Integration

#### Quick Integration Overview

Blockz integrates through a single REST API.

Basic flow:

1. Request quote
2. Present quote to user
3. User signs swap intent
4. Submit intent to Blockz
5. Resolver executes swap
6. Wallet verifies settlement

```javascript
POST /quote
{
  "from_chain": "bitcoin",
  "to_chain": "ethereum",
  "from_token": "BTC",
  "to_token": "ETH",
  "amount": "0.5"
}
```

#### Getting Started

Partners integrate Blockz through the following components.

[**API**](/api/supported-networks-and-tokens.md)\
Request quotes, submit swap intents, and monitor execution.

[**SDKs**](/integration/resources.md#typescript-sdk)\
Language-specific wrappers that simplify interaction with the API.

Start with the API documentation to understand the execution flow and integration steps.
