# Retrieve checkout session refund

Use this endpoint to:

* Confirm whether a refund has been successfully processed.
* Check the current status of a pending refund.
* View refund details such as metadata, reason, amount, and creation time.

<mark style="color:blue;">**`GET`**</mark> `https://{provided url}/v1/refunds/:id`

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

```
curl https://{provided url}/v1/refunds/kLcRRC5P8U68CYe0kVA \
  -u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
```

{% endtab %}
{% endtabs %}

## Example JSON Response

```
{
	"id": "kLcRRC5P8U68CYe0kVA",
	"amount": 1000,
	"status": "pending",
	"reason": "requested_by_customer",
	"created_at": 1534255857,
	"livemode": false
}
```
