# Get Payouts

## Get Platform Payouts

Make a [`GET /payouts`](/reference/#tag/payout/GET/payouts) request:

* cURL

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

In the response, you'll get requested array of [`Payout object`](/docs/pay-out-funds-overview/#the-payout-object).

## Get Vendor Payouts

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

* cURL

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

In the response, you'll get the requested array of [`Payout object`](/docs/pay-out-funds-overview/#the-payout-object).
