# Payout information

**POST** `https://api.heleket.com/v1/payout/info`

## Request

### Body parameters

| Name | Parameter type | Definition |
| --- | --- | --- |
| uuid | uuid<br>required\_without: order\_id| Payout uuid |
| order\_id | string<br>min:1<br>max:32<br>alpha\_dash<br>required\_without: uuid| Payout order ID |

> To get the payout information you need to pass one of the parameters, if you pass both, the payout will be identified by _order\_id_

### Request example

```
curl https://api.heleket.com/v1/payout/info \
-X POST \
-H 'merchant: 8b03432e-385b-4670-8d06-064591096795' \
-H 'sign: fe99035f86fa436181717b302b95bacff1' \
-H 'Content-Type: application/json' \
-d '{
    "uuid": "8b03432e-385b-4670-8d06-064591096795"
}'
```

## Response

### Response parameters

Object of payment - [see](https://doc.heleket.com/methods/payouts/creating-payout.md#response_parameters)

### Response example

```
{
    "state": 0,
    "result": {
        "uuid": "a7c0caec-a594-4aaa-b1c4-77d511857594",
        "amount": "3",
        "currency": "USDT",
        "network": "TRON",
        "address": "TJ...",
        "txid": null,
        "status": "process",
        "is_final": false,
        "balance": 129,
        "payer_currency": "USDT",
        "payer_amount": 3
    }
}
```

## Possible errors

### Validation errors

code : 422

example responses:

If you will not pass a uuid and order\_id, you will receive this message. It means that at least one of the parameters is required.

```
{
	"state": 1,
	"errors": {
		"uuid": ["validation.required_without"],
		"order_id": ["validation.required_without"]
	}
}
```
