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

# 查询内部划转状态 (KEYED)

`查询发起人的内部划转记录。若传入 withdrawID，则查询单条记录；否则分页列表返回。`

#### 请求URL

`GET https://cloud-api.wooxpro.com/transfer/transfer-gateway/private/internalTransferStatus`

#### 请求限制

参见 [速率限制详细](/cn/rate-limit)

#### 请求参数

> 请求

```shell theme={null}
curl -H 'X-API-KEY:{{AccessKey}}'
'https://cloud-api.wooxpro.com/transfer/transfer-gateway/private/internalTransferStatus?page=1&pageSize=100'
```

| 参数         | 类型      | 是否必填 | 描述                         |
| :--------- | :------ | :--- | :------------------------- |
| withdrawID | String  | 选填   | 划转操作 ID，传值后忽略分页条件，改为查询单条记录 |
| startTime  | Long    | 选填   | 开始时间（毫秒时间戳）                |
| endTime    | Long    | 选填   | 结束时间（毫秒时间戳）                |
| coin       | String  | 选填   | 币种名称，不存在时会失败               |
| page       | Integer | 选填   | 页码（默认：1）                   |
| pageSize   | Integer | 选填   | 每页记录数（默认：100）              |

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "trace": "0cc6f4c48b8c42538e908d3195aa109c",
  "data": [
    {
      "withdrawId": "123",
      "coin": "USDT",
      "status": "SUCCESS",
      "amount": 10.5,
      "accountType": "SPOT",
      "createTime": 1710000000000,
      "updateTime": 1710000001000
    }
  ]
}
```

| 字段          | 类型     | 描述                    |
| :---------- | :----- | :-------------------- |
| withdrawId  | String | 划转操作 ID               |
| coin        | String | 币种名称                  |
| status      | String | 状态值，例如 SUCCESS、FAILED |
| amount      | Number | 金额                    |
| accountType | String | 账户类型                  |
| createTime  | Long   | 创建时间（毫秒时间戳）           |
| updateTime  | Long   | 更新时间（毫秒时间戳）           |

#### 错误码

> 注意：以下错误码将在后续版本调整。

| errMsg          | code |
| :-------------- | :--: |
| Ok              | 1000 |
| Failure         |  -1  |
| Invalid request |  -3  |
| User not login  |  -6  |
