脑筋急转弯

GET
https://apix.iqfk.top/api/brainteasers

接口描述

随机获取一道脑筋急转弯的题目及其答案

请求参数

暂无数据

请求示例

var axios = require('axios')

var config = {
  method: 'get',
  url: ''
}

axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })

返回示例

{
    "msg": "世界上的人身体哪一部分的颜色完全相同?",
    "answer": "血液"
  }