链接分组

注意
专享
在请求API中,API密钥需要发送到Bearer key 获取API key.
列表

API接口:

GET
https://8xhd.cc/api/v1/spaces

请求示例:

curl --location --request GET 'https://8xhd.cc/api/v1/spaces' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选 string
搜索查询
sort
可选 string
排序. 可选:降序 desc, 升序 asc 默认为:desc.
per_page
可选 int
每页显示条数. 可选:10 发送到 100 默认为:10.
示例

API接口:

GET
https://8xhd.cc/api/v1/spaces/{id}

请求示例:

curl --location --request GET 'https://8xhd.cc/api/v1/spaces/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
创建

API接口:

POST
https://8xhd.cc/api/v1/spaces

请求示例:

curl --location --request POST 'https://8xhd.cc/api/v1/spaces' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
必选 string
分组名称
color
可选 integer
颜色代码 可选:1, 2, 3, 4, 5, 6 默认为:1.
修改

API接口:

PUT PATCH
https://8xhd.cc/api/v1/spaces/{id}

请求示例:

curl --location --request PUT 'https://8xhd.cc/api/v1/spaces/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
可选 string
分组名称
color
可选 integer
颜色代码 可选:1, 2, 3, 4, 5, 6
删除

API接口:

DELETE
https://8xhd.cc/spaces/{id}/destroy

请求示例:

curl --location --request DELETE 'https://8xhd.cc/spaces/{id}/destroy' \
--header 'Authorization: Bearer {api_key}'