跳转到主要内容
POST
/
technologies
/
categories
cURL
curl --request POST \
  --url https://api.pubrio.com/technologies/categories \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '{
  "keyword": "<string>"
}'
{
  "data": [
    {
      "category_id": 2159464,
      "slug": "remote-access",
      "name": "Remote access"
    },
    "..."
  ]
}

Authorizations

pubrio-api-key
string
header
required

一个唯一的 API 令牌,用于标识您通过 API 执行的操作以及相应的权限和操作。您可以在 设置 部分创建该令牌。

Body

application/json
keyword
string

通过关键词搜索条目。如果仅需获取前几个(而非全部)条目,可留空。

Response

包含相关详细信息的成功响应。

data
object[] | null

响应信息取决于具体接口。