# Get Transaction

## /transactions/:transaction\_id

<mark style="color:blue;">`GET`</mark> `https://api.terminal.africa/v1/transactions/:transaction_id`

This endpoint allows you to retrieve details for a transaction.

#### Path Parameters

| Name                                              | Type   | Description                                  |
| ------------------------------------------------- | ------ | -------------------------------------------- |
| transaction\_id<mark style="color:red;">\*</mark> | string | Unique ***transaction\_id*** of transaction. |

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Set value to `Bearer SECRET_KEY` |

{% tabs %}
{% tab title="200 Transaction retrieved successfully." %}

```
{
	status: true,
	message: 'Transaction retrieved successfully',
	data: {
		amount: 14000,
		currency: 'NGN',
		description: 'Billing charge for DHL Express shipment [SH-40208776515] to Timothy Odunubi.',
		flow: 'out',
		platform: 'terminal',
		id: 'Qm8zsXDrvkCEK5I8PtLaP3H29mkR11qu',
		reference: '',
		shipment: 'BUbL05Ecprhc2q17Xh9woRSwNpXJehay',
		transaction_id: 'TR-28598558366',
		wallet: 'nGvZRE5lyb7H1ZuORKVjKlXfETsWff0J',
		status: 'success',
		created_at: '2021-07-13T20:25:53.011Z',
		updated_at: '2021-07-13T20:25:53.011Z'
	}
}
```

{% endtab %}
{% endtabs %}
