像素

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

API接口:

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

请求示例:

curl --location --request GET 'https://8xhd.cc/api/v1/pixels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选 string
搜索查询
type
可选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
sort
可选 string
排序. 可选:降序 desc, 升序 asc 默认为:desc.
per_page
可选 int
每页显示条数. 可选:10 发送到 100 默认为:10.
示例

API接口:

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

请求示例:

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

API接口:

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

请求示例:

curl --location --request POST 'https://8xhd.cc/api/v1/pixels' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
必选 string
像素名称.
type
必选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
value
必选 string
像素ID值
修改

API接口:

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

请求示例:

curl --location --request PUT 'https://8xhd.cc/api/v1/pixels/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
参数
类型
描述
name
可选 string
像素名称.
type
可选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
value
可选 string
像素ID值
删除

API接口:

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

请求示例:

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