> ## Documentation Index
> Fetch the complete documentation index at: https://scrapebadger-feat-flights-booking-options.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Hashtag Detail

> TikTok hashtag/challenge detail (video count, view count, cover).

<Note>
  Each request costs **5 credits**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/tiktok/hashtags/{name}
openapi: 3.1.0
info:
  title: ScrapeBadger TikTok API
  version: 1.0.0
  description: >-
    TikTok scraping API for user profiles, videos, comments, transcripts,
    hashtags, music/sounds, search, trending, and the EU Commercial Content (ad
    transparency) library. Returns clean structured JSON; handles signing,
    anti-bot bypass, and regional proxy routing automatically.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/tiktok/hashtags/{name}:
    get:
      tags:
        - TikTok Hashtags
      summary: Get Hashtag Detail
      description: Hashtag/challenge detail (video count, view count, cover).
      operationId: getTikTokHashtag
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
          description: The hashtag text, without the leading '#'.
        - name: region
          in: query
          schema:
            type: string
            default: US
          description: >-
            Content region (ISO 3166-1 alpha-2). Routes the request through a
            proxy and signer for that locale.
      responses:
        '200':
          description: Hashtag detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HashtagResponse'
              example:
                hashtag:
                  id: '229207'
                  title: fyp
                  description: Videos on the For You feed.
                  cover: https://p16-sign.tiktokcdn-us.com/hashtag.jpeg
                  video_count: 12000000
                  view_count: 55000000000000
                  is_commerce: false
                  url: https://www.tiktok.com/tag/fyp
                region: US
components:
  schemas:
    HashtagResponse:
      type: object
      properties:
        hashtag:
          $ref: '#/components/schemas/TikTokHashtag'
        region:
          type: string
      required:
        - hashtag
        - region
    TikTokHashtag:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
          description: Name without '#'.
        description:
          type: string
        cover:
          type: string
        profile_larger:
          type: string
        video_count:
          type: integer
        view_count:
          type: integer
        is_commerce:
          type: boolean
        url:
          type: string
      description: A hashtag/challenge detail.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````