LLM Chat ScraperScrapersChatGPT

ChatGPT Scraper

Use the scraper.chatgpt actor to capture ChatGPT answers—including the Markdown response, search links, and attribution data—without needing to reverse engineer the UI yourself.

Request Example

curl 'https://api.scrapeless.com/api/v2/scraper/request' \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: {you_api_key}' \
  --data '{
    "actor": "scraper.chatgpt",
    "input": {
      "prompt": "Most reliable proxy service for data extraction",
      "country": "JP",
      "web_search": true
    },
    "webhook": {
      "url": "http://www.youwebhook.com"
    }
  }'

Body Parameters

ParameterTypeRequiredDescription
promptstringYesPrompt to send to ChatGPT.
countrystringYesCountry or region code.
web_searchbooleanNoWhether to enable web search.

Response Fields

Note: If the response includes shopping data (the products field), the API call will be charged at 2x the base rate. This is due to the additional resource overhead required for extracting and processing product information from multiple sources.

ParameterTypeDescription
promptstringOriginal prompt.
result_textstringMarkdown response from ChatGPT.
modelstringModel identifier, e.g., gpt-5-1.
web_searchboolIndicates whether search enrichment ran.
linksarrayArray of supplementary links.
search_resultarraySERP results associated with the response.
search_result.attributionstringSource of the search result.
search_result.snippetstringSnippet supplied by ChatGPT.
search_result.titlestringTitle of the search hit.
search_result.urlstringURL of the search hit.
content_referencesarrayReferences included inside the ChatGPT answer.
content_references.attributionstringSource of the reference.
content_references.titlestringTitle of the referenced content.
content_references.urlstringURL of the referenced content.
productsarrayProduct information returned by ChatGPT.
products.idstringUnique product identifier.
products.titlestringProduct title.
products.descriptionstringProduct description (may be null).
products.pricestringDisplay price, e.g., $799.99.
products.ratingfloatAverage rating score.
products.num_reviewsintNumber of reviews.
products.merchantsstringMerchant names, e.g., Sony + others.
products.image_urlsarrayArray of product image URLs.
products.urlstringProduct page URL.
products.offersarrayArray of purchase offers.
products.offers.merchant_namestringName of the merchant.
products.offers.pricestringOffer price.
products.offers.price_detailsobjectDetailed price breakdown.
products.offers.price_details.basestringBase price.
products.offers.price_details.totalstringTotal price including tax and shipping.
products.offers.availableboolProduct availability status.
products.offers.detailsstringDelivery and stock information.
products.offers.urlstringCheckout or product URL.
products.rating_grouped_citationobjectCitation data for ratings.
products.rating_grouped_citation.titlestringCitation title.
products.rating_grouped_citation.urlstringCitation URL.
products.rating_grouped_citation.supporting_websitesarrayWebsites supporting the rating.
products.rating_grouped_citation.supporting_websites.titlestringWebsite title.
products.rating_grouped_citation.supporting_websites.urlstringWebsite URL.