关键词提取
开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
POST
/v2/text/keyword_extraction
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/v2/text/keyword_extraction' \
--header 'Authorization;' \
--header 'content-type: application/json' \
--data-raw '{
"response_as_dict": true,
"attributes_as_list": false,
"show_original_response": false
}'
响应示例响应示例
200 - 成功示例
{
"amazon": {
"items": [
{
"keyword": "Barack Hussein Obama",
"importance": 1
},
{
"keyword": "an American politician",
"importance": 1
},
{
"keyword": "the 44th president",
"importance": 1
},
{
"keyword": "the United States",
"importance": 1
},
{
"keyword": "2009 to 2017",
"importance": 1
},
{
"keyword": "A member",
"importance": 1
},
{
"keyword": "the Democratic Party",
"importance": 1
},
{
"keyword": "Obama",
"importance": 0.97
},
{
"keyword": "the first African-American president",
"importance": 1
},
{
"keyword": "the United States",
"importance": 1
}
]
},
"ibm": {
"items": [
{
"keyword": "member of the Democratic Party",
"importance": 0.94
},
{
"keyword": "Barack Hussein Obama",
"importance": 0.94
},
{
"keyword": "American politician",
"importance": 0.91
},
{
"keyword": "Illinois",
"importance": 0.57
},
{
"keyword": "Obama",
"importance": 0.56
},
{
"keyword": "U.S. senator",
"importance": 0.47
},
{
"keyword": "44th president of the United States",
"importance": 0.4
},
{
"keyword": "Illinois state senator",
"importance": 0.34
},
{
"keyword": "first African-American president of the United States",
"importance": 0.18
}
]
},
"corticalio": {
"items": [
{
"keyword": "president of the united states",
"importance": 1
},
{
"keyword": "obama",
"importance": 0.86
},
{
"keyword": "american politician who served",
"importance": 0.7
},
{
"keyword": "member of the democratic party",
"importance": 0.63
},
{
"keyword": "illinois state",
"importance": 0.6
},
{
"keyword": "hussein",
"importance": 0.51
},
{
"keyword": "barack",
"importance": 0.47
}
]
},
"emvista": {
"items": [
{
"keyword": "Barack",
"importance": 0.25
},
{
"keyword": "Hussein",
"importance": 0.25
},
{
"keyword": "Obama",
"importance": 0.5
},
{
"keyword": "be",
"importance": 0.5
},
{
"keyword": "a",
"importance": 1
},
{
"keyword": "american",
"importance": 0.5
},
{
"keyword": "politician",
"importance": 0.25
},
{
"keyword": "serve",
"importance": 0.5
},
{
"keyword": "as",
"importance": 0.75
},
{
"keyword": "44th",
"importance": 0.25
}
]
},
"openai": {
"items": [
{
"keyword": "Barack Hussein Obama",
"importance": 0.9
},
{
"keyword": "American politician",
"importance": 0.8
},
{
"keyword": "44th president",
"importance": 0.7
},
{
"keyword": "United States",
"importance": 0.8
},
{
"keyword": "Democratic Party",
"importance": 0.6
},
{
"keyword": "African-American president",
"importance": 0.9
},
{
"keyword": "U.S. senator",
"importance": 0.7
},
{
"keyword": "Illinois state senator",
"importance": 0.6
}
]
},
"microsoft": {
"items": [
{
"keyword": "U.S. senator",
"importance": null
},
{
"keyword": "first African-American president",
"importance": null
},
{
"keyword": "Barack Hussein Obama",
"importance": null
},
{
"keyword": "Illinois state senator",
"importance": null
},
{
"keyword": "44th president",
"importance": null
},
{
"keyword": "American politician",
"importance": null
},
{
"keyword": "United States",
"importance": null
},
{
"keyword": "Democratic Party",
"importance": null
},
{
"keyword": "member",
"importance": null
}
]
},
"nlpcloud": {
"items": [
{
"keyword": "Barack Obama",
"importance": null
},
{
"keyword": "44th president",
"importance": null
},
{
"keyword": "United States",
"importance": null
},
{
"keyword": "Democratic Party",
"importance": null
},
{
"keyword": "African-American",
"importance": null
},
{
"keyword": "U.S. senator",
"importance": null
},
{
"keyword": "Illinois",
"importance": null
},
{
"keyword": "2005-2008",
"importance": null
},
{
"keyword": "Illinois state senator",
"importance": null
},
{
"keyword": "1997-2004.",
"importance": null
}
]
},
"tenstorrent": {
"items": [
{
"keyword": "barack hussein obama",
"importance": 1
},
{
"keyword": "democratic party",
"importance": 0.98
},
{
"keyword": "u. s. senator",
"importance": 0.98
},
{
"keyword": "illinois state",
"importance": 0.96
},
{
"keyword": "president of the united states",
"importance": 0.91
},
{
"keyword": "african - american president",
"importance": 0.86
}
]
},
"eden-ai": {
"status": "success",
"items": [
{
"keyword": "the first African-American president",
"importance": 1
},
{
"keyword": "member of the Democratic Party",
"importance": 0.94
},
{
"keyword": "president of the united states",
"importance": 1
},
{
"keyword": "american politician who served",
"importance": 0.7
},
{
"keyword": "an American politician",
"importance": 1
},
{
"keyword": "barack hussein obama",
"importance": 1
},
{
"keyword": "the 44th president",
"importance": 1
},
{
"keyword": "illinois state",
"importance": 0.96
},
{
"keyword": "u. s. senator",
"importance": 0.98
},
{
"keyword": "2009 to 2017",
"importance": 1
},
{
"keyword": "U.S. senator",
"importance": 0.7
},
{
"keyword": "A member",
"importance": 1
}
]
}
}
请求参数
Header 参数
content-type
string
必需
示例值:
application/json
Authorization
string
必需
默认值:
Bearer <your_key>
Body 参数application/json
返回响应
修改于 2024-04-11 06:55:50