# Payment Status - deprecated

<mark style="color:green;">`POST`</mark> `{{base_url}}/transtatus`

**Headers**

| Name          | Value               |
| ------------- | ------------------- |
| Content-Type  | `application/json`  |
| Authorization | `Bearer PUBLIC_KEY` |

Request **Body**

| Name      | Type   | Description                                                         |
| --------- | ------ | ------------------------------------------------------------------- |
| reference | String | Transaction reference returned from us or merchant passed reference |

**Response**

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

```json
{
    "status": true,
    "message": "Transaction Retrieved",
    "deliveryStatus": "Successful",
    "responseCode": "01",
    "payRef": "API1725870632SM517",
    "paymentTime": "09 Sep 2024 09:30 am",
    "recipient": "002317660",
    "amount": "50000.00",
    "product": "sendmoney",
    "prevBalance": "1050000.00",
    "newBalance": "1000000.00",
    "fee": "20.00",
    "totalCharged": "50020.00",
    "provRef": "54adfb6ebadb6764a6f07",
    "currency": "NGN",
    "accountName": "ADEAYO",
    "accountNo": "002317660",
    "bankName": "Access BankDiamond",
    "bankCode": "063",
    "narration": "transfer",
    "paytype": "DEBIT"
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "status": false,
  "message": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
