# Create Cross-Chain Transfer From Quote

## POST /v0/customers/{customer\_id}/cross-chain-transfer/quote/{quote\_id}

> Create Cross-Chain Transfer from Quote

```json
{"openapi":"3.0.0","info":{"title":"Cross Chain Transfers API","version":"0"},"servers":[{"url":"https://api.alignlabs.dev","description":"Production server"},{"url":"https://api-sandbox.alignlabs.dev","description":"Sandbox server"}],"paths":{"/v0/customers/{customer_id}/cross-chain-transfer/quote/{quote_id}":{"post":{"summary":"Create Cross-Chain Transfer from Quote","parameters":[{"name":"customer_id","in":"path","description":"The unique identifier of the customer","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"quote_id","in":"path","description":"The unique identifier of the quote to use for the transfer","required":true,"schema":{"type":"string","format":"uuid"}},{"name":"Api-Key","in":"header","description":"Your secret API key, available in the developer dashboard. Include this header on every request to authenticate your application.","required":true,"schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["destination_address"],"properties":{"destination_address":{"type":"string","description":"The destination address where the tokens will be sent"}}}}}},"responses":{"200":{"description":"Successful creation of Cross-Chain Transfer from quote","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CrossChainTransferModel"}}}}}}}},"components":{"schemas":{"CrossChainTransferModel":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"The unique identifier for the cross-chain transfer"},"status":{"type":"string","description":"The current status of the cross-chain transfer","enum":["pending","processing","completed"]},"amount":{"type":"string","format":"decimal","pattern":"^[0-9]+(\\.[0-9]+)?$","description":"The amount of the cross-chain transfer as a numeric string"},"source_network":{"type":"string","description":"The blockchain network for the source","enum":["polygon","ethereum","tron","solana"]},"source_token":{"type":"string","description":"The token for the source","enum":["usdc","usdt"]},"source_address":{"type":"string","description":"The blockchain address from which the funds will be sent","nullable":true},"destination_network":{"type":"string","description":"The blockchain network for the destination","enum":["polygon","ethereum","tron","solana"]},"destination_token":{"type":"string","description":"The token for the destination","enum":["usdc","usdt"]},"destination_address":{"type":"string","description":"The blockchain address where the funds will be sent"},"quote":{"type":"object","properties":{"deposit_token":{"type":"string","description":"The token used for the deposit","enum":["usdc","usdt"]},"deposit_address":{"type":"string","description":"The blockchain address where the deposit should be made"},"deposit_network":{"type":"string","description":"The blockchain network for the deposit","enum":["polygon","ethereum","tron","solana"]},"deposit_amount":{"type":"string","description":"The amount to be deposited"},"fee_amount":{"type":"string","description":"The total fee amount for the cross-chain transfer, denominated in the deposit_token currency"}}}}}}}}
```


---

# Agent Instructions: 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:

```
GET https://docs.alignlabs.dev/align-api/cross-chain-transfers/create-cross-chain-transfer-from-quote.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
