> ## Documentation Index
> Fetch the complete documentation index at: https://developer.kiotapay.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Single TZ Payout

# Get Single TZ Payout API

Retrieve the details of a single **TZ spending** transaction using a `requestId` you received when the payout was initiated.

***

## **Endpoint**

`GET /api/v1/tz/spending/single`

***

## **Base URL**

[`https://api.kiotapay.co`](https://api.kiotapay.co)

***

## **Query Parameters**

| Parameter   | Type     | Description                                         | Required |
| ----------- | -------- | --------------------------------------------------- | -------- |
| `requestId` | `string` | The unique identifier for the specific transaction. | ✅        |

***

## **Request Headers**

| Key             | Value                 | Required | Description                                                        |
| --------------- | --------------------- | -------- | ------------------------------------------------------------------ |
| `Authorization` | `Bearer <your-token>` | ✅        | API authentication token. Replace `<your-token>` with a valid JWT. |
| `Device-Id`     | `<your-device-id>`    | ✅        | A unique identifier for the caller device/client.                  |

***

## **Example Request**

### **cURL**

```bash theme={null}
curl --location 'https://api.kiotapay.co/api/v1/tz/spending/single?requestId=cdd7dcaa-e945-44d2-8219-77543ae91d9b' \
--header 'Device-Id: example-my-device-id' \
--header 'Authorization: Bearer <your-token>'
```
