https://claw-callback.nexscope.ai/api/skill-api/v1/skills/google-ai-mode-search/runRun this API
Send a JSON request to execute this API and receive the direct response payload.
Endpoint
| Method | POST |
| Path | https://claw-callback.nexscope.ai/api/skill-api/v1/skills/google-ai-mode-search/run |
| Auth | Bearer API key |
| Content-Type | application/json |
Request body
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | required | Google search keyword, passed as the q= parameter to initiate a Google AI Mode search. Only supports single-turn conversation; follow-up prompts are not supported. To ask follow-up questions, the agent must independently summarize key information from the previous AI overview, concatenate the new question, and send it as a new keyword in a new request Example: best phone case material for iPhone |
Request example
{
"keyword": "best phone case material for iPhone"
}Response body
Returns the documented upstream API response directly without an additional wrapper.
| Name | Type | Required | Description |
|---|---|---|---|
stdout | string | optional | AI overview content in Markdown format; outputs key points and reference source links for each question's AI overview in order |
sourceUrl | string | optional | Target URL that was crawled, the final Google search page URL Example: https://example.com/image.jpg |
resultsNum | integer | optional | Number of AI overview blocks; >0 indicates the page rendered an AI Overview, 0 indicates the keyword did not trigger an AI Overview Example: 1 |
code | string | optional | Business status code, success is "200" (same as the numeric errcode) |
errcode | integer | optional | Business status code (HTTP layer is generally 200; business success/failure is determined by this field) Example: 1 |
msg/errmsg | string | optional | Response message, ok on success |
costTime | integer | optional | API latency in milliseconds Example: 1 |
costToken | integer | optional | Token consumption for this call; billed only when upstream returns success Example: 1 |
taskId | string | optional | Upstream capture task identifier for this request Example: example-id |
type | string | optional | Render style, fixed stdoutWorkbenches, used with the stdout field for Markdown rendering |
errmsg | string | optional | Upstream status message returned by the provider. |
msg | string | optional | Provider-specific status message. |
message | string | optional | Provider-specific message. |
title | string | optional | Provider-specific response title. |
sourceType | string | optional | Provider-specific source platform type. |
sourceTool | string | optional | Provider-specific source tool name. |
page | integer | optional | Current page returned by the upstream provider. |
pageSize | integer | optional | Page size returned by the upstream provider. |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. |
totalPage | integer | optional | Total page count returned by the upstream provider. |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. |
Response example
Direct response payload. No extra wrapper is added.
{
"sourceUrl": "https://example.com/image.jpg",
"resultsNum": 1,
"errcode": 1,
"costTime": 1,
"costToken": 1,
"taskId": "example-id"
}Responses
| Code | Description |
|---|---|
| 200 | API executed successfully. Body is the direct response payload. |
| 400 | Request JSON or required API parameters are invalid. |
| 401 | API key is missing, invalid, or cannot be matched to a user. |
| 5xx | API execution or upstream service failed. |
Data source, freshness, and limitations
Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.