POSTPublickeyword-extract-extract
关键词提取
从文本中识别并抽取核心关键词,助力内容分析、SEO优化及信息检索。
Endpoint
https://openapi.toolkk.com/keyword-extract/extract
Rate limit
60 req/min
Timeout
5000 ms
从文本中识别并抽取核心关键词,助力内容分析、SEO优化及信息检索。
Endpoint
https://openapi.toolkk.com/keyword-extract/extract
Rate limit
60 req/min
Timeout
5000 ms
All endpoints are intended to be parsed with the standard code, message, and data structure.
{ code, message, data }
curl --request POST \
--url 'https://openapi.toolkk.com/keyword-extract/extract' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--data '{}'{}{
"code": 200,
"data": {
"list": {
"type": "array",
"items": {
"type": "string",
"example": "企业"
},
"example": [
"企业",
"竞争",
"科",
"权威",
"数",
"接入"
],
"description": "所有的关键词数组"
}
},
"message": "success"
}The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| data | object | {...} |
| data.list | object | {...} |
| data.list.type | string | array |
| data.list.description | string | 所有的关键词数组 |
| message | string | success |