💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 名词解析 * 足球 `football` * 赛事 `match` * 名称 `name` * 地址 `address` * 国家 `country` * 球队 `team` * 主队 `host team` * 客队 `guest team` * 比分 `score` * 得分 `score` * 胜平负 `victory and defeat` * 滚球 `roll ball` * 大小球 `big small ball` * 让球 `concede points` * 进球 `goal` * 未开场 `not open` * 进行中 `have in hand` * 已完场 `already finished` * 上半场 `first half` * 下半场 `second half` * 半全场 `double result` * 比赛时间 `start time` * 停止投注时间(足球比赛开始前两分钟)`stop time` #### 列表 > 类型,1=>胜负,2=>大小球,3=>进球,4=>比分 > 模式,1=>全场胜平负,2=>让球胜负,3=>上半场胜平负,4=>大小球,5=>是否进球,6=>总进球,7=>下一个进球球队,8=>下一个进球时间(分钟),9=>全场比分 > 阶段,0=>未开场,1=>上半场,2=>下半场,3=>已完场 > 状态,10=>未开场,9=>进行中,0=>已完场 ~~~[api] get:/football/index/index number:type=0#类型,0=>全部,1=>热门,2=>... number:p=1#当前页数 number:ps=20#分页大小 <<< success { "message": "success", "code": 1, "data": [ { "id": "1", "match_name": "National League 2", "match_address": "Martvili, 格鲁吉亚", "host_team": "马尔特维利", "guest_team": "FC Tskhinvali", "host_icon": "http://91alice.oss-cn-shenzhen.aliyuncs.com/static/img/no-image.png", "guest_icon": "http://91alice.oss-cn-shenzhen.aliyuncs.com/static/img/no-image.png", "host_concede": "-0.5", "guest_concede": "0", "first_half_host_score": "1", "first_half_guest_score": "0", "host_score": "1", "guest_score": "0", "stage": "3", "sort": "0", "is_hot": "0", "is_settle": "0", "status": "0", "created_at": "1524733200", "updated_at": "1526222860", "start_at": "1524733200", "awards": { "1": [ { "id": "1", "football_id": "1", "type": "1", "mode": "1", "value": "1", "odds": "1", "sort": "1", "is_starting": "0", "status": "10", "created_at": "1514736000", "updated_at": "1514736000" } ] } } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 100 } } <<< error ~~~ #### 详情 ~~~[api] get:/football/index/retrieve *number:id#主键 <<< success { "message": "success", "code": 1, "data": { "id": "1", "match_name": "National League 2", "match_address": "Martvili, 格鲁吉亚", "host_team": "马尔特维利", "guest_team": "FC Tskhinvali", "host_icon": "http://91alice.oss-cn-shenzhen.aliyuncs.com/static/img/no-image.png", "guest_icon": "http://91alice.oss-cn-shenzhen.aliyuncs.com/static/img/no-image.png", "host_concede": "-0.5", "guest_concede": "0", "first_half_host_score": "1", "first_half_guest_score": "0", "host_score": "1", "guest_score": "0", "stage": "3", "sort": "0", "is_hot": "0", "is_settle": "0", "status": "0", "created_at": "1524733200", "updated_at": "1526222860", "start_at": "1524733200", "awards": { "1": [ { "id": "1", "football_id": "1", "type": "1", "mode": "1", "value": "1", "odds": "1", "sort": "1", "is_starting": "0", "status": "10", "created_at": "1514736000", "updated_at": "1514736000" } ] } } } ~~~ #### 投注 ~~~[api] post:/football/index/betting?id=:id *number:award_id#奖项ID *number:point#积分 <<< success { "message": "success", "code": 1, "data": { "point": 9700 } } <<< error ~~~ #### 投注记录 ~~~[api] get:/football/index/betteds <<< success { "message": "success", "code": 1, "data": [ { "id": "40", "football_id": "1", "award_id": "20", "member_id": "6", "point": "100", "record": { "host_score": "0", "guest_score": "0" }, "is_start": "1", "is_calc": "1", "is_winning": "1", "status": "10", "created_at": "1526222163", "updated_at": "1526222163", "mode_text": "下一个进球球队 - 主队", "host_team": "马尔特维利", "guest_team": "FC Tskhinvali", "host_score": "1", "guest_score": "0", "first_half_host_score": "1", "first_half_guest_score": "0" } ], "_meta": { "totalCount": 1, "pageCount": 1, "currentPage": 1, "perPage": 20 } } ~~~ #### 投注记录详情 ~~~[api] get:/football/index/betted *number:id#主键 <<< success { "message": "success", "code": 1, "data": { "id": "28", "football_id": "1", "award_id": "21", "member_id": "6", "point": "100", "record": { "host_score": "0", "guest_score": "0" }, "is_start": "1", "is_calc": "1", "is_winning": "0", "status": "10", "created_at": "1526222165", "updated_at": "1526222165", "mode_text": "下一个进球球队 - 无进球", "host_team": "马尔特维利", "guest_team": "FC Tskhinvali", "host_score": "1", "guest_score": "0", "first_half_host_score": "1", "first_half_guest_score": "0" } } ~~~