> ## 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 oEmbed Metadata

> Cheap, unauthenticated oEmbed metadata for a TikTok video or profile URL.

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


## OpenAPI

````yaml GET /v1/tiktok/oembed
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/oembed:
    get:
      tags:
        - TikTok Videos
      summary: Get oEmbed Metadata
      description: >-
        Cheap, unauthenticated oEmbed metadata for a TikTok video or profile
        URL.
      operationId: getTikTokOEmbed
      parameters:
        - name: url
          in: query
          required: true
          schema:
            type: string
          description: Full TikTok video or profile URL.
        - 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: oEmbed metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TikTokOEmbed'
              example:
                version: '1.0'
                type: video
                title: 'new dance #fyp #dance'
                author_name: charli d'amelio
                author_url: https://www.tiktok.com/@charlidamelio
                provider_name: TikTok
                provider_url: https://www.tiktok.com
                html: <blockquote class="tiktok-embed" ...></blockquote>
                thumbnail_url: https://p16-sign.tiktokcdn-us.com/oembed.jpeg
                thumbnail_width: 576
                thumbnail_height: 1024
                embed_product_id: '7234567890123456789'
                embed_type: video
components:
  schemas:
    TikTokOEmbed:
      type: object
      properties:
        version:
          type: string
        type:
          type: string
        title:
          type: string
        author_name:
          type: string
        author_url:
          type: string
        provider_name:
          type: string
        provider_url:
          type: string
        html:
          type: string
          description: Embed HTML snippet.
        thumbnail_url:
          type: string
        thumbnail_width:
          type: integer
        thumbnail_height:
          type: integer
        embed_product_id:
          type: string
        embed_type:
          type: string
      description: oEmbed metadata for a TikTok URL.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````