# Deposit instructions

## Returns the list of the fiat and blockchain deposit instructions.

> Returns the list of the fiat and blockchain deposit instructions.

```json
{"openapi":"3.1.0","info":{"title":"Rialto API","version":"1.0.0"},"servers":[{"url":"https://api.rialtobridge.xyz/api/client/v1","description":"Main (production) server for the Rialto Client API"},{"url":"https://staging.api.rialtobridge.xyz/api/client/v1","description":"Test (staging) server for the Rialto Client API"},{"url":"http://localhost:3002/api/client/v1","description":"Development server for the Rialto Client API"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","name":"RIALTO_API_KEY","in":"header"}},"schemas":{"FiatDepositInstruction":{"type":"object","properties":{"label":{"type":"string","description":"The label of the deposit instruction."},"fiatCurrency":{"type":"string","description":"The fiat currency of the bank account. See [the list of supported](https://docs.rialtobridge.xyz/concepts) fiat currencies."},"bankName":{"type":"string","description":"The name of the bank."},"countryCode":{"type":"string","description":"The country code of the bank account. See [the list of supported](https://docs.rialtobridge.xyz/concepts) country codes."},"identifiers":{"type":"object","description":"The identifiers of the bank account.","properties":{"iban":{"type":"string","description":"The IBAN of the bank account."},"bic":{"type":"string","description":"The BIC of the bank account."},"intermediaryBic":{"type":["string","null"],"description":"The intermediary BIC of the bank account."}}},"beneficiary":{"type":"object","description":"The beneficiary of the bank account.","properties":{"name":{"type":"string","description":"The name of the beneficiary."},"address":{"type":["string","null"],"description":"The address of the beneficiary."},"city":{"type":["string","null"],"description":"The city of the beneficiary."},"postalCode":{"type":"string","description":"The postal code of the beneficiary."},"countryCode":{"type":"string","description":"The country code of the beneficiary. See [the list of supported](https://docs.rialtobridge.xyz/concepts) country codes."}}},"isSegregated":{"type":"boolean","description":"The flag indicating if the bank account is segregated for the beneficiary."}}},"BlockchainDepositInstruction":{"type":"object","properties":{"label":{"type":"string","description":"The label of the deposit instruction."},"blockchainNetwork":{"type":"string","description":"The blockchain network of the deposit instruction. See [the list of supported](https://docs.rialtobridge.xyz/concepts) blockchains."},"walletAddress":{"type":"string","description":"The wallet address of the deposit instruction."},"isSegregated":{"type":"boolean","description":"The flag indicating if the wallet is segregated for the beneficiary."}}}}},"paths":{"/deposit-instructions":{"get":{"summary":"Returns the list of the fiat and blockchain deposit instructions.","description":"Returns the list of the fiat and blockchain deposit instructions.","operationId":"getDepositInstructions","tags":["Deposit instructions"],"responses":{"200":{"description":"A list of the fiat and blockchain deposit instructions.","content":{"application/json":{"schema":{"type":"object","properties":{"fiat":{"type":"array","items":{"$ref":"#/components/schemas/FiatDepositInstruction"}},"blockchain":{"type":"array","items":{"$ref":"#/components/schemas/BlockchainDepositInstruction"}}}}}}},"401":{"description":"Invalid API key"},"500":{"description":"An unexpected error occurred."}}}}}}
```


---

# 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.rialtobridge.xyz/client-api-reference/deposit-instructions.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.
