> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Trending now

> Current trending searches with search_volume, increase_percentage, and related news articles.



## OpenAPI

````yaml GET /v1/google/trends/trending-now
openapi: 3.1.0
info:
  title: ScrapeBadger Google Scraper
  description: >-
    Dedicated API for scraping Google products (SERP, Maps, News, Hotels,
    Trends, Jobs, Shopping, Patents, Scholar, Autocomplete, Images, Videos,
    Finance, AI Mode, Lens, Products).
  version: 1.0.0
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/google/trends/trending-now:
    get:
      tags:
        - Google Trends
      summary: Google Trends — current trending searches
      description: |-
        Current trending searches with the full Google Trends UI filters.

        ``geo`` honored by the upstream feed. ``category`` is passed through
        as ``cat=<letter>``; when the feed ignores it we still return the
        base result set so callers get *something* useful. ``status`` and
        ``sort`` are applied client-side against the parsed result list.
      operationId: trends_trending_now_api_v1_trends_trending_now_get
      parameters:
        - name: geo
          in: query
          required: false
          schema:
            type: string
            description: Country code (e.g. ``US``, ``LT``, ``GB``).
            default: US
            title: Geo
          description: Country code (e.g. ``US``, ``LT``, ``GB``).
        - name: hours
          in: query
          required: false
          schema:
            type: integer
            description: >-
              Look-back window in hours. Google's UI supports 4, 24, 48, 168.
              Passed through to the upstream feed; the public RSS currently
              ignores this filter.
            default: 24
            title: Hours
          description: >-
            Look-back window in hours. Google's UI supports 4, 24, 48, 168.
            Passed through to the upstream feed; the public RSS currently
            ignores this filter.
        - name: category
          in: query
          required: false
          schema:
            type: string
            description: >-
              Category filter. Accepts Google's letter codes (``b`` business,
              ``e`` entertainment, ``m`` health, ``t`` sci/tech, ``s`` sports,
              ``h`` top stories) or the friendly aliases (``business``,
              ``entertainment``, ``health``, ``sci_tech``/``technology``,
              ``sports``, ``top_stories``). ``all`` (default) returns every
              category.
            default: all
            title: Category
          description: >-
            Category filter. Accepts Google's letter codes (``b`` business,
            ``e`` entertainment, ``m`` health, ``t`` sci/tech, ``s`` sports,
            ``h`` top stories) or the friendly aliases (``business``,
            ``entertainment``, ``health``, ``sci_tech``/``technology``,
            ``sports``, ``top_stories``). ``all`` (default) returns every
            category.
        - name: status
          in: query
          required: false
          schema:
            enum:
              - all
              - active
            type: string
            description: >-
              Trend state. ``active`` keeps only entries with a non-zero search
              volume (still surging); ``all`` (default) returns every entry
              including ended ones.
            default: all
            title: Status
          description: >-
            Trend state. ``active`` keeps only entries with a non-zero search
            volume (still surging); ``all`` (default) returns every entry
            including ended ones.
        - name: sort
          in: query
          required: false
          schema:
            enum:
              - relevance
              - search_volume
              - title
              - recency
            type: string
            description: >-
              Sort order. ``relevance`` (default) keeps Google's ordering;
              ``search_volume`` orders by parsed traffic descending; ``title``
              sorts alphabetically; ``recency`` falls back to relevance when the
              feed omits publication timestamps.
            default: relevance
            title: Sort
          description: >-
            Sort order. ``relevance`` (default) keeps Google's ordering;
            ``search_volume`` orders by parsed traffic descending; ``title``
            sorts alphabetically; ``recency`` falls back to relevance when the
            feed omits publication timestamps.
        - name: hl
          in: query
          required: false
          schema:
            type: string
            description: Language code.
            default: en-US
            title: Hl
          description: Language code.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrendsTrendingResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TrendsTrendingResponse:
      properties:
        trending:
          items:
            $ref: '#/components/schemas/TrendsTrendingItem'
          type: array
          title: Trending
        country:
          type: string
          title: Country
          default: US
      type: object
      title: TrendsTrendingResponse
      description: Response for GET /api/v1/trends/trending.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TrendsTrendingItem:
      properties:
        title:
          type: string
          title: Title
        traffic:
          anyOf:
            - type: string
            - type: 'null'
          title: Traffic
        articles:
          items:
            $ref: '#/components/schemas/TrendsTrendingArticle'
          type: array
          title: Articles
      type: object
      required:
        - title
      title: TrendsTrendingItem
      description: A trending search item.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    TrendsTrendingArticle:
      properties:
        title:
          type: string
          title: Title
        link:
          anyOf:
            - type: string
            - type: 'null'
          title: Link
        source:
          anyOf:
            - type: string
            - type: 'null'
          title: Source
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail
      type: object
      required:
        - title
      title: TrendsTrendingArticle
      description: An article associated with a trending search.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````