# Get Accounts

## Get Platform Accounts

Make a [`GET /ewallets`](/reference/#tag/ewallet/GET/ewallets) request:

* cURL

  ```curl
  curl --request GET \
    --url 'https://sandbox.unipaas.com/platform/ewallets' \
    --header 'Accept: application/json' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <PLATFORM_SECRET_KEY>'
  ```

The response will be an array of [`eWallet object`](/docs/ewallets-overview/).

## Get Vendor Accounts

Make a [`GET /vendors/{vendorId}/ewallets`](/reference/#tag/vendor/GET/vendors/%7BvendorId%7D/ewallets) request request:

* cURL

  ```curl
  curl --request GET \
    --url 'https://sandbox.unipaas.com/platform/vendors/{vendorId}/ewallets' \
    --header 'Accept: application/json' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <PLATFORM_SECRET_KEY>'
  ```

The response will be an array of [`eWallet object`](/docs/ewallets-overview/).

Go Next[Get eWallet Transaction](/docs/get-merchant-ewallet-transaction-1/)
