List Buzz 获取Buzz列表

POST /v1/platform/buzz/list

  • =》
{ 
  "token": "xxx", //必填
  "lang": "en", //必填
  "classify": 0, //默认为0,可以单个使用(支持按位或操作查询)
  "id": 0, //默认为0
  "type": 0,  //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "category": "xxx", //默认为空
  "sub": "xxx", //默认为空
  "format": "xxx", //默认为空
  "site_id": -1,  //默认为空或-1时,表示所有
  "status": 0, //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "offset": 0, //分页或更多使用,为空时,默认为0
  "limit": 10  //每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "total": 11364,
    "list": [{
      "id": 11364,
      "history_id": 2,
      "classify": 0,
      "type": 0,
      "title": "Bake Some Pasta And We'll Tell You Your Emotional Age",
      "alias": "",
      "slug": "jesseszewczyk/baked-pasta-emotional-age-quiz",
      "category": "Food",
      "sub": "",
      "format": "2-up",
      "cover": "https://quiz.top/i/buzz/cover/4829557.webp",
      "site_id": 0,
      "remark": "",
      "status": 1,
      "updated_at": 1621506344,
      "lang": "en"
     }]
  }
}