> ## 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.

# List Regions

> List supported TikTok content regions.

<Note>
  The regions list is **free** (0 credits).
</Note>


## OpenAPI

````yaml GET /v1/tiktok/regions
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/regions:
    get:
      tags:
        - TikTok Reference
      summary: List Regions
      description: List supported TikTok content regions.
      operationId: listTikTokRegions
      parameters: []
      responses:
        '200':
          description: Supported regions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionsResponse'
              example:
                regions:
                  - code: US
                    country_code: US
                    locale: en
                    name: United States
                  - code: GB
                    country_code: GB
                    locale: en
                    name: United Kingdom
                  - code: DE
                    country_code: DE
                    locale: de
                    name: Germany
                  - code: JP
                    country_code: JP
                    locale: ja
                    name: Japan
components:
  schemas:
    RegionsResponse:
      type: object
      properties:
        regions:
          type: array
          items:
            $ref: '#/components/schemas/RegionInfo'
      required:
        - regions
    RegionInfo:
      type: object
      properties:
        code:
          type: string
        country_code:
          type: string
        locale:
          type: string
        name:
          type: string
      description: A supported TikTok content region.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````