Extract structured data from ChatGPT with shopping cards, entity extraction, and advanced features for monitoring products, prices, and brand mentions.
Documentation Index
Fetch the complete documentation index at: https://docs.cloro.dev/llms.txt
Use this file to discover all available pages before exploring further.
include.* flags are listed in the auto-generated request schema below.
include.rawResponse, include.searchQueries, include.ads, or include.shopping (or any combination) adds +2 credits to the base cost.| Section | Description |
|---|---|
| Sources | Source citations with publication dates and footnote indicators |
| Shopping cards | Structured product information with pricing, ratings, and offers |
| Inline products | Individual product references with rationale and themed reviews |
| Entities | Named entities like products, brands, and concepts |
| Map entries | Business and place information from Yelp and Google |
| Citation pills | Inline citations with rich metadata |
| Ads | Advertiser branding and product carousel cards |
| Field | Type | Description |
|---|---|---|
result.rawResponse | array | Array of ChatGPT’s streamed response events (included when include.rawResponse is true) |
result.searchQueries | array | Array of search model queries (fan-out queries) ChatGPT used internally to gather information (included when include.searchQueries is true) |
result.ads | array | Array of ads displayed in ChatGPT response (included when include.ads is true) |
result.shoppingCards | array | Array of shopping/product cards extracted from response (included when include.shopping is true) |
result.inlineProducts | array | Array of inline products with pricing and offers (included when include.shopping is true) |
result.entities | array | Array of entities extracted from response (when available) |
result.map | array | Array of business/place map entries extracted from response (when available) |
result.citationPills | array | Array of inline citation pills extracted from response (when available) |
result.sources | array | Array of sources referenced in the response. See Sources for ChatGPT-specific fields |
result.model | string | The ChatGPT model used to generate the response |
include.searchQueries: true in your ChatGPT requests.
gpt-5-3 and gpt-5-3-mini that include fan-out queries; newer models may not include explicit fan-outs. ChatGPT automatically selects which model to use for each request, so we cannot control the presence of query fan-outs.
include.shopping: true is set in the request.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request parameters for monitoring ChatGPT responses
The prompt to send to ChatGPT
1 - 10000"What do you know about Acme Corp?"
Country/region code for localized response
"US"
Optional flags for including additional response formats
{
"html": true,
"markdown": true,
"rawResponse": true,
"searchQueries": true,
"ads": true,
"shopping": true
}