Google AI Mode

This document provides information about the API and the available POST parameters.

The LLM Scraper enables retrieval of Google AI Mode responses and returns a structured JSON output.


API Setup

Endpoint

https://llm-scraper.netnut.io/search

Authentication

Use HTTP Basic Authentication:

Authorization: Basic <base64(username:password)>

Where <base64(username:password)> is the Base64-encoded string of your NetNut credentials.


Request Body Schema

{
  "prompt": "Explain SEO ranking factors in 2025",   // Required
  "engine": "google-ai-mode",                        // Required
  "country": "us",                                   // Optional
}

Field Descriptions

Field
Description
Parameter Type

prompt

Main prompt sent to ChatGPT. Max length: 4096 chars.

Required

country

Target geographic region for contextual responses.

Optional

engine

The chatbot engine to use. Currently "chatgpt" and "google_ai_mode" is supported.

Required(default: chatgpt)


Example Usage


Response Format

The ChatGPT Scraper always returns structured JSON. No HTML is returned.

Example JSON Response

Last updated