> For the complete documentation index, see [llms.txt](https://docs.orda.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.orda.network/developers/api/onchain-transactions.md).

# Onchain Transactions

## Crypto-to-Crypto Transfers <a href="#crypto-to-crypto-transfers" id="crypto-to-crypto-transfers"></a>

This document describes the process for executing crypto-to-crypto transactions using the orda API. This involves requesting a price quote, executing the quoted transaction and monitoring its status until completion.

**Developer Portal**

While the core transaction flow (quote, execute, monitor) happens via the API, initial setup requires the [*orda* developer portal](https://app.orda.network/). You'll need:

* A **Project Client ID** and **Secret** for API authentication.
* A **Recipient Client ID** representing the entity receiving the transaction. Settlement details for the *destination* of the transaction are configured within the account settings in the portal.

**Overview**

* **Request a Quote:** Get pricing, fees, and transaction details before execution using the `/v1/quote` endpoint. Quotes are short-lived (approx. 30 seconds).
* **Execute the Quote:** After obtaining a valid quote, execute the transaction. This may involve a separate token approval step before the main transfer.
* **Monitor Status:** Track the progress of the transaction using the `/v1/status` endpoint with the `transactionId` from the quote response or transaction hashes.
* **Authentication:** All API requests require authentication using your project's client ID and a signature generated with your client secret. See the [authentication guide](/developers/authentication.md).


---

# 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.orda.network/developers/api/onchain-transactions.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.
