AI Mode
The google_ai_mode
source is designed to retrieve Google AI Mode conversational responses. This configurable source allows you to submit prompts to Google AI Mode and extract the complete response text along with structured metadata.
Google have currently only enabled AI Mode in United States. We are ready to scrape more countries as soon as Google roll this feature out further.
Request samples
The following code examples demonstrate how to retrieve a Google AI Mode response with parsed results enabled.
curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
"source": "google_ai_mode",
"query": "best health trackers under $200",
"render": "html",
"parse": true
}'
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'google_ai_mode',
'query': 'best health trackers under $200',
'render': 'html',
'parse': True
}
# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('USERNAME', 'PASSWORD'),
json=payload,
)
# Print prettified response to stdout.
pprint(response.json())
const https = require("https");
const username = "USERNAME";
const password = "PASSWORD";
const body = {
source: "google_ai_mode",
query: "best health trackers under $200",
render: "html",
parse: true
};
const options = {
hostname: "realtime.oxylabs.io",
path: "/v1/queries",
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization:
"Basic " + Buffer.from(`${username}:${password}`).toString("base64"),
},
};
const request = https.request(options, (response) => {
let data = "";
response.on("data", (chunk) => {
data += chunk;
});
response.on("end", () => {
const responseData = JSON.parse(data);
console.log(JSON.stringify(responseData, null, 2));
});
});
request.on("error", (error) => {
console.error("Error:", error);
});
request.write(JSON.stringify(body));
request.end();
https://realtime.oxylabs.io/v1/queries?source=google_ai_mode&query=best%20health%20trackers%20under%20$200&render=html&parse=true&access_token=12345abcde
<?php
$params = array(
'source' => 'google_ai_mode',
'query' => 'best health trackers under $200',
'render' => 'html',
'parse' => true
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://realtime.oxylabs.io/v1/queries");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_USERPWD, "USERNAME" . ":" . "PASSWORD");
$headers = array();
$headers[] = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo $result;
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
const Username = "USERNAME"
const Password = "PASSWORD"
payload := map[string]interface{}{
"source": "google_ai_mode",
"query": "best health trackers under $200",
"render": "html",
"parse": true,
}
jsonValue, _ := json.Marshal(payload)
client := &http.Client{}
request, _ := http.NewRequest("POST",
"https://realtime.oxylabs.io/v1/queries",
bytes.NewBuffer(jsonValue),
)
request.SetBasicAuth(Username, Password)
response, _ := client.Do(request)
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
namespace OxyApi
{
class Program
{
static async Task Main()
{
const string Username = "USERNAME";
const string Password = "PASSWORD";
var parameters = new
{
source = "google_ai_mode",
query = "best health trackers under $200",
render = "html",
parse = true
};
var client = new HttpClient();
Uri baseUri = new Uri("https://realtime.oxylabs.io");
client.BaseAddress = baseUri;
var requestMessage = new HttpRequestMessage(HttpMethod.Post, "/v1/queries");
requestMessage.Content = JsonContent.Create(parameters);
var authenticationString = $"{Username}:{Password}";
var base64EncodedAuthenticationString = Convert.ToBase64String(System.Text.ASCIIEncoding.UTF8.GetBytes(authenticationString));
requestMessage.Headers.Add("Authorization", "Basic " + base64EncodedAuthenticationString);
var response = await client.SendAsync(requestMessage);
var contents = await response.Content.ReadAsStringAsync();
Console.WriteLine(contents);
}
}
}
package org.example;
import okhttp3.*;
import org.json.JSONArray;
import org.json.JSONObject;
import java.util.concurrent.TimeUnit;
public class Main implements Runnable {
private static final String AUTHORIZATION_HEADER = "Authorization";
public static final String USERNAME = "USERNAME";
public static final String PASSWORD = "PASSWORD";
public void run() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("source", "google_ai_mode");
jsonObject.put("query", "best health trackers under $200");
jsonObject.put("render", "html");
jsonObject.put("parse", true);
Authenticator authenticator = (route, response) -> {
String credential = Credentials.basic(USERNAME, PASSWORD);
return response
.request()
.newBuilder()
.header(AUTHORIZATION_HEADER, credential)
.build();
};
var client = new OkHttpClient.Builder()
.authenticator(authenticator)
.readTimeout(180, TimeUnit.SECONDS)
.build();
var mediaType = MediaType.parse("application/json; charset=utf-8");
var body = RequestBody.create(jsonObject.toString(), mediaType);
var request = new Request.Builder()
.url("https://realtime.oxylabs.io/v1/queries")
.post(body)
.build();
try (var response = client.newCall(request).execute()) {
if (response.body() != null) {
try (var responseBody = response.body()) {
System.out.println(responseBody.string());
}
}
} catch (Exception exception) {
System.out.println("Error: " + exception.getMessage());
}
System.exit(0);
}
public static void main(String[] args) {
new Thread(new Main()).start();
}
}
{
"source": "google_ai_mode",
"query": "best health trackers under $200",
"render": "html",
"parse": true
}
We use the synchronous Realtime integration method in our examples. If you would like to use Proxy Endpoint or asynchronous Push-Pull integration, refer to the integration methods section.
Request parameter values
Generic
Basic setup and customization options for retrieving Google AI Mode.
- mandatory parameter
Structured data
Web Scraper API is capable of extracting either an HTML or JSON object that contains Google AI Mode output, offering structured data on various elements of the results page.
google_ai_mode
structured output
{
"results": [
{
"content": {
"links": [
{
"url": "https://www.runnersworld.com/gear/g61095616/best-cheap-running-watch/",
"text": "The 6 Best Cheap Running Watches Under $200 - Runner's World"
},
{
"url": "https://www.tomsguide.com/best-picks/best-cheap-fitness-trackers",
"text": "We've tested the best cheap fitness trackers available right now"
},
{
"url": "https://www.tomsguide.com/us/best-fitness-trackers,review-2066.html",
"text": "Best fitness trackers in 2025: These are the 6 fitness ... - Tom's Guide"
},
{
"url": "https://www.techradar.com/best/best-cheap-fitness-trackers",
"text": "The best cheap fitness trackers for 2025 - TechRadar"
},
{
"url": "https://www.businessinsider.com/guides/home/best-silent-alarm-clocks",
"text": "The 4 Best Silent Alarm Clocks, Tested and Reviewed"
},
{
"url": "https://www.pcmag.com/picks/the-best-android-watch#:~:text=Pros:%20+%20Slim%2C%20lightweight%2C%20comfortable%20design%20+,Band%20release%20latch%20can%20be%20accidentally%20triggered",
"text": "The Best Android Watch for 2025"
},
{
"url": "https://www.runnersworld.com/uk/gear/tech/a30513694/best-running-watches/#:~:text=Pros:%20+%20Affordable%20price%20+%20Small%2C%20lightweight,features%20%2D%20No%20contactless%20payments%20or%20maps",
"text": "The Best GPS Running Watches 2025: Garmin, Apple and more"
},
{
"url": "https://www.runnersworld.com/gear/a20826961/best-basic-watches-for-runners/#:~:text=Pros:%20+%20Easy%20to%20use%20+%20Solid,life%20+%20Lightweight%20Cons:%20%2D%20Small%20display",
"text": "The 5 Best Basic Running Watches of 2025"
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Google's Shopping Data"
},
{
"url": "https://www.runnersworld.com/gear/g61095616/best-cheap-running-watch/",
"text": "The 6 Best Cheap Running Watches Under $200 - Runner's World"
},
{
"url": "https://www.tomsguide.com/best-picks/best-cheap-fitness-trackers",
"text": "We've tested the best cheap fitness trackers available right now"
},
{
"url": "https://www.tomsguide.com/us/best-fitness-trackers,review-2066.html",
"text": "Best fitness trackers in 2025: These are the 6 fitness ... - Tom's Guide"
}
],
"prompt": "best health trackers under $200",
"citations": [
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.businessinsider.com/guides/home/best-silent-alarm-clocks",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.pcmag.com/picks/the-best-android-watch#:~:text=Pros:%20+%20Slim%2C%20lightweight%2C%20comfortable%20design%20+,Band%20release%20latch%20can%20be%20accidentally%20triggered",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.runnersworld.com/uk/gear/tech/a30513694/best-running-watches/#:~:text=Pros:%20+%20Affordable%20price%20+%20Small%2C%20lightweight,features%20%2D%20No%20contactless%20payments%20or%20maps",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.runnersworld.com/gear/a20826961/best-basic-watches-for-runners/#:~:text=Pros:%20+%20Easy%20to%20use%20+%20Solid,life%20+%20Lightweight%20Cons:%20%2D%20Small%20display",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.runnersworld.com/gear/g61095616/best-cheap-running-watch/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.tomsguide.com/best-picks/best-cheap-fitness-trackers",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.tomsguide.com/us/best-fitness-trackers,review-2066.html",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.techradar.com/best/best-cheap-fitness-trackers",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point."
},
{
"url": "https://www.runnersworld.com/gear/g61095616/best-cheap-running-watch/",
"text": "When choosing a health tracker, consider your specific needs and preferences. If you're a serious runner, the Garmin Forerunner 55 might be ideal due to its focused running features. For overall wellness tracking with an emphasis on stress and sleep, the Fitbit Sense 2 or Fitbit Inspire 3 could be excellent choices. For Android users seeking a balance of features and affordability, the Samsung Galaxy Fit3 stands out. If a large display and a wide variety of workout modes are priorities, the Amazfit Active 2 is a strong contender."
},
{
"url": "https://www.tomsguide.com/best-picks/best-cheap-fitness-trackers",
"text": "When choosing a health tracker, consider your specific needs and preferences. If you're a serious runner, the Garmin Forerunner 55 might be ideal due to its focused running features. For overall wellness tracking with an emphasis on stress and sleep, the Fitbit Sense 2 or Fitbit Inspire 3 could be excellent choices. For Android users seeking a balance of features and affordability, the Samsung Galaxy Fit3 stands out. If a large display and a wide variety of workout modes are priorities, the Amazfit Active 2 is a strong contender."
},
{
"url": "https://blog.google/products/shopping/shopping-graph-explained/",
"text": "When choosing a health tracker, consider your specific needs and preferences. If you're a serious runner, the Garmin Forerunner 55 might be ideal due to its focused running features. For overall wellness tracking with an emphasis on stress and sleep, the Fitbit Sense 2 or Fitbit Inspire 3 could be excellent choices. For Android users seeking a balance of features and affordability, the Samsung Galaxy Fit3 stands out. If a large display and a wide variety of workout modes are priorities, the Amazfit Active 2 is a strong contender."
},
{
"url": "https://www.tomsguide.com/us/best-fitness-trackers,review-2066.html",
"text": "When choosing a health tracker, consider your specific needs and preferences. If you're a serious runner, the Garmin Forerunner 55 might be ideal due to its focused running features. For overall wellness tracking with an emphasis on stress and sleep, the Fitbit Sense 2 or Fitbit Inspire 3 could be excellent choices. For Android users seeking a balance of features and affordability, the Samsung Galaxy Fit3 stands out. If a large display and a wide variety of workout modes are priorities, the Amazfit Active 2 is a strong contender."
}
],
"response_text": "Here are some of the best health trackers you can buy for under $200: Fitbit Sense 2 Advanced Health Smartwatch : Priced at around $199.95, the Sense 2 focuses on health and wellness tracking. It helps identify stress and offers tools to manage it, provides detailed sleep tracking with a unique sleep profile, and monitors key heart health indicators. It boasts a slim, lightweight design and a battery life of up to 6 days. However, it lacks music storage, third-party app support, and Google Assistant. Garmin Forerunner 55 Running Watch : This GPS running smartwatch costs approximately $169 - $200. It tracks time, distance, speed, pace, and heart rate, and offers detailed running data, daily suggested workouts, and built-in sports apps. It's known for its lightweight and comfortable design, ease of use, and adaptive training features. However, the screen can be harder to read compared to more expensive options, and it lacks some advanced features like contactless payments and maps. It is considered the best overall cheap running watch. Fitbit Inspire 3 Health Fitness Tracker : At approximately $79 - $100, the Inspire 3 is a great option for tracking stress, fitness, and sleep. It monitors health metrics like skin temperature and blood oxygen, provides daily readiness and stress management scores, and includes a 6-month Fitbit Premium membership. It features a bright AMOLED screen, lightweight design, and excellent battery life (up to 10 days). However, it lacks onboard GPS. It's recommended as the best cheap Fitbit fitness tracker. Amazfit Active 2 Smart Watch : Priced at around $100 - $115, the Active 2 features a bright 1.32\" display in a sleek stainless steel case, BioTracker technology for heart rate and sleep tracking, and over 160 workout modes. It offers offline maps, a solid battery life (up to 10 days), and wellness monitoring tools. It's a budget-friendly option with a lot of features. Samsung Galaxy Fit3 : With a price range of approximately $53 - $65, the Galaxy Fit3 boasts a battery life of up to 13 days and tracks over 100 workouts and daily activities, including sleep. It allows you to manage calls, texts, and music from your wrist. It's a great option for Android users seeking a feature-rich tracker at a lower price point. Fitbit Sense 2 Advanced Health Smartwatch $199.95 $249.95 4.2 (3k+) Garmin Forerunner 55 $199.99 4.7 (6k+) Fitbit Inspire 3 Health Fitness Tracker $79.95 $99.95 4.4 (4k+) Amazfit Active 2 Smart Watch $79.99 $99.99 4.7 (1k+) Samsung Galaxy Fit3 $52.50 $68.99 4.7 (9k+) See more When choosing a health tracker, consider your specific needs and preferences. If you're a serious runner, the Garmin Forerunner 55 might be ideal due to its focused running features. For overall wellness tracking with an emphasis on stress and sleep, the Fitbit Sense 2 or Fitbit Inspire 3 could be excellent choices. For Android users seeking a balance of features and affordability, the Samsung Galaxy Fit3 stands out. If a large display and a wide variety of workout modes are priorities, the Amazfit Active 2 is a strong contender. Garmin Forerunner 55 $199.99 4.7 (6k+) Fitbit Sense 2 Advanced Health Smartwatch $199.95 $249.95 4.2 (3k+) Fitbit Inspire 3 Health Fitness Tracker $79.95 $99.95 4.4 (4k+) Samsung Galaxy Fit3 $52.50 $68.99 4.7 (9k+) Amazfit Active 2 Smart Watch $84.99 $99.99 4.7 (1k+) See more",
"parse_status_code": 12000
},
"created_at": "2025-07-09 13:29:40",
"updated_at": "2025-07-09 13:30:30",
"page": 1,
"url": "https://www.google.com/search?udm=50&q=best+health+trackers+under+$200&uule=w+CAIQICINdW5pdGVkIHN0YXRlcw&gl=us&hl=en&sei=7m5uaK-YOsqUvr0P867O-Ak&mstk=AUtExfBg1xZcSANuXj3RB6cDp2ObgWfU8vIREzFoqb-lIOEkiMA75fCpvL_vnFr0Ob9m8IVy3WWlVDqpUgSKVEU5K0AEk3vwQkgsHQlZzYK2SaQrkbAvMRsmGc9bRUTdndYZs9LbABdbI1SFbIO4sa6Yf5WfhpE5Ki4Ye54&csuir=1",
"job_id": "7348704899162451969",
"is_render_forced": false,
"status_code": 200,
"parser_type": "",
"parser_preset": null
}
],
"job": {
"callback_url": null,
"client_id": 100420,
"context": [
{
"key": "force_headers",
"value": false
},
{
"key": "force_cookies",
"value": false
},
{
"key": "hc_policy",
"value": true
}
],
"created_at": "2025-07-09 13:29:40",
"domain": "com",
"geo_location": null,
"id": "7348704899162451969",
"limit": 10,
"locale": null,
"pages": 1,
"parse": true,
"parser_type": null,
"parser_preset": null,
"parsing_instructions": null,
"browser_instructions": null,
"render": "html",
"xhr": false,
"markdown": false,
"url": null,
"query": "best health trackers under $200",
"source": "google_ai_mode",
"start_page": 1,
"status": "done",
"storage_type": null,
"storage_url": null,
"subdomain": "www",
"content_encoding": "utf-8",
"updated_at": "2025-07-09 13:30:30",
"user_agent_type": "desktop",
"session_info": null,
"statuses": [],
"client_notes": null,
"_links": [
{
"rel": "self",
"href": "http://data.oxylabs.io/v1/queries/7348704899162451969",
"method": "GET"
},
{
"rel": "results",
"href": "http://data.oxylabs.io/v1/queries/7348704899162451969/results",
"method": "GET"
},
{
"rel": "results-content",
"href_list": [
"http://data.oxylabs.io/v1/queries/7348704899162451969/results/1/content"
],
"method": "GET"
},
{
"rel": "results-html",
"href": "http://data.oxylabs.io/v1/queries/7348704899162451969/results?type=raw",
"method": "GET"
},
{
"rel": "results-content-html",
"href_list": [
"http://data.oxylabs.io/v1/queries/7348704899162451969/results/1/content?type=raw"
],
"method": "GET"
},
{
"rel": "results-parsed",
"href": "http://data.oxylabs.io/v1/queries/7348704899162451969/results?type=parsed",
"method": "GET"
},
{
"rel": "results-content-parsed",
"href_list": [
"http://data.oxylabs.io/v1/queries/7348704899162451969/results/1/content?type=parsed"
],
"method": "GET"
}
]
}
}
The composition of elements may vary depending on whether the query was made from a desktop or mobile device.
Output data dictionary
Navigate through the details using the right-hand navigation or by scrolling down the page.
HTML example

JSON structure
The chatgpt
structured output includes fields like URL
, page
, results
, and others. The table below presents a detailed list of each Google AI Mode element we parse, along with its description and data type. The table also includes some metadata.
The number of items and fields for a specific result type may vary depending on the search query.
content
An object containing the parsed Google AI Mode response data.
object
content.links
List of external links referenced in the response.
array
content.prompt
The original prompt submitted to Google AI Mode.
string
content.citations
List of citation links with URL and text.
array
content.response_text
The complete response text from Google AI Mode.
string
content.markdown_text
The timestamp when the scraping job was created.
string
content.parse_status_code
Status code of the parsing operation.
integer
created_at
The timestamp when the scraping job was created.
timestamp
updated_at
The timestamp when the scraping job was finished.
timestamp
page
Page number.
integer
url
The URL of Google AI Mode.
string
job_id
The ID of the job associated with the scraping job.
string
status_code
The status code of the scraping job. You can see the scraper status codes described here.
integer
In the following sections, parsed JSON code snippets are shortened where more than one item for the result
Last updated
Was this helpful?