# Transfer Status API

Check the status of a transfer.

## Endpoint
`POST https://api.moolre.com/open/transact/status`

## Headers
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-USER | string | Yes | Username |
| X-API-KEY | string | Yes | Secret Key |

## Request Parameters
| Name | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 1. |
| idtype | string | Yes | transactionid or externalref |
| id | string | Yes | The ID value. |

## Responses
### 200 - Success
Status returned.

```json
{
  "status": 1,
  "code": "SS01",
  "message": "Success",
  "data": {
    "txstatus": 1
  }
}
```

