> For the complete documentation index, see [llms.txt](https://docs.rome.builders/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rome.builders/ru/prilozheniya-na-rome/bridge-api.md).

# Rome Bridge

Rome Bridge — это две вещи:  **самостоятельный мост** через шесть сетей, и  **API моста** любое приложение интегрируется, чтобы встроить мостовую функциональность в свой собственный UX. Оно перемещает активы через CCTP v2 (USDC), Wormhole (ETH и любые активы), а также нативные каналы Solana.

Он не хранит **кастодиальных ключей** — расчёт всегда требует собственной подписи пользователя, а не сервиса. API координирует процесс и может спонсировать комиссии; настоящий мост находится в блокчейне.

## Поддерживаемые сети и активы

Входящие в Rome (Martius, Hadrian) по четырём маршрутам — `CCTP`, `Wormhole`, `spl-bridge`, `нативный`:

| Актив              | Маршрут               | Исходные сети                                                                                 |
| ------------------ | --------------------- | --------------------------------------------------------------------------------------------- |
| **USDC**           | CCTP                  | Ethereum Sepolia, Arbitrum Sepolia, Base Sepolia, Polygon Amoy, Avalanche Fuji, Monad Testnet |
| **ETH**            | Wormhole              | Ethereum Sepolia                                                                              |
| **SPL / нативный** | spl-bridge / нативный | Solana                                                                                        |

Актуальный список всегда находится в [`/v1/chains`](https://bridge-api.devnet.romeprotocol.xyz/v1/chains). Нужны тестовые токены? См. [Краны](/ru/resursy/faucets.md).

## Используйте отдельно

Откройте интерфейс моста: [bridge-api.devnet.romeprotocol.xyz](https://bridge-api.devnet.romeprotocol.xyz/?chain=200010).  `?chain=` параметр выбирает целевую сеть Rome.

## Интегрируйте API

API открыт. Перечислите поддерживаемые сети и маршруты:

```bash
curl https://bridge-api.devnet.romeprotocol.xyz/v1/chains
```

Запросы на котировку и маршрутизацию используют CAIP-2 `sourceChain`. См. ответы конечных точек для текущего набора маршрутов и требуемых полей.

## Как работает расчёт

Внецепочечный API — это только оркестратор и спонсор комиссий. Входящие переводы рассчитываются в блокчейне без доверия на основе авторизации, подписанной пользователем; исходящие выводы проходят через ончейн-контракт моста. Ни один этап не списывает средства пользователя без его подписи.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.rome.builders/ru/prilozheniya-na-rome/bridge-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
