# 黑名单管理 - 获取黑名单详情

> 模块标识：blacklist  |  接口数量：5

## 接口说明
**方法**：	GET

**路径**：				/api/blacklists/{id}

**功能说明**：
根据黑名单ID获取详细信息

### 请求参数
```json
{
  "path": [
    {
      "name": "id",
      "type": "string",
      "required": true,
      "description": "黑名单ID"
    }
  ]
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "获取成功",
    "data": {
      "id": 1,
      "userId": "USER0002",
      "reason": "恶意操作",
      "createTime": "2025-01-01T10:00:00.000Z"
    }
  },
  "failure": {
    "code": "4040",
    "message": "黑名单不存在",
    "data": null
  }
}
```

