serpapi / public-roadmap

Public Roadmap for SerpApi, LLC (https://serpapi.com)
56 stars 6 forks source link

[Google Search API] Random position of reviews inside rich snippet #2135

Open Krugloff opened 4 days ago

Krugloff commented 4 days ago

The reviews inside rich snipeed were parsed randomly. Sometimes, identical requests for devices and mobiles return reviews at both the top and bottom.

Incorrect Device Top

Screenshot 2024-11-18 at 01 06 45
rich_snippet: {
  top: {
    extensions: ["Rating: 4.4", "29,015 votes"],
    detected_extensions: { rating: 4.4, votes: 29015 }
  }
}

Internal links: Specs

Correct Device Top

image

Internal links: Specs

image

Internal links: Specs

Correct Device Bottom

Screenshot 2024-11-18 at 01 02 04
rich_snippet: {
  bottom: {
    extensions: ["Rating: 4.8", "408 votes", "50 mins"],
    detected_extensions: { rating: 4.8, votes: 408, mins: 50 }
  }
}

Internal links: Specs

Correct Mobile Bottom

Screenshot 2024-11-18 at 01 04 15
rich_snippet: {
  bottom: {
    extensions: ["Rating 4.0  (416) ", " 4.0  (416) "],
    detected_extensions: { rating: 4.0, reviews: 416 }
  }
}

Internal links: Specs

Krugloff commented 3 days ago

Hotel de coronado rating

Incorrect Device Top

Screenshot 2024-11-18 at 16 42 21
         {
            extensions: ["3.5(8,122)", "$$$ (Based on Average Nightly Rates for a Standard Room from our Partners)"],
            detected_extensions: { price: "$$$", rating: 3.5, reviews: 8122 },
          },
          {
            extensions: ["3.0(2,504)", "$$$"],
            detected_extensions: { price: "$$$", rating: 3.0, reviews: 2504 },
          }

Internal Liks: Specs

Correct Mobile Bottom

Screenshot 2024-11-18 at 16 43 25
          {
            extensions: ["3.5(8,122)", "Price range: $$$ (Based on Average Nightly Rates for a Standard Room from our Partners)"],
            detected_extensions: { rating: 3.5, reviews: 8122, price_range: "$$$" }
          },
          {
            extensions: ["3.0(2,503)", "Price range: $$$"],
            detected_extensions: { rating: 3.0, reviews: 2503, price_range: "$$$" }
          }

Internal Liks: Specs

Krugloff commented 3 days ago

proffrating reviews

Incorrect Device Top

Screenshot 2024-11-18 at 16 47 38
          {
            extensions: ["Rating: 5", "1 review", "$350.00"],
            detected_extensions: { rating: 5, review: 1, price: 350.0, currency: "$" }
          },
          {
            extensions: ["Rating: 5", "1 vote"],
            detected_extensions: { rating: 5, :vote=>1}
          },
          {
            extensions: ["Rating: 5", "1 review"],
            detected_extensions: { rating: 5, review: 1 }
          },
          {
            extensions: ["Rating: 4.4", "11 reviews"],
            detected_extensions: { rating: 4.4, reviews: 11 }
          },

Interanl Links: Specs

Correct Mobile Botton

Screenshot 2024-11-18 at 16 49 35
{
            extensions: ["5.0(1)", "$350.00"],
            detected_extensions: { price: 350.0, currency: "$", rating: 5.0, reviews: 1 }
          },
          {
            extensions: ["5.0(1)"],
            detected_extensions: { rating: 5.0, reviews: 1 }
          },
          {
            extensions: ["5.0(1)"],
            detected_extensions: { rating: 5.0, reviews: 1 }
          },
          {
            extensions: ["4.4(11)"],
            detected_extensions: { rating: 4.4, reviews: 11 }
          }

Internal Links: Specs

Krugloff commented 2 days ago

Tablet Top or Bottom?

image

Given

bottom: {
            extensions: ["Blippi shows you a children's museum where you will learn colors and more! This play place is a learning playground for kids with Blippi. Your child will learn ...", "Rating  4.1  (462) "],
            detected_extensions: { rating: 4.0, reviews: 462 }
          },

Internal links: Specs