# Client deposit instructions

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

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

```json
{"openapi":"3.1.0","info":{"title":"Rialto Manager API","version":"1.0.0"},"servers":[{"url":"https://api.rialtobridge.xyz/api/manager/v1","description":"Main (production) server for the Rialto Manager API"},{"url":"https://staging.api.rialtobridge.xyz/api/manager/v1","description":"Test (staging) server for the Rialto Manager API"},{"url":"http://localhost:3002/api/manager/v1","description":"Development server for the Rialto Manager 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":{"/clients/{clientId}/deposit-instructions":{"get":{"summary":"Returns the list of the fiat and blockchain deposit instructions of a client.","description":"Returns the list of the fiat and blockchain deposit instructions of a client.","operationId":"getClientDepositInstructions","tags":["Client deposit instructions"],"parameters":[{"name":"clientId","in":"path","required":true,"description":"The unique identifier of the client.","schema":{"type":"string","format":"uuid"}}],"responses":{"200":{"description":"A list of the fiat and blockchain deposit instructions of a client.","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."}}}}}}
```
