> For the complete documentation index, see [llms.txt](https://developer.convergegate.com/legacy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.convergegate.com/legacy/wallet-api/payout/retrieve-a-payout.md).

# Retrieve a payout

<mark style="color:blue;">`GET`</mark> `https:/{provided url}/v2/payouts/:id`

{% tabs %}
{% tab title="CURL" %}

```
curl https://{provided url}/v2/payouts/:id \
  -u sk_test_BQokikJOvBiI2HlWgH4olfQ2:
```

{% endtab %}
{% endtabs %}

## Response

```json
{
	"id": "AW-kLcRRC5P8U68CYe0kVA",
	"public_address": "mwVXtJA1DUhZFbkzxKQsXLej9vdFh9b9eH",
	"source": "AW-kLcRbx6KXBv7B3CF8uw",
	"created_at": 1579007460,
	"amount": 10000,
	"currency": "EUR",
	"recipient_name": "John Doe",
	"account_id": "merchant_account_id",
	"metadata": {
		"trans_id": "123456789"
	},
	"status": "succeeded",
	"livemode": false
}
```

## Return

Return the payout result of the create request.
