文档
测试

查询普通项目ID

GET
http://api.guoqu.best/api/search_project?token=xxxxxx&key=关键词&page=页数 例如:1

请求参数

参数名
类型
描述
必填
token
string
示例:xxxxx
必填
key
string
示例:酷狗
必填
page
int
示例:页数 例如:1
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
list
array
数据列表
必填
id
string
示例:10070
必填
name
string
示例:酷狗音乐
必填
price
float
示例:0.1
必填
type
string
示例:收短信
必填
reciver
string
示例:
必填

说明 / 示例

``` { "code": 200, "list": [ { "id": "10070", "name": "酷狗音乐", "price": 0.1, "type": "收短信", "reciver": "" }, { "id": "10648", "name": "酷狗直播", "price": 0.1, "type": "收短信", "reciver": "" }, { "id": "16735", "name": "酷狗铃声", "price": 0.1, "type": "收短信", "reciver": "" } ] } ```