---
title: "Track Status"
api: "GET /api/v1/transfers/status/:transactionId"
description: "Check the current status of a transaction."
---

### Path Parameters

<ParamField path="transactionId" type="string">
  The ID returned during initiation.
</ParamField>

### Response

<ResponseField name="success" type="boolean" />
<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="status" type="string">
      Current status (e.g., 'AWAITING_DEPOSIT', 'COMPLETED', 'FAILED').
    </ResponseField>
    <ResponseField name="message" type="string">
      A human-readable status message.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
```bash
curl --request GET \
     --url https://criptpay-f2lv.onrender.com/api/v1/transfers/status/TRANS_123 \
     --header 'x-api-key: <api-key>'
```
</RequestExample>
