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": "a1b2c3d4-e5f6-7a8b-9c0d-e1f2a3b4c5d6"

timestamp

ISO-8601 timestamp indicating when the request was processed.

"timestamp": "2026-04-16T10:56:56.252Z"

request_duration

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

"request_duration": 14.28

process_duration

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

"process_duration": 14.28

scraper

Scraper name by LLM Engine

"scraper": "Copilot"

Note request_duration is included within process_duration. For example, if request_duration is 14.28 and process_duration is 14.28, the overall time experienced by the client is 14.28 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 are the leading SEO tips in 2026"

text_markdown

Markdown-formatted version of the response, preserving structure such as headings, lists, emphasis, and inline citations.

This field represents the primary readable output of the LLM, including formatting and citation markers as returned by the model.

Example


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 Copilot.

Each citation includes:

  • id

  • title

  • url

  • section: "citations" or "more"

Example


inline_citations

Structured citations extracted directly from the main response text.

Each inline citation represents a specific source tied to an exact text span (anchor) in the generated answer.

Unlike citations, which are a flat list of sources, inline_citations show where and how each source is used inside the content.

Each inline citation includes:

  • id

  • title

  • url

  • text_anchor

Example

Notes

  • A single text span may have multiple inline citations

  • id corresponds to the same source in the citations array


tables

Structured tables extracted from the Copilot response.

Each table includes a title, table_columns array, and table_rows array where each cell is represented as an object with a value key.

Example

Last updated