工具市场
研究
调用测试Llm Mentions Search Mentions Live
LlmMentionsSearchMentionsLive
- 价格
- 0.101000 USDT / 请求
- 状态
- 可调用
- 官方参考价
- 0.101000 USDT / 请求
- 调用方式
- REST · MCP
调用测试
点击运行后才会提交调用,请先检查参数和费用上限。
运行后,在这里查看状态、费用和返回内容。
接口文档
异步创建成功仅表示取得任务回执。需将回执 ID 传给对应平台的状态或结果接口,确认上游任务是否完成。
curl https://gw.asale.ai/v1/tool-runs \
-H 'Authorization: Bearer <ASALE_API_KEY>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: <UNIQUE_REQUEST_ID>' \
-d '{
"tool": "ai.optimization.llm.mentions.searc.162a92a2e7",
"input": {
"body": [
{
"limit": 1
}
]
},
"max_cost_micros": 101000
}'curl https://gw.asale.ai/v1/tool-runs/<RUN_ID> -H 'Authorization: Bearer <ASALE_API_KEY>'| 参数 | 必填 | 类型 |
|---|---|---|
| body | 否 | array |
完整输入规范
{
"$defs": {
"AiOptimizationLlmMentionsSearchMentionsLiveRequestInfo": {
"properties": {
"filters": {
"anyOf": [
{
"description": "array of results filtering parametersoptional fieldyou can add several filters at once (8 filters maximum)you should set a logical operator and, or between the conditionsthe following operators are supported:=, <>, in, not_in, like, not_like, ilike, not_ilike, match, not_matchyou can use the % operator with like and not_like to match any string of zero or more charactersexample:[\"ai_search_volume\",\">\",1000]The full list of possible filters is available here.",
"items": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
]
},
"type": "array"
},
{
"type": "null"
}
]
},
"language_code": {
"anyOf": [
{
"description": "search language codeoptional fieldif you use this field, you don't need to specify language_name;you can receive the list of available languages of the search engine with their language_code by making a separate request to the value: enNote: chat_gpt data is available for en only",
"type": "string"
},
{
"type": "null"
}
]
},
"language_name": {
"anyOf": [
{
"description": "full name of search languageoptional fieldif you use this field, you don't need to specify language_code;if you don't specify this field, the language_code with en value will be used by default;you can receive the list of available languages of the search engine with their language_name by making a separate request to the chat_gpt data is available for English only",
"type": "string"
},
{
"type": "null"
}
]
},
"limit": {
"anyOf": [
{
"description": "the maximum number of returned objectsoptional fielddefault value: 100maximum value: 1000",
"type": "integer"
},
{
"type": "null"
}
]
},
"location_code": {
"anyOf": [
{
"description": "search location codeoptional fieldif you use this field, you don't need to specify location_nameyou can receive the list of available locations of the search engine with their location_code by making a separate request to the value: 2840Note: chat_gpt data is available for 2840 only",
"type": "integer"
},
{
"type": "null"
}
]
},
"location_name": {
"anyOf": [
{
"description": "full name of search locationoptional fieldif you use this field, you don't need to specify location_codeif you don't specify this field, the location_code with 2840 value will be used by default;you can receive the list of available locations of the search engine with their location_name by making a separate request to the chat_gpt data is available for United States only",
"type": "string"
},
{
"type": "null"
}
]
},
"offset": {
"anyOf": [
{
"description": "offset in the results array of the returned mentions dataoptional fielddefault value: 0example: if you specify the 10 value, the first ten mentions objects in the results array will be omitted and the data will be provided for the successive objects;Note: the maximum value is 1000000, use the search_after_token if you would like to offset more results",
"type": "integer"
},
{
"type": "null"
}
]
},
"order_by": {
"anyOf": [
{
"description": "results sorting rulesoptional fieldyou can use the same values as in the filters array to sort the resultspossible sorting types:asc - results will be sorted in the ascending orderdesc - results will be sorted in the descending orderyou should use a comma to set up a sorting typeexample:[\"ai_search_volume,desc\"]Note: you can set no more than three sorting rules in a single requestyou should use a comma to separate several sorting rules",
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
]
},
"platform": {
"anyOf": [
{
"description": "target platformoptional fieldpossible values:chat_gpt, googleNote: if the platform is not specified, the data is returned for both platformsNote #2:chat_gpt data is available for the United States and English only",
"type": "string"
},
{
"type": "null"
}
]
},
"search_after_token": {
"anyOf": [
{
"description": "token for subsequent requestsoptional fieldprovided in the identical filed of the response to each request;use this parameter to avoid timeouts while trying to obtain over 1000 results in a single request;by specifying the unique search_after_token value from the response array, you will get the subsequent results of the initial task;search_after_token values are unique for each subsequent task ;Note: if the search_after_token is specified in the request, all other parameters should be identical",
"type": "string"
},
{
"type": "null"
}
]
},
"tag": {
"anyOf": [
{
"description": "user-defined task identifieroptional fieldthe character limit is 255you can use this parameter to identify the task and match it with the resultyou will find the specified tag value in the data object of the response",
"type": "string"
},
{
"type": "null"
}
]
},
"target": {
"anyOf": [
{
"description": "array of objects containing target entities required field you can specify up to 10 entities (objects) in the target field one target entity can contain either one domain or one keyword and related parameters examples: target array with a domain entity",
"items": {
"anyOf": [
{
"oneOf": [
{
"$ref": "#/$defs/BaseAiOptimizationLLmMentionsTargetElement"
}
],
"type": "object"
},
{
"type": "null"
}
]
},
"type": "array"
},
{
"type": "null"
}
]
}
},
"type": "object"
},
"BaseAiOptimizationLLmMentionsTargetElement": {
"properties": {
"search_filter": {
"anyOf": [
{
"description": "target domain search filter optional field possible values: include, exclude default value: include",
"type": "string"
},
{
"type": "null"
}
]
},
"search_scope": {
"anyOf": [
{
"description": "target domain search scope optional field possible values: any, sources, search_results default value: any",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": "array"
},
{
"type": "null"
}
]
}
},
"type": "object"
}
},
"additionalProperties": false,
"properties": {
"body": {
"items": {
"anyOf": [
{
"oneOf": [
{
"$ref": "#/$defs/AiOptimizationLlmMentionsSearchMentionsLiveRequestInfo"
}
],
"type": "object"
},
{
"type": "null"
}
]
},
"type": "array"
}
},
"required": [],
"type": "object"
}价格
0.101000 USDT / 请求
显示起始价格。请先获取当前参数的报价;完成后按实际用量结算并退回差额。
测试会使用账户余额,并受所选密钥预算限制。费用上限仅约束本次 API 调用,不包含后续调用或上游周期任务。
价格版本 5
研究
Asale 将同一能力的通道按报价撮合,优先选择可用的低价通道。参考价取各通道已核实参考价的最高值。只有明确未执行的拒绝才可换通道;结果不确定时进入对账,避免重复收费。
供给通道: 1