Response Fields

This page explains the data returned by the LLM Scraper. Each field is briefly described, with an example where relevant, so teams can quickly understand and integrate the response.

Top-Level Fields

Field
Description
Example

traceID

Unique identifier for the request. Used for debugging, support, and internal tracking.

"traceID": "71f9e0b2-3a77-4ad0-

9a61-23b7e1bfa8d1"

timestamp

ISO-8601 timestamp indicating when the request was processed.

"timestamp": "2025-12-08

T11:39:19.269Z"

request_duration

End-to-end request duration in seconds (from request received to response returned).

"request_duration": 6.3

process_duration

Total internal processing time in seconds. This includes the full request lifecycle.

"process_duration": 6.4

Note request_duration is included within process_duration. For example, if request_duration is 6.3 and process_duration is 6.4, the overall time experienced by the client is 6.4 seconds.


Response Object

The main parsed output from the LLM.


prompt

The original prompt sent to the LLM for this request. This field is always returned as part of the response for traceability and debugging.

Example

"prompt": "what is the best seo tips in 2025"

text (plain text)

Plain-text version of the response with formatting removed. Useful for storage, indexing, or systems that don’t support Markdown.

Example


citations_found

Boolean indicating whether the model output included citations.

Example


citations

Flat list of citation objects extracted from the Google AI Mode UI.

Each citation includes:

  • id

  • title

  • url

  • section: "citations" or "more"

Example

Last updated