> 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/retrieve-checkout-session-refund.md).

# 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
}
```
