> For the complete documentation index, see [llms.txt](https://docs.dexpay.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dexpay.io/b2b-integration/get-business-info-and-wallet-address.md).

# Get Business Info and Wallet Address

**Get Business Info**

To get the business information provided for registration, and also the list of crypto wallet addresses for your business profile. This is where you will receive funds.

**Endpoint: Get /info**

* address: The public address of your wallet.
* chain: The blockchain for the address (e.g., BSC, TRON, SOLANA, BASE).

**`Success Response (200):`**

The response provides the information about the business and the list of wallet addresses

&#x20;and chains supported for the business.

`{`\
&#x20;   `"data": {`\
&#x20;       `"name": "Your Business Name",`\
&#x20;       `"emailaddress": "mybusiness@name.com",`\
&#x20;       `"walletAddresses": [`\
&#x20;           `{`\
&#x20;               `"_id": "7fe13ba7-4780-49d8-a494-21c952e43d44",`\
&#x20;               `"address": "0xF09847df0Cba63A6f5dAcF115b3FC2bf0df1D832",`\
&#x20;               `"chain": "BSC"`\
&#x20;           `}`\
&#x20;       `]`\
&#x20;   `},`\
&#x20;   `"message": "success",`\
&#x20;   `"error": null,`\
&#x20;   `"statusCode": 201`\
`}`<br>
