{
  "openapi": "3.0.0",
  "info": {
    "title": "Social Fetch Public API",
    "version": "1.0.0",
    "description": "REST API for Social Fetch. Versioned routes under `/v1` require authentication via the `x-api-key` header (API key value)."
  },
  "servers": [
    {
      "url": "https://api.socialfetch.dev",
      "description": "API origin"
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "x-api-key",
        "description": "API key (`sfk_...`)"
      }
    },
    "schemas": {},
    "parameters": {}
  },
  "paths": {
    "/health": {
      "get": {
        "tags": [
          "System"
        ],
        "summary": "Health check",
        "description": "Check API availability.",
        "responses": {
          "200": {
            "description": "Service is running",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "enum": [
                        "ok"
                      ],
                      "description": "Health status for the service."
                    }
                  },
                  "required": [
                    "status"
                  ],
                  "description": "Simple health check response."
                }
              }
            }
          },
          "429": {
            "description": "Health endpoint rate limited",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/whoami": {
      "get": {
        "tags": [
          "Auth"
        ],
        "summary": "Whoami",
        "description": "Get the authenticated API account.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "user": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string",
                              "description": "Internal Social Fetch user identifier."
                            },
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "Display name for the authenticated user, when available."
                            },
                            "email": {
                              "type": "string",
                              "nullable": true,
                              "description": "Email address for the authenticated user, when available."
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "email"
                          ],
                          "description": "Authenticated user associated with the provided API key."
                        }
                      },
                      "required": [
                        "user"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "example": {
                  "data": {
                    "user": {
                      "id": "nizsoaaBymR4pospV7cNLcNUw01O6C9P",
                      "name": "Lukem121",
                      "email": "lukeask@hotmail.co.uk"
                    }
                  },
                  "meta": {
                    "requestId": "req_42b54391-91b3-47f2-b435-9a82f39dd68f",
                    "creditsCharged": 0,
                    "version": "v1"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "429": {
            "description": "Rate limit exceeded for this free endpoint",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/balance": {
      "get": {
        "tags": [
          "Auth"
        ],
        "summary": "Get account balance",
        "description": "Get your account credit balance.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "balance": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Spendable credits. Grace buffer counts only after included and PAYG credits are exhausted."
                        },
                        "payg": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Total PAYG bucket, including pre-granted grace not yet spendable."
                        },
                        "paygSpendable": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "PAYG credits spendable before grace. Equals `payg` when not in grace."
                        },
                        "graceDebtCredits": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Grace buffer for the current unpaid refill episode (0 if none). Excluded from `balance` until spendable credits are spent."
                        },
                        "refillState": {
                          "type": "string",
                          "nullable": true,
                          "enum": [
                            "healthy",
                            "grace",
                            "exhausted",
                            null
                          ],
                          "description": "Auto-refill state: `healthy`, `grace`, or `exhausted`. Null when auto-refill is off."
                        },
                        "billingAlert": {
                          "type": "string",
                          "enum": [
                            "none",
                            "payment_action_required",
                            "suspended"
                          ],
                          "description": "Billing health: `none`, `payment_action_required`, or `suspended`. Check alongside `balance` for alerts."
                        },
                        "subscriptionIncludedRemaining": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Included credits left this period (0 if not subscribed)."
                        },
                        "subscriptionIncludedTotal": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Included credits granted this period (0 if not subscribed)."
                        },
                        "subscription": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "tier": {
                              "type": "string",
                              "description": "Subscription tier (e.g. `starter`)."
                            },
                            "status": {
                              "type": "string",
                              "description": "Subscription status (e.g. `active`, `past_due`)."
                            },
                            "periodEnd": {
                              "type": "string",
                              "description": "When the current included-credit period ends (ISO 8601)."
                            }
                          },
                          "required": [
                            "tier",
                            "status",
                            "periodEnd"
                          ],
                          "description": "Subscription summary, or `null` for PAYG-only callers."
                        },
                        "collectionStatus": {
                          "type": "string",
                          "enum": [
                            "current",
                            "base_past_due",
                            "suspended"
                          ],
                          "description": "Subscription collection status."
                        }
                      },
                      "required": [
                        "balance",
                        "payg",
                        "paygSpendable",
                        "graceDebtCredits",
                        "refillState",
                        "billingAlert",
                        "subscriptionIncludedRemaining",
                        "subscriptionIncludedTotal",
                        "subscription",
                        "collectionStatus"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "example": {
                  "data": {
                    "balance": 59816,
                    "billingAlert": "none",
                    "payg": 9816,
                    "paygSpendable": 9816,
                    "graceDebtCredits": 0,
                    "refillState": "healthy",
                    "subscriptionIncludedRemaining": 50000,
                    "subscriptionIncludedTotal": 50000,
                    "subscription": {
                      "tier": "scale",
                      "status": "active",
                      "periodEnd": "2026-08-01T00:00:00.000Z"
                    },
                    "collectionStatus": "current"
                  },
                  "meta": {
                    "requestId": "req_41e1520a-a1aa-41ab-9c8b-a2e3ed14100f",
                    "creditsCharged": 0,
                    "version": "v1"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "429": {
            "description": "Rate limit exceeded for this free endpoint",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/ask": {
      "post": {
        "tags": [
          "System"
        ],
        "summary": "Ask in natural language",
        "description": "Ask a natural-language question and get a routed public API lookup.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 0,
          "surcharges": [],
          "maxCredits": 0,
          "normalizationFailureCredits": 0
        },
        "x-socialfetch-credits-pricing": "0 credits per successful request.",
        "x-socialfetch-agent-hints": {
          "disambiguation": "One-shot routing only — not a chat. Prefer typed MCP/REST endpoints when you know the operation; use nl_ask_post / POST /v1/ask for exploratory natural-language lookups. For LLM Q&A about a single URL, use GET /v1/web/ask instead."
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "query": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 500,
                    "description": "Natural-language question to route to a public API lookup."
                  }
                },
                "required": [
                  "query"
                ],
                "description": "Request body for POST /v1/ask."
              },
              "example": {
                "query": "How many TikTok followers does MrBeast have?"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Routed lookup result with the underlying public API response nested in `data.lookup`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Echo of the submitted natural-language question."
                        },
                        "routedOperation": {
                          "type": "object",
                          "properties": {
                            "operationId": {
                              "type": "string",
                              "description": "Resolved public API operation id, e.g. youtube.channel.get."
                            },
                            "method": {
                              "type": "string",
                              "description": "HTTP method for the routed lookup."
                            },
                            "path": {
                              "type": "string",
                              "description": "OpenAPI path template for the routed lookup."
                            },
                            "params": {
                              "type": "object",
                              "additionalProperties": {
                                "nullable": true
                              },
                              "description": "Path and query parameters for the routed lookup."
                            }
                          },
                          "required": [
                            "operationId",
                            "method",
                            "path",
                            "params"
                          ],
                          "description": "Resolved public API operation for the natural-language request."
                        },
                        "lookup": {
                          "type": "object",
                          "properties": {
                            "data": {
                              "nullable": true,
                              "description": "Success payload from the routed lookup. Shape depends on the resolved operation."
                            },
                            "meta": {
                              "type": "object",
                              "properties": {
                                "requestId": {
                                  "type": "string",
                                  "description": "Request id for the nested lookup response."
                                },
                                "creditsCharged": {
                                  "type": "number",
                                  "description": "Credits charged for the routed lookup."
                                },
                                "version": {
                                  "type": "string",
                                  "enum": [
                                    "v1"
                                  ]
                                }
                              },
                              "required": [
                                "requestId",
                                "creditsCharged",
                                "version"
                              ]
                            }
                          },
                          "required": [
                            "meta"
                          ],
                          "description": "Nested lookup response from the routed public API operation."
                        }
                      },
                      "required": [
                        "query",
                        "routedOperation",
                        "lookup"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "example": {
                  "data": {
                    "query": "How many TikTok followers does MrBeast have?",
                    "routedOperation": {
                      "operationId": "tiktok.profile.get",
                      "method": "GET",
                      "path": "/v1/tiktok/profiles/{handle}",
                      "params": {
                        "handle": "MrBeast"
                      }
                    },
                    "lookup": {
                      "data": {
                        "lookupStatus": "found"
                      },
                      "meta": {
                        "requestId": "req_example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "meta": {
                    "requestId": "req_example",
                    "creditsCharged": 1,
                    "version": "v1"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query or routing failure",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup failed",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Temporarily unavailable",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/profiles": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Facebook profile",
        "description": "Get a Facebook profile or page.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Facebook public profile or page URL to look up."
            },
            "required": true,
            "description": "Facebook public profile or page URL to look up.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "Optional: include structured business hours in the response when available."
            },
            "required": false,
            "description": "Optional: include structured business hours in the response when available.",
            "name": "includeBusinessHours",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Lookup result. Check `data.lookupStatus` for `found`, `private`, or `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "private",
                            "not_found"
                          ],
                          "description": "Whether the profile was resolved."
                        },
                        "profile": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "facebook"
                              ],
                              "description": "Social platform for this profile."
                            },
                            "profileType": {
                              "type": "string",
                              "enum": [
                                "person",
                                "business"
                              ],
                              "description": "Whether the lookup resolved to a personal profile or business page."
                            },
                            "displayName": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public display name shown on the Facebook profile or page."
                            },
                            "profileUrl": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public Facebook profile or page URL."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available avatar image URL."
                            },
                            "coverImageUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available cover image URL."
                            },
                            "platformUserId": {
                              "type": "string",
                              "description": "Facebook profile or page id when available."
                            },
                            "gender": {
                              "type": "string",
                              "nullable": true,
                              "enum": [
                                "female",
                                "male",
                                "unknown",
                                null
                              ],
                              "description": "Gender label when available for personal profiles."
                            }
                          },
                          "required": [
                            "platform",
                            "profileType",
                            "displayName",
                            "profileUrl",
                            "avatarUrl",
                            "coverImageUrl"
                          ],
                          "description": "Profile details when available."
                        },
                        "metrics": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "likes": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Page likes count when available."
                            },
                            "followers": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Page follower count when available."
                            },
                            "ratingCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Number of public ratings or reviews when available."
                            }
                          },
                          "required": [
                            "likes",
                            "followers",
                            "ratingCount"
                          ],
                          "description": "Profile metrics when available."
                        },
                        "contact": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "address": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public business address when available."
                            },
                            "email": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public contact email when available."
                            },
                            "phone": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public phone number when available."
                            },
                            "website": {
                              "type": "string",
                              "nullable": true,
                              "description": "Primary public website URL when available."
                            }
                          },
                          "required": [
                            "address",
                            "email",
                            "phone",
                            "website"
                          ],
                          "description": "Public contact information when available."
                        },
                        "business": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "intro": {
                              "type": "string",
                              "nullable": true,
                              "description": "Short public introduction shown on the page when available."
                            },
                            "category": {
                              "type": "string",
                              "nullable": true,
                              "description": "Primary category label when available."
                            },
                            "services": {
                              "type": "string",
                              "nullable": true,
                              "description": "Service summary when available."
                            },
                            "priceRange": {
                              "type": "string",
                              "nullable": true,
                              "description": "Displayed price range when available."
                            },
                            "ratingText": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public rating summary text when available."
                            },
                            "isActive": {
                              "type": "boolean",
                              "description": "Whether the page is marked as an active business page."
                            },
                            "createdDateText": {
                              "type": "string",
                              "nullable": true,
                              "description": "Human-readable page creation date when available."
                            },
                            "adLibraryStatus": {
                              "type": "string",
                              "nullable": true,
                              "description": "Advertising activity summary when available."
                            },
                            "adLibraryPageId": {
                              "type": "string",
                              "nullable": true,
                              "description": "Facebook page id shown in the ad library when available."
                            },
                            "hours": {
                              "type": "object",
                              "properties": {
                                "monday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "tuesday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "wednesday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "thursday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "friday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "saturday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                },
                                "sunday": {
                                  "type": "object",
                                  "properties": {
                                    "open": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Opening time for the first interval when available."
                                    },
                                    "close": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Closing time for the last interval when available."
                                    },
                                    "intervals": {
                                      "type": "array",
                                      "items": {
                                        "type": "object",
                                        "properties": {
                                          "open": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "Start time for one business-hours interval when available."
                                          },
                                          "close": {
                                            "type": "string",
                                            "nullable": true,
                                            "description": "End time for one business-hours interval when available."
                                          }
                                        },
                                        "required": [
                                          "open",
                                          "close"
                                        ],
                                        "description": "A single opening-hours interval."
                                      },
                                      "description": "Structured opening intervals for the day."
                                    },
                                    "text": {
                                      "type": "string",
                                      "description": "Human-readable business-hours text for the day."
                                    }
                                  },
                                  "required": [
                                    "open",
                                    "close",
                                    "intervals",
                                    "text"
                                  ],
                                  "description": "Business hours for one weekday."
                                }
                              },
                              "description": "Structured business hours when requested and available."
                            }
                          },
                          "required": [
                            "intro",
                            "category",
                            "services",
                            "priceRange",
                            "ratingText"
                          ],
                          "description": "Business-page-specific details when available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "profile",
                        "metrics",
                        "contact",
                        "business"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "profile": {
                          "platform": "facebook",
                          "profileType": "person",
                          "displayName": "Carly Cross",
                          "profileUrl": "https://www.facebook.com/carly.cross.5",
                          "avatarUrl": "https://scontent-mia3-2.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_dst-jpg_s200x200_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwGAfKRT&_nc_oc=AdoTOmGyZWcO_nsPhuJxpKfLa7TDML8rGs8PNRUXphrCtuAYsZ6_1or9SL7Q4mhulaI&_nc_zt=24&_nc_ht=scontent-mia3-2.xx&_nc_gid=YzuYpZJqm6ykvk0oJe_fTg&_nc_ss=7e289&oh=00_Af56TxT5ddQ00rnsW8nXiHWWLAtWX4zavlw3Z-EOORvUPw&oe=6A0F3C41",
                          "coverImageUrl": "https://scontent-mia3-3.xx.fbcdn.net/v/t39.30808-6/495995630_23916984487918966_6583159705852966112_n.jpg?stp=cp6_dst-jpg_s960x960_tt6&_nc_cat=108&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=nt2nA0choW8Q7kNvwGx1N4m&_nc_oc=Adq8Jfehj_xkueeaY_8KZkC5vO86jmZUe2_OYJfQIPb5b7px9_cwDFFS4jSOS7OW41A&_nc_zt=23&_nc_ht=scontent-mia3-3.xx&_nc_gid=YzuYpZJqm6ykvk0oJe_fTg&_nc_ss=7e289&oh=00_Af7xUcIAVb-s3CN-UJ-t8agl-h5C0xceMTLuiVdtNN2ScQ&oe=6A0F4D76",
                          "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                          "gender": "female"
                        },
                        "metrics": null,
                        "contact": null,
                        "business": null
                      },
                      "meta": {
                        "requestId": "req_bbb28983-bc5d-42ca-a6da-bf5ef4275778",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "found_business": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "profile": {
                          "platform": "facebook",
                          "profileType": "business",
                          "displayName": "Mantraindian",
                          "profileUrl": "https://www.facebook.com/mantraindianfolsom",
                          "avatarUrl": "https://example.com/avatar.jpg",
                          "coverImageUrl": "https://example.com/cover.jpg",
                          "platformUserId": "100088017857524",
                          "gender": "unknown"
                        },
                        "metrics": {
                          "likes": 4228,
                          "followers": 4200,
                          "ratingCount": null
                        },
                        "contact": {
                          "address": "1870 Prairie City Rd, Suite 500, Folsom, CA, United States, California",
                          "email": "contact@mantraindian.com",
                          "phone": "+1 916-999-1749",
                          "website": "https://www.mantraindian.com/"
                        },
                        "business": {
                          "intro": "Indian Vegan & Vegetarian Restaurant",
                          "category": "Restaurant",
                          "services": "Delivery · Takeaway · Dine in…",
                          "priceRange": "$$",
                          "ratingText": "Not yet rated (1 review)",
                          "isActive": false,
                          "createdDateText": "November 25, 2022",
                          "adLibraryStatus": "This Page is currently running ads.",
                          "adLibraryPageId": "104359362513119",
                          "hours": {
                            "monday": {
                              "open": "11:00",
                              "close": "21:30",
                              "intervals": [
                                {
                                  "open": "11:00",
                                  "close": "14:30"
                                },
                                {
                                  "open": "16:30",
                                  "close": "21:30"
                                }
                              ],
                              "text": "11:00 - 14:30, 16:30 - 21:30"
                            }
                          }
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_business",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "private": {
                    "value": {
                      "data": {
                        "lookupStatus": "private",
                        "profile": null,
                        "metrics": null,
                        "contact": null,
                        "business": null
                      },
                      "meta": {
                        "requestId": "req_01example_private",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "profile": null,
                        "metrics": null,
                        "contact": null,
                        "business": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/profiles/posts": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook profile posts",
        "description": "Get posts from a Facebook profile or page.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.posts` page with `hasMore: false` can represent no public posts, restricted visibility, or an unresolvable URL or id—there is no `lookupStatus` field on this route.",
          "disambiguation": "Call `GET /v1/facebook/profiles` first when you need `found` / `private` / `not_found` before interpreting an empty posts page."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Full public Facebook profile or page URL."
            },
            "required": false,
            "description": "Full public Facebook profile or page URL.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Facebook page or profile id when you have it instead of a full URL."
            },
            "required": false,
            "description": "Facebook page or profile id when you have it instead of a full URL.",
            "name": "pageId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`)."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`).",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Facebook posts for the requested profile or page. Empty `data.posts` is ambiguous without a profile preflight—see the operation description.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "posts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Facebook post id."
                              },
                              "text": {
                                "type": "string",
                                "nullable": true,
                                "description": "Post caption or text when present."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Public Facebook URL for this post."
                              },
                              "publishTime": {
                                "type": "integer",
                                "description": "When the post was published (Unix epoch seconds) when available."
                              },
                              "authorDisplayName": {
                                "type": "string",
                                "nullable": true,
                                "description": "Display name for the post author when available."
                              },
                              "authorShortName": {
                                "type": "string",
                                "nullable": true,
                                "description": "Short display label for the author when Facebook provides one."
                              },
                              "authorId": {
                                "type": "string",
                                "description": "Facebook id for the post author when available."
                              },
                              "reactionCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Reaction count when available."
                              },
                              "commentCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Comment count when available."
                              },
                              "videoViewCount": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Video view count when available."
                              },
                              "imageUrl": {
                                "type": "string",
                                "description": "Primary image URL when the post includes a single primary image."
                              },
                              "imageUrls": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Gallery image URLs when the post includes multiple images."
                              },
                              "videoSdUrl": {
                                "type": "string",
                                "description": "Standard-definition video URL when this post includes playable video."
                              },
                              "videoHdUrl": {
                                "type": "string",
                                "description": "High-definition video URL when this post includes playable video."
                              },
                              "videoThumbnailUrl": {
                                "type": "string",
                                "description": "Video thumbnail image URL when available."
                              },
                              "topComments": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "id": {
                                      "type": "string",
                                      "minLength": 1,
                                      "description": "Comment id."
                                    },
                                    "text": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Comment text when available."
                                    },
                                    "publishTime": {
                                      "type": "integer",
                                      "description": "When the comment was published (Unix epoch seconds) when available."
                                    },
                                    "authorDisplayName": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Display name for the comment author when available."
                                    },
                                    "authorId": {
                                      "type": "string",
                                      "description": "Facebook id for the comment author when available."
                                    },
                                    "authorUrl": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Public Facebook URL for the comment author when available."
                                    }
                                  },
                                  "required": [
                                    "id",
                                    "text"
                                  ],
                                  "description": "A top-level comment surfaced on a Facebook post."
                                },
                                "description": "A small set of top comments when Facebook exposes them for the post."
                              }
                            },
                            "required": [
                              "id",
                              "text",
                              "url"
                            ],
                            "description": "A single Facebook post on a profile feed page."
                          },
                          "description": "Facebook posts for the requested input. An empty array can mean no public posts were returned, the profile does not expose posts publicly, or the URL or id could not be resolved—there is no separate lookup status on this route."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when more posts are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of posts is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "posts",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "first_page": {
                    "value": {
                      "data": {
                        "posts": [
                          {
                            "id": "27229798369970878",
                            "text": null,
                            "url": "https://www.facebook.com/carly.cross.5/posts/pfbid02xt2o6hWKw5txR27cZzDwAKjYrtcL13FrQXJih3moAACkyxA5TDXvTKA63ci7KLSQl",
                            "publishTime": 1778746719,
                            "authorDisplayName": "Carly Cross",
                            "authorShortName": "Carly",
                            "authorId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                            "reactionCount": 1,
                            "commentCount": 0,
                            "videoViewCount": null,
                            "imageUrl": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.30808-6/698389771_122121689919201046_6153945669619125306_n.jpg?stp=dst-jpg_s1080x2048_tt6&_nc_cat=107&ccb=1-7&_nc_sid=833d8c&_nc_ohc=b7ZRHpak-UYQ7kNvwEpZfo-&_nc_oc=Adr8WGbdlRfiBtQAbRMQxOY6Yaefnhsp5mp5-9LxaWf5xdo0gzdgEnSJzA7Ct-nfL5A&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=H8cj8HZpANiH8RfUCMJwRA&_nc_ss=7e289&oh=00_Af5eQSgaq871t_XC3xF_667Yor82aJwBjT1C-HZftTbnjw&oe=6A0F34EE"
                          },
                          {
                            "id": "27170431025907613",
                            "text": "She’s always been a diva 🤣❤️",
                            "url": "https://www.facebook.com/carly.cross.5/posts/pfbid0wNLWBBMTtQupjvegB5p6rKCJJEjhjxyuhd1sdjuVDEoM7y8Hk9Y1iMoreT9zFnECl",
                            "authorDisplayName": "Carly Cross",
                            "authorShortName": "Carly",
                            "authorId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                            "reactionCount": 10,
                            "commentCount": 0,
                            "videoViewCount": null,
                            "imageUrl": "https://scontent-lga3-3.xx.fbcdn.net/v/t1.6435-9/59695636_2434172333293492_7190213018045644800_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=833d8c&_nc_ohc=BfQHCVETfZQQ7kNvwFhcaCc&_nc_oc=Adodw8a0YCxBoF253IOlluPoGZHzPdvM2T9EcofP3YUhF11j45tfiiM5PBD-Tqo6NHo&_nc_zt=23&_nc_ht=scontent-lga3-3.xx&_nc_gid=H8cj8HZpANiH8RfUCMJwRA&_nc_ss=7e289&oh=00_Af5uoCSrkvG0zhCfrystJAqA4E_HoJebNd8K3ZwGgpDhZg&oe=6A30E818"
                          },
                          {
                            "id": "27021187804165270",
                            "text": "5 Months (last week) of the happiest little baby. We all love you so so much, Bertie 🐻✨🤍",
                            "url": "https://www.facebook.com/carly.cross.5/posts/pfbid07N8nPbnDsSru1UnkffgJQfpAkRPfb1UeKaEPo1m7PbLqXua6uZ5kH4E3YQMviQBJl",
                            "authorDisplayName": "Carly Cross",
                            "authorShortName": "Carly",
                            "authorId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                            "reactionCount": 58,
                            "commentCount": 7,
                            "videoViewCount": null,
                            "imageUrl": "https://scontent-lga3-2.xx.fbcdn.net/v/t51.82787-15/683651127_18593920150007483_2994407465256079927_n.jpg?stp=dst-jpg_s1080x2048_tt6&_nc_cat=100&ccb=1-7&_nc_sid=127cfc&_nc_ohc=XL39rEmPYAoQ7kNvwHCOhDW&_nc_oc=AdqaPoAJPVNKrDFGwL-vH3GapjGyTnvxV29OePWOqqn7LMekyQPzAKhKPGK4InliOQU&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=H8cj8HZpANiH8RfUCMJwRA&_nc_ss=7e289&oh=00_Af4cqrPNK-KUfmV5m9LoptIAbmKEcOiCgyu054zRHEWFLg&oe=6A0F5983",
                            "topComments": [
                              {
                                "id": "Y29tbWVudDoyNzAyMTE4NzgwNDE2NTI3MF8yMDgxMzYwOTk5MDk1NTkw",
                                "text": "Beautiful Bertie ♥️ x",
                                "publishTime": 1777225504,
                                "authorDisplayName": "Trudy Edwards",
                                "authorId": "pfbid0uejkVag742X4gpXwoVa8aJY9KL8NhSZiJttKXikuc7ViZmjAVyHx6JUzDiUruaEZl",
                                "authorUrl": "https://www.facebook.com/trudy.edwards.71"
                              }
                            ]
                          }
                        ],
                        "page": {
                          "nextCursor": "Cg8Ob3JnYW5pY19jdXJzb3IJAAACREFRSFNEbWo5VkdZcWRvMDB3bXBaTThuWWJrWUhaVThjQ1F3bFF1dFV1dmtHWS1oY2lQNmVpclpraFFWcmw0djNJSUlnTmVJcEFyQXhGMVJHUEtJN0tPRVd6UGFLV2hnZUtzVi1XQnY2RHEtWDY5ZjVPVUdmNDVxVG90VEhTS3VaaWRQSlpDUHhoT1RtWmpzSWV1ZThUZWYwd3phZ3YxRU5MRUF1US1Na0lFNDlKTnAyOGNJQkY1cVgzTUZCSjNjNjllTG96aVR2aUNlMlVJdnh3eXo3OE1jUXh4clZEa2hrZnhieVNBR0NTQ1VYeGFwVE9IU3Exa2x3LXlQcEgwcVZtNG9WLU9Pa3BLWlEyNHdoTWtmcml2VDEySkk4MEVXbDhCWUlERXQtU0ZxQ1BRY2Vnd1p2VU5pQ2M0UUtVS2h3eVJCZERyYjRKVS1NLThvREtVLVpMQzdfSTFsblFITGptMkpJSGwtMTZ5M09IclZDaEROY2RmekRHUDRVczY5U1dBd3pPa2tWdjlxYXN1XzVKUWF3bVp1cGtzdUw1bHhFMFYwWTFHa3JocUhsU0RkajdGNFRuak1WVUNTYTZKUDJBNFNUWWhicThpdk53V053cG5Odjk5dW9lTWN4U2JUMmpOZWZDbWI3Rjl2WmtNZEZTTGl0SVpRSnk5cmxlc3VrOWZURkhHTFBxUmE1WndnQkVZdWYtcDFtMTBGZmkxaTlJek5zMW1pOTNQSERzTGRkdUx4NjVwRVhNQzZDajBtS3oxb1gPCWFkX2N1cnNvcg4PD2dsb2JhbF9wb3NpdGlvbgIADwZvZmZzZXQCAA8QbGFzdF9hZF9wb3NpdGlvbgL/AQ==",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_34578f19-269b-4d97-a017-9cdfc7982a72",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "posts": [
                          {
                            "id": "10244073632835627",
                            "text": "Second page example.",
                            "url": "https://www.facebook.com/example/posts/pfbid0page2",
                            "authorDisplayName": "Example Author",
                            "reactionCount": 6,
                            "commentCount": 1
                          }
                        ],
                        "page": {
                          "nextCursor": "next-cursor-token",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "posts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid `url`, `pageId`, `cursor`, or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/profiles/reels": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook profile reels",
        "description": "Get Reels from a Facebook profile or page.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "outcomes": "Check `data.lookupStatus`: `found` means the profile or page resolved, while `not_found` means the URL could not be resolved for this reels lookup.",
          "pagination": "Use `data.page.nextCursor` only when `data.page.hasMore` is true."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public Facebook profile or page URL whose reels should be listed."
            },
            "required": true,
            "description": "Public Facebook profile or page URL whose reels should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`)."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`).",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Facebook reels for the requested profile or page. Check `data.lookupStatus` for `found` vs `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the requested profile or page resolved for this request."
                        },
                        "reels": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable reel identifier from Facebook."
                              },
                              "postId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Underlying Facebook post id when available."
                              },
                              "videoId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Underlying Facebook video id when available."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Public Facebook URL for this reel."
                              },
                              "description": {
                                "type": "string",
                                "nullable": true,
                                "description": "Caption or description text when available."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the reel was created."
                              },
                              "viewCount": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "View count when available."
                              },
                              "thumbnailUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Thumbnail image URL when available."
                              },
                              "videoUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Direct video URL when available."
                              },
                              "durationMs": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Play duration in milliseconds when available."
                              },
                              "music": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "title": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Music track title when available."
                                  }
                                },
                                "required": [
                                  "title"
                                ],
                                "description": "Music metadata when available."
                              },
                              "author": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "platformUserId": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Facebook id for the reel author when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name for the reel author when available."
                                  },
                                  "isVerified": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether Facebook marks the author as verified."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Public Facebook URL for the author when available."
                                  },
                                  "imageUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile image URL for the author when available."
                                  }
                                },
                                "required": [
                                  "platformUserId",
                                  "name",
                                  "isVerified",
                                  "url",
                                  "imageUrl"
                                ],
                                "description": "Author metadata when available."
                              }
                            },
                            "required": [
                              "id",
                              "postId",
                              "videoId",
                              "url",
                              "description",
                              "createdAt",
                              "viewCount",
                              "thumbnailUrl",
                              "videoUrl",
                              "durationMs",
                              "music",
                              "author"
                            ],
                            "description": "A single Facebook reel on a profile reels page."
                          },
                          "description": "Reels returned for the requested profile or page. This array may be empty on the last page."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of reels can be requested."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "reels",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "reels": [
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzo3MjkyNzE4NjkwOTcyMDg=",
                            "postId": "7320446407999369",
                            "videoId": "729271869097208",
                            "url": "https://www.facebook.com/reel/729271869097208",
                            "description": "We love you Riley 💙",
                            "createdAt": "2023-12-19T15:56:54.000Z",
                            "viewCount": 3200,
                            "thumbnailUrl": "https://scontent-lga3-3.xx.fbcdn.net/v/t15.5256-10/566786002_1458215165255849_3639926333387522867_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=106&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=IP6uGRxX4nQQ7kNvwF9Ml85&_nc_oc=AdoDcL1QTmJDBdif7ZGQIhL9bRwunQtQI0ix6H-ZY9aAfgx4Wje43jnYeA-lpfVyzHA&_nc_zt=23&_nc_ht=scontent-lga3-3.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af5b6zNaPewH1CO_yvZ7PH9FP4YK8s6I2aOS7fWFKr8OFQ&oe=6A0F4D5B",
                            "videoUrl": "https://video-lga3-2.xx.fbcdn.net/o1/v/t2/f2/m366/AQNTMwtpk4JrL-metIUbS08InyJ4vHetvvBrAc33NMpNeNQfdIjmgPobSKKVvDp1rZC1hNoQddbqn7OFCcclo4bYI9xJi0zwSqy5xquWgQdOGw.mp4?_nc_cat=100&_nc_sid=5e9851&_nc_ht=video-lga3-2.xx.fbcdn.net&_nc_ohc=Pf2Pz2zswFcQ7kNvwHePSJh&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHAiLCJ4cHZfYXNzZXRfaWQiOjEwMjEyMzQzNjg5NTM5MzMsImFzc2V0X2FnZV9kYXlzIjo4NzksInZpX3VzZWNhc2VfaWQiOjEwMTIzLCJkdXJhdGlvbl9zIjoyMywidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&vs=22245618eaf11544&_nc_vs=HBksFQIYRWZiX2VwaGVtZXJhbC9GMDQwRkJFQUQ1ODY3QTQ5MTRDNDhGM0RDQjBBRTlBM19tdF8xX3ZpZGVvX2Rhc2hpbml0Lm1wNBUAAsgBEgAVAhg6cGFzc3Rocm91Z2hfZXZlcnN0b3JlL0dMU0ppUmpsOVBBYldGNENBRXNKeDZNemxvUW5idjRHQUFBRhUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaa-dn81LPQAxUCKAJDMywXQDdEGJN0vGoYGWRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHARAHUCZZaeAQA&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af4tLoFuxxYB28nrWpqdsLUSs0M-j-vY1_vRB8CPG6B1Zw&oe=6A0F5160&bitrate=2378526&tag=dash_h264-basic-gen2_720p",
                            "durationMs": 23234,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoxMDk1MzU2Mjk3OTk0Mjkz",
                            "postId": "5345310442179652",
                            "videoId": "1095356297994293",
                            "url": "https://www.facebook.com/reel/1095356297994293",
                            "description": "So proud of my Pop’s, Easter Weekend made 🥰",
                            "createdAt": "2022-04-18T17:05:31.000Z",
                            "viewCount": 617,
                            "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/564679906_1291859855589201_4396156641858650290_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=103&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=vzIr0S8MfSMQ7kNvwHQ_iUx&_nc_oc=AdruO_b6ATBO9i-WlrA7AEuIDTixOs0qzvA8f30-DkLeKKbs7Q1vSZW9P53_GyAR4Co&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af56Aq7IXJtlA_dniqQC-mvGJKg8JqaIGoocV55RgE7VsQ&oe=6A0F3C62",
                            "videoUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m366/AQPuU-FZo86tDBbomkEDuNC8_AF0X_V2iHZlJfsqorhTCcQDV4kHnJoE2cwVm31r5880t-CuF_yeqODUES2Y34OQc5c4FeYZ0qOodj6iuQRy4g.mp4?_nc_cat=103&_nc_sid=5e9851&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=o2rMQ1QEcNIQ7kNvwEviGTM&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHAiLCJ4cHZfYXNzZXRfaWQiOjU1Mjc2MjE4NjE2NTY0MiwiYXNzZXRfYWdlX2RheXMiOjE0ODksInZpX3VzZWNhc2VfaWQiOjEwMTIzLCJkdXJhdGlvbl9zIjo5LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=a177cbcb6c6d04c5&_nc_vs=HBkcFQIYRWZiX2VwaGVtZXJhbC9BOTRCQjNBMzRCOTA5M0QzQkRGRDk2OUQyNjI3QjZBN19tdF8xX3ZpZGVvX2Rhc2hpbml0Lm1wNBUAAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaUtoOc_677ARUCKAJDMywXQCPdsi0OVgQYGWRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHARAHUCZZaeAQA&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af5edN3-q_0vMJcoW8DHt2MfMRAjk6GzQuGEsHeCv_DiHA&oe=6A0F463D&bitrate=0&tag=dash_h264-basic-gen2_720p",
                            "durationMs": 9900,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoxMTE4MDA2ODMyMjcwOTA4",
                            "postId": "4941318845912149",
                            "videoId": "1118006832270908",
                            "url": "https://www.facebook.com/reel/1118006832270908",
                            "description": "Poppy had a very special phone call this afternoon 🎅❤️",
                            "createdAt": "2021-12-16T19:35:09.000Z",
                            "viewCount": 488,
                            "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/268024376_1118007222270869_5757833240548394468_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=lenJ2KfHeCMQ7kNvwG_DtY-&_nc_oc=Adrb89ClGP0uQka8bCxQF8pcVe0Fosxr32wWsNeRyAk5NQg1kNaPSBJB8dKSyO4kT60&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6Z_k5NYSTFrVJsFxNvH1IAWRG6b1sOZ_GP3_Hz4vsmGA&oe=6A0F2F76",
                            "videoUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m266/AQMSlN85lpVHGSNcN2EjdBc98A5Uq_spwUNEas4i3jIQ2en62UABDJCYjNikps7uIbrTZFowPcd59avxgFfcKlv6CHB76gKMO8E.mp4?strext=1&_nc_cat=109&_nc_sid=8bf8fe&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=sizkqADJC0wQ7kNvwH4CY0e&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNDgwLmNvbXByZXNzZWRfc291cmNlIiwieHB2X2Fzc2V0X2lkIjozNDEyODk1MTIyMDI3OTcsImFzc2V0X2FnZV9kYXlzIjoxNjEyLCJ2aV91c2VjYXNlX2lkIjoxMDEyMywiZHVyYXRpb25fcyI6NjcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af7kX5bryNIOSdILLdj41Wor_pxxjEj0AGhRpw-jdfWuqQ&oe=6A0B5D79&bitrate=437287&tag=compressed_source",
                            "durationMs": 67100,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoyOTgxOTQ0ODg3MzYwMjY=",
                            "postId": "4925543557489678",
                            "videoId": "298194488736026",
                            "url": "https://www.facebook.com/reel/298194488736026",
                            "description": "A strictly fan 💃",
                            "createdAt": "2021-12-12T19:53:45.000Z",
                            "viewCount": 425,
                            "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/266380288_298194652069343_6874028195049142733_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=hy3RUhr2QV0Q7kNvwEmsaih&_nc_oc=Adr97dZUY-8zb2AJpYhpX_FFCHYpXzKftfdiwPrgmMmP5sbbsvJdQok2_4l9QO0qhKQ&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af5vPobEknIa2DobnKniOQhbfJdxfIEc1gFVfsLP1MeW4A&oe=6A0F504A",
                            "videoUrl": null,
                            "durationMs": 34493,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzo0MTY5MzQ2NzY1MDk1MTk=",
                            "postId": "4811567562220612",
                            "videoId": "416934676509519",
                            "url": "https://www.facebook.com/reel/416934676509519",
                            "description": "My best friend 💛",
                            "createdAt": "2021-11-08T20:36:48.000Z",
                            "viewCount": 250,
                            "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/254834279_416934856509501_6180924570634212899_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=iAgY2iS-_6MQ7kNvwF9oNHZ&_nc_oc=AdoAsckPJMSLZKICzklEvZgM9hJyxbRTa9zIqYaB5nLPuGq7069DoJjhmc9U-aXnnvs&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af5ob1QaDQQcxVgRoVgXDNm7BiL3oeOFI--NO9jI6paQWg&oe=6A0F35A7",
                            "videoUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m266/AQPmqoHvwmohuJn9RS9N2kJ5ihTtgkXX1_cv7t9UAg88GG8Nl9DrHcNwDqFqt1HOxeZwPkjSFTpp0ggPUTsSXLVX2acUUv2F8-Y.mp4?strext=1&_nc_cat=109&_nc_sid=8bf8fe&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=J3A0Qxucm_EQ7kNvwFFDGsf&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmNvbXByZXNzZWRfc291cmNlIiwieHB2X2Fzc2V0X2lkIjozODczMDk3NTM4NzgzODUsImFzc2V0X2FnZV9kYXlzIjoxNjUwLCJ2aV91c2VjYXNlX2lkIjoxMDEyMywiZHVyYXRpb25fcyI6MjAsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af56rm4nPBlDU7QyxMbK2gRt4PUN8_Wp5Mm0LM2KlnRy4A&oe=6A0B61C1&bitrate=1919060&tag=compressed_source",
                            "durationMs": 20000,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoyNDM4NTEzNDA5MzAwODY=",
                            "postId": "4555414931169211",
                            "videoId": "243851340930086",
                            "url": "https://www.facebook.com/reel/243851340930086",
                            "description": "So proud of my Pop’s getting up at the disco and singing her all time favourite song.. no idea where she gets her confidence from 🤪🤣❤️",
                            "createdAt": "2021-08-20T19:36:05.000Z",
                            "viewCount": 325,
                            "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/239573707_243852840929936_5039231123075332670_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=109&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=lxFIjn7zo4QQ7kNvwHFC_Pe&_nc_oc=AdofJHN8IRsKxTAjWAzI2JlVeuq8RlMHCPcyH_tZSz33tpMWHX_1gaYkEHJGrDtujb0&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af64IMGy4DKryy2YVDBevFo2yGLtelzomaAgRenhEh7YnQ&oe=6A0F3BA4",
                            "videoUrl": "https://video-lga3-3.xx.fbcdn.net/o1/v/t2/f2/m266/AQPUm9MAR_OxJrP6eVsca0nqLfT37_KdNXY14G0Agv0G6UyYro6nVuO0v2ga4jK_GJ0SlslNSBBuqSz5_fMc14xQZLER6VNQSpU.mp4?strext=1&_nc_cat=108&_nc_sid=8bf8fe&_nc_ht=video-lga3-3.xx.fbcdn.net&_nc_ohc=2DDNWq_dihsQ7kNvwEjNCe1&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuMTA4OC5jb21wcmVzc2VkX3NvdXJjZSIsInhwdl9hc3NldF9pZCI6MzA0NDQwMjg1MzE3NzM0LCJhc3NldF9hZ2VfZGF5cyI6MTczMCwidmlfdXNlY2FzZV9pZCI6MTAxMjMsImR1cmF0aW9uX3MiOjI5LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af5xWNrvZcQaBdVtbqLSGmLWiF75rIjak42aDabBKbUCyQ&oe=6A0B64A2&bitrate=4326067&tag=compressed_source",
                            "durationMs": 29233,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoxOTY2MjY4MzIyODM3Mzg=",
                            "postId": "4424528197591219",
                            "videoId": "196626832283738",
                            "url": "https://www.facebook.com/reel/196626832283738",
                            "description": "What a bloody birthday!! It’s coming home ⚽️",
                            "createdAt": "2021-07-07T22:19:10.000Z",
                            "viewCount": 381,
                            "thumbnailUrl": "https://scontent-lga3-2.xx.fbcdn.net/v/t15.5256-10/213827222_196628208950267_7916490314161113518_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=107&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=1GUs-mnY-s8Q7kNvwGqbjLW&_nc_oc=Adqx0b8b6BdS5j-dwMMs1OoYWguoinSrOWHM1vQl70PYvcMJ-RkjhK7qnvdM80Qe8Q4&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af5Lv5lpMsmIxdpEjquMtM8nZVgV699UoRM8ikrXvSDzfA&oe=6A0F47D1",
                            "videoUrl": null,
                            "durationMs": 33865,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzo0MzMyNjcwOTcwMTEwMjc2",
                            "postId": "4332671703443536",
                            "videoId": "4332670970110276",
                            "url": "https://www.facebook.com/reel/4332670970110276",
                            "description": null,
                            "createdAt": "2021-06-04T20:32:05.000Z",
                            "viewCount": 341,
                            "thumbnailUrl": "https://scontent-lga3-3.xx.fbcdn.net/v/t15.5256-10/195551031_4332672950110078_8892405274449225674_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=T0kIuzGeDi8Q7kNvwGwZs6p&_nc_oc=Ado7SSHQzEPD71lpViFWsQZYUgmT50H_1uWuE4kZJizq8xRDi35zO95hPlDdXEo-M_E&_nc_zt=23&_nc_ht=scontent-lga3-3.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af7DEgKUQz_JsznZLK581cJg1Xc7Wv_v_Eru7Ek5WQDn-w&oe=6A0F339D",
                            "videoUrl": "https://video-lga3-2.xx.fbcdn.net/o1/v/t2/f2/m266/AQOxLL3H6CdN22EqJT_9fmEkZjXqL9CCdnHFzPhhdOwIr8qpDDjsP3CFS45sKmG40MZq79239DFpullLm2cijYWzJ92_1K9ZuGg.mp4?strext=1&_nc_cat=100&_nc_sid=8bf8fe&_nc_ht=video-lga3-2.xx.fbcdn.net&_nc_ohc=ajGNhYUvT8wQ7kNvwFX-1ww&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmNvbXByZXNzZWRfc291cmNlIiwieHB2X2Fzc2V0X2lkIjozNzE5NzY5MjIyNTY5NzQsImFzc2V0X2FnZV9kYXlzIjoxODA3LCJ2aV91c2VjYXNlX2lkIjoxMDEyMywiZHVyYXRpb25fcyI6OCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af5PkxpOAN2pshJNrmRlgXYxPoh04aNyE1uWJvPM2GlrMg&oe=6A0B48C2&bitrate=3019412&tag=compressed_source",
                            "durationMs": 8666,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoyNzI3MDg5MjY0MDAxNzk2",
                            "postId": "2727093670668022",
                            "videoId": "2727089264001796",
                            "url": "https://www.facebook.com/reel/2727089264001796",
                            "description": "To top off a lovely day off with my Pop’s and Mum, we have ourselves a little walker 🥰",
                            "createdAt": "2019-10-14T15:56:57.000Z",
                            "viewCount": 617,
                            "thumbnailUrl": "https://scontent-lga3-2.xx.fbcdn.net/v/t15.5256-10/70247101_2727094054001317_3064429457407213568_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=100&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=M5HMhToNDyQQ7kNvwFkoPCi&_nc_oc=AdpXyGzocBGdSPXGeBby5aXnm6MuOuwXnCp66eaVj7_v6eVYJPyDD9u13Qmo4TbA44o&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af49daM6bEGf9C9aGprGrtRHeepgtOa3QonJ5oo1ckV42g&oe=6A0F3213",
                            "videoUrl": "https://video-lga3-2.xx.fbcdn.net/o1/v/t2/f2/m266/AQP7pLo2YG6JaWHCmkHFU3hPRN989KbBAqzSYd5LAjtjKGbXC24MeuQ5Bj0O01u44Iv-uPrhM_fBmNX07pojdcvOcBqv4quyjCw.mp4?strext=1&_nc_cat=100&_nc_sid=8bf8fe&_nc_ht=video-lga3-2.xx.fbcdn.net&_nc_ohc=9qkH9bTo0FUQ7kNvwFbSTzb&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuMTA4OC5jb21wcmVzc2VkX3NvdXJjZSIsInhwdl9hc3NldF9pZCI6NzE1MTMzNTc3MzkzNTY0LCJhc3NldF9hZ2VfZGF5cyI6MjQwNiwidmlfdXNlY2FzZV9pZCI6MTAxMjMsImR1cmF0aW9uX3MiOjE0LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&_nc_zt=28&oh=00_Af4vAj4vOgLHgY07WVkDuJBVGRvpAzILROzEC0WBsvGOEg&oe=6A0B53CE&bitrate=3225588&tag=compressed_source",
                            "durationMs": 14747,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          },
                          {
                            "id": "UzpfSTEwMDAwMTAyMjQ4NjgyMzpWSzoyNjI4NDczNTc3MTk2Njk5",
                            "postId": "2628473763863347",
                            "videoId": "2628473577196699",
                            "url": "https://www.facebook.com/reel/2628473577196699",
                            "description": "Poppy’s new word ‘Nan’. Still waiting for a ‘Mum’ though 😅",
                            "createdAt": "2019-08-25T07:46:34.000Z",
                            "viewCount": 320,
                            "thumbnailUrl": "https://scontent-lga3-3.xx.fbcdn.net/v/t15.5256-10/66928261_2628474240529966_6792755202580545536_n.jpg?stp=dst-jpg_p960x960_tt6&_nc_cat=104&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=0YptP9N9h08Q7kNvwGbb0-2&_nc_oc=AdoyhRWPgJYWm9unD3_cHHqbC2-WEWjJfY2lMg3v2oSZNOJRoKowTv3zV1dR0N4ZhDE&_nc_zt=23&_nc_ht=scontent-lga3-3.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af7M3ElozxCyqAXksxmeFTxvwuQi0B_uMcdW4AprlsPUcQ&oe=6A0F3CCF",
                            "videoUrl": null,
                            "durationMs": 6943,
                            "music": {
                              "title": null
                            },
                            "author": {
                              "platformUserId": "pfbid0oLfXu1ATKUTKguRajfCYu7BP2rzBW8kXQ44KhGdV17eP6hffyY7P2uMZA5VDZJYwl",
                              "name": "Carly Cross",
                              "isVerified": false,
                              "url": "https://www.facebook.com/carly.cross.5",
                              "imageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.30808-1/643478184_26435581719392551_6829771121814667941_n.jpg?stp=c0.0.834.834a_cp0_dst-jpg_s40x40_tt6&_nc_cat=103&ccb=1-7&_nc_sid=e99d92&_nc_ohc=tLRvt443fCAQ7kNvwHrdjfF&_nc_oc=Adpu3l4Hc9nQgO15hlyJiNJ6Y66JvXr0Dp9E2mWTFMxSvWnpDrJbng_MZyCBBC-TPHc&_nc_zt=24&_nc_ht=scontent-lga3-1.xx&_nc_gid=_OgnvemOseoaMRqdJdTKFQ&_nc_ss=7e289&oh=00_Af6CKbzl6AbcmObGLjxAOYaZs5_-z0BOw7HR9rbVZ1lahQ&oe=6A0F3C41"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiQVFIUzNZV2VYR3FlZWtDMlpudzNsVXh3Ri1meUViQkt0RWJqTjNHcWNELVFsMG00bXl0STdzZTk5WmRQT01aQ2lHMmhpbm1UaDZxSUFUeHdZOFJLamxNSzdnIiwibiI6IllYQndYMk52Ykd4bFkzUnBiMjQ2Y0daaWFXUXdTSFZXVlZsbE56TTBkR2czUlZsV1RsZHBXVUptZDI1V1Vsa3hjVkZhYWtNelVuazRjRUpWWW1wd1lVSlFVMFpGWWsxamQxSnVkRzFPZW5OTk1VdzJRbW80TjJsU2NHazVWRXRRZFhoeldIWTBRMEpxYW5Ob1ZtNURkbEZvV1dObVNHOXliVTFzIn0",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_6739a2d4-1c5b-4ff1-90fc-09259ba36e1c",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "last_page": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "reels": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_last_page",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "reels": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid `url` or `cursor`",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/profiles/photos": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook profile photos",
        "description": "Get photos from a Facebook profile or page.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "outcomes": "Check `data.lookupStatus`: `found` means the profile or page resolved, while `not_found` means the URL could not be resolved for this photos lookup.",
          "pagination": "Use `data.page.nextCursor` only when `data.page.hasMore` is true."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public Facebook profile or page URL whose photos should be listed."
            },
            "required": true,
            "description": "Public Facebook profile or page URL whose photos should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`)."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`).",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Facebook photos for the requested profile or page. Check `data.lookupStatus` for `found` vs `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the requested profile or page resolved for this request."
                        },
                        "photos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable photo item identifier from Facebook."
                              },
                              "photoId": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Facebook photo id when available."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Public Facebook URL for this photo."
                              },
                              "accessibilityCaption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Accessibility or alt-style caption text when Facebook provides one."
                              },
                              "imageUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Primary image URL when available."
                              },
                              "thumbnailUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Thumbnail image URL when available."
                              },
                              "dimensions": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "width": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Image width in pixels when available."
                                  },
                                  "height": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Image height in pixels when available."
                                  }
                                },
                                "required": [
                                  "width",
                                  "height"
                                ],
                                "description": "Image dimensions when available."
                              }
                            },
                            "required": [
                              "id",
                              "photoId",
                              "url",
                              "accessibilityCaption",
                              "imageUrl",
                              "thumbnailUrl",
                              "dimensions"
                            ],
                            "description": "A single Facebook photo on a profile photos page."
                          },
                          "description": "Photos returned for the requested profile or page. This array may be empty on the last page."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of photos can be requested."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "photos",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "photos": [
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjcwMjExODc1MTQxNjUyOTk=",
                            "photoId": "27021187514165299",
                            "url": "https://www.facebook.com/photo.php?fbid=27021187514165299&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby and smiling",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/683651127_18593920150007483_2994407465256079927_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=127cfc&_nc_ohc=XL39rEmPYAoQ7kNvwFuWBUD&_nc_oc=AdrEnfZPkf6zDrx7qWv8WCSvllv47ovYDzX0W0Fj8dXbR9auixBj3BxjsX--IskZT8I&_nc_zt=23&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af74-xyRGYKCU7gkoR5e-VRTpv0IPag-7S6_8lDGgMYVFA&oe=6A0F5983",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/683651127_18593920150007483_2994407465256079927_n.jpg?stp=c0.177.1608.1608a_dst-jpg_s206x206_tt6&_nc_cat=100&ccb=1-7&_nc_sid=714c7a&_nc_ohc=XL39rEmPYAoQ7kNvwFuWBUD&_nc_oc=AdrEnfZPkf6zDrx7qWv8WCSvllv47ovYDzX0W0Fj8dXbR9auixBj3BxjsX--IskZT8I&_nc_zt=23&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af41xEjQaOui7X3bODyp1sUp-CV8qSLtTbBGagR3MsLu3g&oe=6A0F5983",
                            "dimensions": {
                              "width": 1608,
                              "height": 2144
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY4NTQ5NTI4ODQxMjIwOTc=",
                            "photoId": "26854952884122097",
                            "url": "https://www.facebook.com/photo.php?fbid=26854952884122097&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby, smiling and bedroom",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/669974469_18590336158007483_8993244519859741198_n.jpg?stp=dst-jpegr_tt6&_nc_cat=103&ccb=1-7&_nc_sid=127cfc&_nc_ohc=KOQlfFPj2FUQ7kNvwHWZTAk&_nc_oc=AdoU2ha9x2opn8AWuavxeO3AvOgNfRfKx9Ke8BwVoD1HJjVzRu6AsK8A_yktpTDm5ns&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af7T4px1vSul98lRGhUwRFh-aOPacRkq714lSZiuW3mjeA&oe=6A0F2ED0",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/669974469_18590336158007483_8993244519859741198_n.jpg?stp=c0.158.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=103&ccb=1-7&_nc_sid=714c7a&_nc_ohc=KOQlfFPj2FUQ7kNvwHWZTAk&_nc_oc=AdoU2ha9x2opn8AWuavxeO3AvOgNfRfKx9Ke8BwVoD1HJjVzRu6AsK8A_yktpTDm5ns&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af5WuS-BSQQATi7y3W9KUtHRZ6F7i6HKT1MPU6Z2pafAQA&oe=6A0F2ED0",
                            "dimensions": {
                              "width": 1440,
                              "height": 1920
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY4NTQ5NTI4ODA3ODg3NjQ=",
                            "photoId": "26854952880788764",
                            "url": "https://www.facebook.com/photo.php?fbid=26854952880788764&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/670392720_18590336167007483_1605318333331208924_n.jpg?stp=dst-jpegr_tt6&_nc_cat=107&ccb=1-7&_nc_sid=127cfc&_nc_ohc=4Kf_IXTEuawQ7kNvwEPCQHj&_nc_oc=AdqCZkzddSDR5GfX07VRDaDG7o6RBM6gXGioOQQHf8K8HfklQVox2DZIuXqaSlOqA7U&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af64xeceyvscXZIaiUm-AIqTa2WERNmB5xrQMeijdGsLQA&oe=6A0F37C2",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/670392720_18590336167007483_1605318333331208924_n.jpg?stp=c0.158.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=107&ccb=1-7&_nc_sid=714c7a&_nc_ohc=4Kf_IXTEuawQ7kNvwEPCQHj&_nc_oc=AdqCZkzddSDR5GfX07VRDaDG7o6RBM6gXGioOQQHf8K8HfklQVox2DZIuXqaSlOqA7U&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af6jAoB-3SUEhPvRjzjjCvZoFxlecnPZ7U7PkS23kFZa9g&oe=6A0F37C2",
                            "dimensions": {
                              "width": 1440,
                              "height": 1920
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY4NTQ5NTI4Nzc0NTU0MzE=",
                            "photoId": "26854952877455431",
                            "url": "https://www.facebook.com/photo.php?fbid=26854952877455431&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby and hospital",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/670881210_18590336176007483_8642209228653617866_n.jpg?stp=dst-jpegr_tt6&_nc_cat=101&ccb=1-7&_nc_sid=127cfc&_nc_ohc=bMAWG5MUF2kQ7kNvwGIDn58&_nc_oc=Adqe0NXgFvnhW_AhDBC2-xqegNnkQ3N4lxalrDWX4-_7woRjpuxGFfPbk8pne0ag2CU&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af4a2cK6xYvbqKIN9E5zkNgDxtSDgE7sd5Gz9hgDiOR8pQ&oe=6A0F33CC",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/670881210_18590336176007483_8642209228653617866_n.jpg?stp=c0.158.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=101&ccb=1-7&_nc_sid=714c7a&_nc_ohc=bMAWG5MUF2kQ7kNvwGIDn58&_nc_oc=Adqe0NXgFvnhW_AhDBC2-xqegNnkQ3N4lxalrDWX4-_7woRjpuxGFfPbk8pne0ag2CU&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af70x98bgUb3JKrEaOhftxNXPlIGdPrTV4aU4ykUKC_giQ&oe=6A0F33CC",
                            "dimensions": {
                              "width": 1440,
                              "height": 1920
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY3ODc5Mzc0NjQxNTY5NzM=",
                            "photoId": "26787937464156973",
                            "url": "https://www.facebook.com/photo.php?fbid=26787937464156973&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby, sleepwear and gingerbread cookie",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/658751031_18588099169007483_2786300821944793717_n.jpg?stp=dst-jpegr_tt6&_nc_cat=103&ccb=1-7&_nc_sid=127cfc&_nc_ohc=E1JDAM23L4cQ7kNvwFs_71N&_nc_oc=AdqPnOexg7ROiVccmQgp-27dIf8zJLUKSAEiIvuSKfGuw5lpw6KYqa4x1ka0ah9cbuo&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af7KoipZX0MAG-H22qAnoGx0viBXPZcaD383ydO44t1HPA&oe=6A0F2C1C",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/658751031_18588099169007483_2786300821944793717_n.jpg?stp=c0.41.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=103&ccb=1-7&_nc_sid=714c7a&_nc_ohc=E1JDAM23L4cQ7kNvwFs_71N&_nc_oc=AdqPnOexg7ROiVccmQgp-27dIf8zJLUKSAEiIvuSKfGuw5lpw6KYqa4x1ka0ah9cbuo&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af51wu4baWrdnJRSywJArE8C1n3-Cj3QKcxHD44m2FGWNA&oe=6A0F2C1C",
                            "dimensions": {
                              "width": 1440,
                              "height": 1564
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY1NjcwMDY0ODk1ODM0MDY=",
                            "photoId": "26567006489583406",
                            "url": "https://www.facebook.com/photo.php?fbid=26567006489583406&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be a black-and-white image of baby, smiling and hospital",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/652366927_18582383119007483_2501293566359681822_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=127cfc&_nc_ohc=xEc9cFXv8mUQ7kNvwH2Lc-u&_nc_oc=Adp2ecW9sdHae7-vxSAezLRtbxOQiGTknZeFmIec-bvjq8beiFQ-XCPS0z3uT1uq77A&_nc_zt=23&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af5Hsj6kkimWflvJlPuXWPC1Xp2ElZvNIwKdRx9WkCS-JA&oe=6A0F2335",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/652366927_18582383119007483_2501293566359681822_n.jpg?stp=c0.147.1337.1337a_dst-jpg_s206x206_tt6&_nc_cat=106&ccb=1-7&_nc_sid=714c7a&_nc_ohc=xEc9cFXv8mUQ7kNvwH2Lc-u&_nc_oc=Adp2ecW9sdHae7-vxSAezLRtbxOQiGTknZeFmIec-bvjq8beiFQ-XCPS0z3uT1uq77A&_nc_zt=23&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af6LDC7PZ7maOohFSXpba77gsIibppue3aDoi6MGTQc9ww&oe=6A0F2335",
                            "dimensions": {
                              "width": 1337,
                              "height": 1783
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY0NjQzMzQ3MjY1MTcyNTA=",
                            "photoId": "26464334726517250",
                            "url": "https://www.facebook.com/photo.php?fbid=26464334726517250&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby, sleepwear and hat",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/640762780_18579767788007483_6093057050914795572_n.jpg?stp=dst-jpegr_tt6&_nc_cat=107&ccb=1-7&_nc_sid=127cfc&_nc_ohc=dLvNdLI5LyIQ7kNvwE-YkgM&_nc_oc=AdqYBlSN0jUQZj0j0lJUCxkh0xfxZPgOdsICDzkR9mFb2EgtDt7ehzvE2uSlzEw64Vc&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af5amALNbQfE9UPjikykWemM_h9uUNdyKiRRx4EzG-yKiQ&oe=6A0F31AD",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/640762780_18579767788007483_6093057050914795572_n.jpg?stp=c0.158.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=107&ccb=1-7&_nc_sid=714c7a&_nc_ohc=dLvNdLI5LyIQ7kNvwE-YkgM&_nc_oc=AdqYBlSN0jUQZj0j0lJUCxkh0xfxZPgOdsICDzkR9mFb2EgtDt7ehzvE2uSlzEw64Vc&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af5TGur35E4MZLfAcUd60ENX6JYX3Iko3kVMUvstgJhgCg&oe=6A0F31AD",
                            "dimensions": {
                              "width": 1440,
                              "height": 1920
                            }
                          },
                          {
                            "id": "YXBwX2l0ZW06MTAwMDAxMDIyNDg2ODIzOjIzMDUyNzI3MzI6NTo6MjY0NjQzMzQ3MjMxODM5MTc=",
                            "photoId": "26464334723183917",
                            "url": "https://www.facebook.com/photo.php?fbid=26464334723183917&set=pb.100001022486823.-2207520000&type=3",
                            "accessibilityCaption": "May be an image of baby, hat and sleepwear",
                            "imageUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/645971848_18579767800007483_1902235522768855091_n.jpg?stp=dst-jpegr_tt6&_nc_cat=110&ccb=1-7&_nc_sid=127cfc&_nc_ohc=FSMYna8I7k4Q7kNvwE5-RrP&_nc_oc=Adqztk63HDUUAlkAt69qG-KwbqU-Js7gkgROQE8p7wf9lrpPYkfn2JTbxp42sok9SlM&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af6wSvSeTNz3LAH3d2uuBEwOelevLGp9LilQpiTQq7DM9A&oe=6A0F3718",
                            "thumbnailUrl": "https://scontent-phl2-1.xx.fbcdn.net/v/t51.82787-15/645971848_18579767800007483_1902235522768855091_n.jpg?stp=c0.158.1440.1440a_dst-jpegr_s206x206_tt6&_nc_cat=110&ccb=1-7&_nc_sid=714c7a&_nc_ohc=FSMYna8I7k4Q7kNvwE5-RrP&_nc_oc=Adqztk63HDUUAlkAt69qG-KwbqU-Js7gkgROQE8p7wf9lrpPYkfn2JTbxp42sok9SlM&_nc_zt=23&se=-1&_nc_ht=scontent-phl2-1.xx&_nc_gid=oms8kIo1HKozEalXl51a4w&_nc_ss=7e289&oh=00_Af71UZth1_JTzRH4404Not4ZBz6sJNJ6y5J3X8yW6SUpVg&oe=6A0F3718",
                            "dimensions": {
                              "width": 1440,
                              "height": 1920
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiQVFIU1E3VGc0bjZfS2h0a1hYZi1aSWQ0YU5XOUdiZjFrNy1ObU80UmxRMm5CRDZGVnJ2SHZoeEQxVVhvdFlDRWJBV2RJNGRBeG5CcGtVdFlXTFNWRmdEcGtRIiwibiI6IllYQndYMk52Ykd4bFkzUnBiMjQ2Y0daaWFXUXdOVXRuWTNob2RXdFVRWHBXVEdOalZYWTNVa051Y1VOTlVGRktOMmRHVXpkeVZ6RlVia2RHVkZOV01UVjBZMEppUnpZMlVVaENhbGRrY1hoUVkybDFPVVZYYzNrNGVHc3pSVFZuUmt3eGVWWjNaMUZHUVc1U1MybHZXSEJzIn0",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_9d880cf0-0be8-43de-bc1c-4f0aa8c28580",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "last_page": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "photos": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_last_page",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "photos": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid `url` or `cursor`",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/ad-library/ads": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Facebook Ad Library ad",
        "description": "Get a single Facebook Ad Library ad by archive id or public Ad Library URL.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Facebook Ad Library archive id for the ad."
            },
            "required": false,
            "description": "Facebook Ad Library archive id for the ad.",
            "name": "adId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public Facebook Ad Library URL for the ad."
            },
            "required": false,
            "description": "Public Facebook Ad Library URL for the ad.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, includes a plain-text transcript when available for the ad video."
            },
            "required": false,
            "description": "When true, includes a plain-text transcript when available for the ad video.",
            "name": "includeTranscript",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, requests a smaller payload before normalization."
            },
            "required": false,
            "description": "When true, requests a smaller payload before normalization.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Ad Library ad detail (found or not found in body).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the ad was found in the Ad Library."
                        },
                        "ad": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "id": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Stable identifier for the ad."
                            },
                            "adId": {
                              "type": "string",
                              "nullable": true,
                              "description": "Platform ad id when available."
                            },
                            "url": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public Facebook Ad Library URL for this ad when available."
                            },
                            "page": {
                              "type": "object",
                              "properties": {
                                "id": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Facebook page id for the advertiser when available."
                                },
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Display name for the advertiser page when available."
                                },
                                "url": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Public Facebook URL for the advertiser page when available."
                                },
                                "isDeleted": {
                                  "type": "boolean",
                                  "nullable": true,
                                  "description": "Whether the advertiser page is marked deleted."
                                },
                                "profilePictureUrl": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Profile picture URL for the advertiser page when available."
                                },
                                "likeCount": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Advertiser page like count when available."
                                },
                                "categories": {
                                  "type": "array",
                                  "items": {
                                    "type": "string",
                                    "minLength": 1
                                  },
                                  "description": "Public categories for the advertiser page when available."
                                }
                              },
                              "required": [
                                "id",
                                "name",
                                "url",
                                "isDeleted",
                                "profilePictureUrl",
                                "likeCount",
                                "categories"
                              ],
                              "description": "Advertiser page summary for this ad."
                            },
                            "campaign": {
                              "type": "object",
                              "properties": {
                                "collationId": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Campaign collation id when available."
                                },
                                "collationCount": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Number of ads in the campaign collation when available."
                                }
                              },
                              "required": [
                                "collationId",
                                "collationCount"
                              ],
                              "description": "Campaign collation metadata for this ad."
                            },
                            "isActive": {
                              "type": "boolean",
                              "description": "Whether the ad is currently active."
                            },
                            "publisherPlatforms": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "minLength": 1
                              },
                              "description": "Publisher platforms where the ad ran or is running."
                            },
                            "startedAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "ISO-8601 timestamp for when the ad started, when available."
                            },
                            "endedAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "ISO-8601 timestamp for when the ad ended, when available."
                            },
                            "categories": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "minLength": 1
                              },
                              "description": "Ad categories reported by the platform."
                            },
                            "countries": {
                              "type": "array",
                              "items": {
                                "type": "string",
                                "minLength": 1
                              },
                              "description": "Countries targeted or reached by the ad when available."
                            },
                            "impressions": {
                              "type": "object",
                              "nullable": true,
                              "properties": {
                                "text": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Human-readable impressions label when available."
                                },
                                "index": {
                                  "type": "integer",
                                  "nullable": true,
                                  "description": "Impressions index when available."
                                }
                              },
                              "required": [
                                "text",
                                "index"
                              ],
                              "description": "Impressions metadata when available."
                            },
                            "spend": {
                              "type": "object",
                              "nullable": true,
                              "properties": {
                                "amount": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Spend amount text when available."
                                },
                                "currency": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Currency code for spend when available."
                                }
                              },
                              "required": [
                                "amount",
                                "currency"
                              ],
                              "description": "Spend metadata when available."
                            },
                            "creative": {
                              "type": "object",
                              "properties": {
                                "bodyText": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Primary ad body text when available."
                                },
                                "title": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Ad title when available."
                                },
                                "caption": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Ad caption when available."
                                },
                                "linkUrl": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Primary link URL when available."
                                },
                                "linkDescription": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Link description when available."
                                },
                                "callToAction": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Call-to-action label when available."
                                },
                                "callToActionType": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Call-to-action type when available."
                                },
                                "displayFormat": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Display format for the creative when available."
                                },
                                "images": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "url": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Image URL when available."
                                      },
                                      "resizedUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Resized image URL when available."
                                      },
                                      "watermarkedResizedUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Watermarked resized image URL when available."
                                      }
                                    },
                                    "required": [
                                      "url",
                                      "resizedUrl",
                                      "watermarkedResizedUrl"
                                    ],
                                    "description": "Image asset for a Facebook Ad Library ad creative."
                                  },
                                  "description": "Image assets attached to the creative."
                                },
                                "videos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "hdUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "High-definition video URL when available."
                                      },
                                      "sdUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Standard-definition video URL when available."
                                      },
                                      "previewImageUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Video preview image URL when available."
                                      }
                                    },
                                    "required": [
                                      "hdUrl",
                                      "sdUrl",
                                      "previewImageUrl"
                                    ],
                                    "description": "Video asset for a Facebook Ad Library ad creative."
                                  },
                                  "description": "Video assets attached to the creative."
                                },
                                "cards": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "title": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card title when available."
                                      },
                                      "body": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card body text when available."
                                      },
                                      "caption": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card caption when available."
                                      },
                                      "linkUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card link URL when available."
                                      },
                                      "imageUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card image URL when available."
                                      },
                                      "videoUrl": {
                                        "type": "string",
                                        "nullable": true,
                                        "description": "Card video URL when available."
                                      }
                                    },
                                    "required": [
                                      "title",
                                      "body",
                                      "caption",
                                      "linkUrl",
                                      "imageUrl",
                                      "videoUrl"
                                    ],
                                    "description": "Carousel card for a Facebook Ad Library ad creative."
                                  },
                                  "description": "Carousel cards attached to the creative."
                                }
                              },
                              "required": [
                                "bodyText",
                                "title",
                                "caption",
                                "linkUrl",
                                "linkDescription",
                                "callToAction",
                                "callToActionType",
                                "displayFormat",
                                "images",
                                "videos",
                                "cards"
                              ],
                              "description": "Creative content for this ad."
                            }
                          },
                          "required": [
                            "id",
                            "adId",
                            "url",
                            "page",
                            "campaign",
                            "isActive",
                            "publisherPlatforms",
                            "startedAt",
                            "endedAt",
                            "categories",
                            "countries",
                            "impressions",
                            "spend",
                            "creative"
                          ],
                          "description": "Ad details when found; otherwise null."
                        },
                        "transcript": {
                          "type": "string",
                          "nullable": true,
                          "description": "Plain transcript text when requested and available. May be null when speech is not detected, the video exceeds supported length, or transcription is otherwise unavailable."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "ad",
                        "transcript"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "ad": {
                          "id": "902134546059754",
                          "adId": null,
                          "url": "https://www.facebook.com/ads/library?id=902134546059754",
                          "page": {
                            "id": "170229159669841",
                            "name": "Zomato",
                            "url": "https://www.instagram.com/_u/hey.sanober",
                            "isDeleted": false,
                            "profilePictureUrl": "https://scontent-bos5-1.cdninstagram.com/v/t51.82787-19/657785441_17969434809013326_9108915003959285985_n.jpg?stp=dst-jpg_s206x206_tt6&_nc_cat=1&ccb=7-5&_nc_sid=525117&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy42OTguQzMifQ%3D%3D&_nc_ohc=T-S3Zr46rmsQ7kNvwHfzZP8&_nc_oc=AdpOZ7tvtiEqmMadIZhRnDjUZDFTIJakC6HowQb7lsbVnq8bJI93SzJg7Yd-yleze14&_nc_zt=24&_nc_ht=scontent-bos5-1.cdninstagram.com&_nc_gid=QNUmkXHO6pdr5iCn_xiF3w&_nc_ss=7e289&oh=00_Af73xXQgM6A98t088fi7MRUOmqCTLPwMFZMEbNmDoI12sw&oe=6A135F97",
                            "likeCount": 0,
                            "categories": [
                              "Profile"
                            ]
                          },
                          "campaign": {
                            "collationId": null,
                            "collationCount": null
                          },
                          "isActive": true,
                          "publisherPlatforms": [
                            "facebook",
                            "instagram"
                          ],
                          "startedAt": "2026-03-11T07:00:00.000Z",
                          "endedAt": "2026-05-19T07:00:00.000Z",
                          "categories": [
                            "UNKNOWN"
                          ],
                          "countries": [],
                          "impressions": {
                            "text": null,
                            "index": -1
                          },
                          "spend": null,
                          "creative": {
                            "bodyText": "Some days the hustle barely leaves room for lunch. That’s when I refuel with @zomato \n\nThe grind shouldn’t stop just because you’re hungry. 🍽️✨\n\n#zomato #ad",
                            "title": null,
                            "caption": "play.google.com",
                            "linkUrl": "http://play.google.com/store/apps/details?id=com.application.zomato",
                            "linkDescription": null,
                            "callToAction": "Install now",
                            "callToActionType": "INSTALL_MOBILE_APP",
                            "displayFormat": "video",
                            "images": [],
                            "videos": [
                              {
                                "hdUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m367/AQPOJ0rdHWbvKnGrmnLH4fXgNtAuaCO02CwFRR3lv4pOj_c8UKe-igTIQWUlizoiVh1QywSV30K0yS4qraL5SC2qeVBpicu27jnQl-xHFQ.mp4?_nc_cat=106&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=HoErQUm6xO8Q7kNvwGCB6Ll&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuNzIwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl83MjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk2NTI0MTQ5MzAxMzMyNiwiYXNzZXRfYWdlX2RheXMiOjc4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=QNUmkXHO6pdr5iCn_xiF3w&_nc_ss=7e289&_nc_zt=28&oh=00_Af6Bt5qmoYbhCLmECLOdehrLw6zhAV_2XiGnZHDw63qMeQ&oe=6A136D58",
                                "sdUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m367/AQMVefbS2ttuIJC8Oa_BBsrjByLjf_emvT42zj7ZsbGnex9__UCOHkNDPHN6DGoqrYmCKom3UjBWTiFT1Oaviq0Cf9Ev2aMCv_mG_ifgHw.mp4?_nc_cat=102&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=PIInzVOSQ8wQ7kNvwGfyhdp&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMzYwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl8zNjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk2NTI0MTQ5MzAxMzMyNiwiYXNzZXRfYWdlX2RheXMiOjc4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=QNUmkXHO6pdr5iCn_xiF3w&_nc_ss=7e289&_nc_zt=28&oh=00_Af6qJZzlBXiILYAikEfajoM7nd6qWLWwbIyXhcppCP03TA&oe=6A136CE4",
                                "previewImageUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.35426-6/649376900_978249861203086_2417192780715376312_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=HRJFID7echsQ7kNvwFg44gg&_nc_oc=AdqPXkDOWlmsTotpUK6JbhrbvaLuAgVKZrLEJhKXfGX5IXfwvQX7vTd8YBA8N5x_4A0&_nc_zt=14&_nc_ht=scontent-bos5-1.xx&_nc_gid=QNUmkXHO6pdr5iCn_xiF3w&_nc_ss=7e289&oh=00_Af6Q-75n7Vj7ldBhf3l9sCfDHE1qNNs_t9Kb7E4mTZUBUA&oe=6A136CCB"
                              }
                            ],
                            "cards": []
                          }
                        },
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "withTranscript": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "ad": {
                          "id": "902134546059754",
                          "adId": null,
                          "url": "https://www.facebook.com/ads/library?id=902134546059754",
                          "page": {
                            "id": "170229159669841",
                            "name": "Zomato",
                            "url": "https://www.instagram.com/_u/hey.sanober",
                            "isDeleted": false,
                            "profilePictureUrl": "https://scontent-lga3-3.cdninstagram.com/v/t51.82787-19/657785441_17969434809013326_9108915003959285985_n.jpg?stp=dst-jpg_s206x206_tt6&_nc_cat=1&ccb=7-5&_nc_sid=525117&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy42OTguQzMifQ%3D%3D&_nc_ohc=T-S3Zr46rmsQ7kNvwHdJsFM&_nc_oc=AdoiPEr5llETnXfs_rf-8Q2EsKdk_y_xot2CDqB-Z_5ZqCvFPYGnd58R3ny6s4VVCVU&_nc_zt=24&_nc_ht=scontent-lga3-3.cdninstagram.com&_nc_gid=djzVdTl37Q6nr4O7QmDJDw&_nc_ss=7e289&oh=00_Af4FwEcgaxhYLbZpoCUdHwMiDDt3FRsL_hcdaUIwQMHk-Q&oe=6A135F97",
                            "likeCount": 0,
                            "categories": [
                              "Profile"
                            ]
                          },
                          "campaign": {
                            "collationId": null,
                            "collationCount": null
                          },
                          "isActive": true,
                          "publisherPlatforms": [
                            "facebook",
                            "instagram"
                          ],
                          "startedAt": "2026-03-11T07:00:00.000Z",
                          "endedAt": "2026-05-19T07:00:00.000Z",
                          "categories": [
                            "UNKNOWN"
                          ],
                          "countries": [],
                          "impressions": {
                            "text": null,
                            "index": -1
                          },
                          "spend": null,
                          "creative": {
                            "bodyText": "Some days the hustle barely leaves room for lunch. That’s when I refuel with @zomato \n\nThe grind shouldn’t stop just because you’re hungry. 🍽️✨\n\n#zomato #ad",
                            "title": null,
                            "caption": "play.google.com",
                            "linkUrl": "http://play.google.com/store/apps/details?id=com.application.zomato",
                            "linkDescription": null,
                            "callToAction": "Install now",
                            "callToActionType": "INSTALL_MOBILE_APP",
                            "displayFormat": "video",
                            "images": [],
                            "videos": [
                              {
                                "hdUrl": "https://video-lga3-3.xx.fbcdn.net/o1/v/t2/f2/m367/AQPOJ0rdHWbvKnGrmnLH4fXgNtAuaCO02CwFRR3lv4pOj_c8UKe-igTIQWUlizoiVh1QywSV30K0yS4qraL5SC2qeVBpicu27jnQl-xHFQ.mp4?_nc_cat=106&_nc_sid=8bf8fe&_nc_ht=video-lga3-3.xx.fbcdn.net&_nc_ohc=HoErQUm6xO8Q7kNvwGP4ANB&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuNzIwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl83MjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk2NTI0MTQ5MzAxMzMyNiwiYXNzZXRfYWdlX2RheXMiOjc4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=djzVdTl37Q6nr4O7QmDJDw&_nc_ss=7e289&_nc_zt=28&oh=00_Af4UjTL6KMBfx43jiXYZj6k5nyjH6JWvnJ7tt-4W0qAWCA&oe=6A136D58",
                                "sdUrl": "https://video-lga3-3.xx.fbcdn.net/o1/v/t2/f2/m367/AQMVefbS2ttuIJC8Oa_BBsrjByLjf_emvT42zj7ZsbGnex9__UCOHkNDPHN6DGoqrYmCKom3UjBWTiFT1Oaviq0Cf9Ev2aMCv_mG_ifgHw.mp4?_nc_cat=102&_nc_sid=8bf8fe&_nc_ht=video-lga3-3.xx.fbcdn.net&_nc_ohc=PIInzVOSQ8wQ7kNvwFr4N8F&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMzYwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl8zNjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk2NTI0MTQ5MzAxMzMyNiwiYXNzZXRfYWdlX2RheXMiOjc4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjUsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=djzVdTl37Q6nr4O7QmDJDw&_nc_ss=7e289&_nc_zt=28&oh=00_Af6E1rWpLNCZ2lSlvgDB_m5NMNi_n-u1hS17_l_whgI_Vw&oe=6A136CE4",
                                "previewImageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.35426-6/649376900_978249861203086_2417192780715376312_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=HRJFID7echsQ7kNvwEPvDE9&_nc_oc=Ado4DIQpNWR0y-C1URv5M-PxcZrww8K9m3VWVwJeEkPKDM1qqJ7Xs_OBxj9LVkqWiU4&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=djzVdTl37Q6nr4O7QmDJDw&_nc_ss=7e289&oh=00_Af79rIczKdLtDPLfcvBIJQhZtC3vlX-QPC-W5QE5D2BVtg&oe=6A136CCB"
                              }
                            ],
                            "cards": []
                          }
                        },
                        "transcript": "Nobody tells you that running a business means sometimes you just don't have time to eat. I just mean you don't wanna deal with me when I'm hungry. Luckily I have my mom with me who cooks all the meals for me and feeds my soul, but when she's not around you know who sorts me out. You know who, who else? So when I'm all neck deep in work, I don't really pause. I refuel without breaking my rhythm with Zomato. Do you?"
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "ad": null,
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/ad-library/ads/search": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Search Facebook Ad Library ads",
        "description": "Search Facebook Ad Library ads by keyword.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Search query text for Facebook Ad Library ads."
            },
            "required": true,
            "description": "Search query text for Facebook Ad Library ads.",
            "name": "query",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "impressions",
                "most-recent"
              ],
              "description": "Optional sort order for returned ads."
            },
            "required": false,
            "description": "Optional sort order for returned ads.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "keyword-unordered",
                "exact-phrase"
              ],
              "description": "Optional keyword matching mode for the search query."
            },
            "required": false,
            "description": "Optional keyword matching mode for the search query.",
            "name": "searchType",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "political-and-issue"
              ],
              "description": "Optional filter for all ads or political and issue ads."
            },
            "required": false,
            "description": "Optional filter for all ads or political and issue ads.",
            "name": "adType",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 2,
              "maxLength": 3,
              "description": "Optional country code filter. Use ALL to search all countries."
            },
            "required": false,
            "description": "Optional country code filter. Use ALL to search all countries.",
            "name": "country",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "active",
                "inactive"
              ],
              "description": "Optional ad status filter."
            },
            "required": false,
            "description": "Optional ad status filter.",
            "name": "status",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "image",
                "video",
                "meme",
                "image-and-meme",
                "none"
              ],
              "description": "Optional creative media filter."
            },
            "required": false,
            "description": "Optional creative media filter.",
            "name": "mediaType",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
              "description": "Optional start date filter in YYYY-MM-DD format."
            },
            "required": false,
            "description": "Optional start date filter in YYYY-MM-DD format.",
            "name": "startDate",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
              "description": "Optional end date filter in YYYY-MM-DD format."
            },
            "required": false,
            "description": "Optional end date filter in YYYY-MM-DD format.",
            "name": "endDate",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor from a previous response."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "When true, returns a smaller response with fewer fields."
            },
            "required": false,
            "description": "When true, returns a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Facebook Ad Library ads matching the requested search.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "ads": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable identifier for the ad."
                              },
                              "adId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Platform ad id when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Public Facebook Ad Library URL for this ad when available."
                              },
                              "page": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Facebook page id for the advertiser when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name for the advertiser page when available."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Public Facebook URL for the advertiser page when available."
                                  },
                                  "isDeleted": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the advertiser page is marked deleted."
                                  },
                                  "profilePictureUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile picture URL for the advertiser page when available."
                                  },
                                  "likeCount": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Advertiser page like count when available."
                                  },
                                  "categories": {
                                    "type": "array",
                                    "items": {
                                      "type": "string",
                                      "minLength": 1
                                    },
                                    "description": "Public categories for the advertiser page when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "url",
                                  "isDeleted",
                                  "profilePictureUrl",
                                  "likeCount",
                                  "categories"
                                ],
                                "description": "Advertiser page summary for this ad."
                              },
                              "campaign": {
                                "type": "object",
                                "properties": {
                                  "collationId": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Campaign collation id when available."
                                  },
                                  "collationCount": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Number of ads in the campaign collation when available."
                                  }
                                },
                                "required": [
                                  "collationId",
                                  "collationCount"
                                ],
                                "description": "Campaign collation metadata for this ad."
                              },
                              "isActive": {
                                "type": "boolean",
                                "description": "Whether the ad is currently active."
                              },
                              "publisherPlatforms": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Publisher platforms where the ad ran or is running."
                              },
                              "startedAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the ad started, when available."
                              },
                              "endedAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the ad ended, when available."
                              },
                              "categories": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Ad categories reported by the platform."
                              },
                              "countries": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Countries targeted or reached by the ad when available."
                              },
                              "impressions": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "text": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable impressions label when available."
                                  },
                                  "index": {
                                    "type": "integer",
                                    "nullable": true,
                                    "description": "Impressions index when available."
                                  }
                                },
                                "required": [
                                  "text",
                                  "index"
                                ],
                                "description": "Impressions metadata when available."
                              },
                              "spend": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "amount": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Spend amount text when available."
                                  },
                                  "currency": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency code for spend when available."
                                  }
                                },
                                "required": [
                                  "amount",
                                  "currency"
                                ],
                                "description": "Spend metadata when available."
                              },
                              "creative": {
                                "type": "object",
                                "properties": {
                                  "bodyText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary ad body text when available."
                                  },
                                  "title": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Ad title when available."
                                  },
                                  "caption": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Ad caption when available."
                                  },
                                  "linkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary link URL when available."
                                  },
                                  "linkDescription": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Link description when available."
                                  },
                                  "callToAction": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Call-to-action label when available."
                                  },
                                  "callToActionType": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Call-to-action type when available."
                                  },
                                  "displayFormat": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display format for the creative when available."
                                  },
                                  "images": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "url": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Image URL when available."
                                        },
                                        "resizedUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Resized image URL when available."
                                        },
                                        "watermarkedResizedUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Watermarked resized image URL when available."
                                        }
                                      },
                                      "required": [
                                        "url",
                                        "resizedUrl",
                                        "watermarkedResizedUrl"
                                      ],
                                      "description": "Image asset for a Facebook Ad Library ad creative."
                                    },
                                    "description": "Image assets attached to the creative."
                                  },
                                  "videos": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "hdUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "High-definition video URL when available."
                                        },
                                        "sdUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Standard-definition video URL when available."
                                        },
                                        "previewImageUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Video preview image URL when available."
                                        }
                                      },
                                      "required": [
                                        "hdUrl",
                                        "sdUrl",
                                        "previewImageUrl"
                                      ],
                                      "description": "Video asset for a Facebook Ad Library ad creative."
                                    },
                                    "description": "Video assets attached to the creative."
                                  },
                                  "cards": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "title": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card title when available."
                                        },
                                        "body": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card body text when available."
                                        },
                                        "caption": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card caption when available."
                                        },
                                        "linkUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card link URL when available."
                                        },
                                        "imageUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card image URL when available."
                                        },
                                        "videoUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card video URL when available."
                                        }
                                      },
                                      "required": [
                                        "title",
                                        "body",
                                        "caption",
                                        "linkUrl",
                                        "imageUrl",
                                        "videoUrl"
                                      ],
                                      "description": "Carousel card for a Facebook Ad Library ad creative."
                                    },
                                    "description": "Carousel cards attached to the creative."
                                  }
                                },
                                "required": [
                                  "bodyText",
                                  "title",
                                  "caption",
                                  "linkUrl",
                                  "linkDescription",
                                  "callToAction",
                                  "callToActionType",
                                  "displayFormat",
                                  "images",
                                  "videos",
                                  "cards"
                                ],
                                "description": "Creative content for this ad."
                              }
                            },
                            "required": [
                              "id",
                              "adId",
                              "url",
                              "page",
                              "campaign",
                              "isActive",
                              "publisherPlatforms",
                              "startedAt",
                              "endedAt",
                              "categories",
                              "countries",
                              "impressions",
                              "spend",
                              "creative"
                            ],
                            "description": "A single Facebook Ad Library ad."
                          },
                          "description": "Ads returned for the requested search. This array may be empty when no ads match the filters."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of ads can be requested."
                            },
                            "totalResultsEstimate": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Estimated total number of matching ads when available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore",
                            "totalResultsEstimate"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "query",
                        "ads",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "query": "running",
                        "ads": [
                          {
                            "id": "615470338018648",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=615470338018648",
                            "page": {
                              "id": "115531458627129",
                              "name": "Example Advertiser",
                              "url": "https://www.facebook.com/example",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg",
                              "likeCount": 3823,
                              "categories": [
                                "Pet Service"
                              ]
                            },
                            "campaign": {
                              "collationId": "888075953335279",
                              "collationCount": 1
                            },
                            "isActive": true,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-28T00:00:00.000Z",
                            "endedAt": "2025-02-28T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": null,
                              "linkUrl": "https://example.com/product",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "callToActionType": "LEARN_MORE",
                              "displayFormat": "IMAGE",
                              "images": [
                                {
                                  "url": "https://example.com/image.jpg",
                                  "resizedUrl": "https://example.com/image-resized.jpg",
                                  "watermarkedResizedUrl": null
                                }
                              ],
                              "videos": [],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiQVFIX2V4YW1wbGUiLCJmIjp7InF1ZXJ5IjoicnVubmluZyJ9fQ",
                          "hasMore": true,
                          "totalResultsEstimate": 50001
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "query": "running",
                        "ads": [
                          {
                            "id": "615470338018649",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=615470338018649",
                            "page": {
                              "id": "115531458627129",
                              "name": "Example Advertiser",
                              "url": "https://www.facebook.com/example",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg",
                              "likeCount": 3823,
                              "categories": [
                                "Pet Service"
                              ]
                            },
                            "campaign": {
                              "collationId": "888075953335279",
                              "collationCount": 1
                            },
                            "isActive": true,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-28T00:00:00.000Z",
                            "endedAt": "2025-02-28T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": null,
                              "linkUrl": "https://example.com/product",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "callToActionType": "LEARN_MORE",
                              "displayFormat": "IMAGE",
                              "images": [
                                {
                                  "url": "https://example.com/image.jpg",
                                  "resizedUrl": "https://example.com/image-resized.jpg",
                                  "watermarkedResizedUrl": null
                                }
                              ],
                              "videos": [],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiQVFIX3NlY29uZF9wYWdlIiwiZiI6eyJxdWVyeSI6InJ1bm5pbmcifX0",
                          "hasMore": true,
                          "totalResultsEstimate": null
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "unlikely search",
                        "ads": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false,
                          "totalResultsEstimate": 0
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "video": {
                    "value": {
                      "data": {
                        "query": "running",
                        "ads": [
                          {
                            "id": "615470338018650",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=615470338018650",
                            "page": {
                              "id": "115531458627129",
                              "name": "Example Advertiser",
                              "url": "https://www.facebook.com/example",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg",
                              "likeCount": 3823,
                              "categories": [
                                "Pet Service"
                              ]
                            },
                            "campaign": {
                              "collationId": "888075953335279",
                              "collationCount": 1
                            },
                            "isActive": true,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-28T00:00:00.000Z",
                            "endedAt": "2025-02-28T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": null,
                              "linkUrl": "https://example.com/product",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "callToActionType": "LEARN_MORE",
                              "displayFormat": "VIDEO",
                              "images": [],
                              "videos": [
                                {
                                  "hdUrl": "https://example.com/video-hd.mp4",
                                  "sdUrl": "https://example.com/video-sd.mp4",
                                  "previewImageUrl": "https://example.com/video-preview.jpg"
                                }
                              ],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false,
                          "totalResultsEstimate": 50001
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_video",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "inactive": {
                    "value": {
                      "data": {
                        "query": "running",
                        "ads": [
                          {
                            "id": "615470338018651",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=615470338018651",
                            "page": {
                              "id": "115531458627129",
                              "name": "Example Advertiser",
                              "url": "https://www.facebook.com/example",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg",
                              "likeCount": 3823,
                              "categories": [
                                "Pet Service"
                              ]
                            },
                            "campaign": {
                              "collationId": "888075953335279",
                              "collationCount": 1
                            },
                            "isActive": false,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-28T00:00:00.000Z",
                            "endedAt": "2025-03-01T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": null,
                              "linkUrl": "https://example.com/product",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "callToActionType": "LEARN_MORE",
                              "displayFormat": "IMAGE",
                              "images": [
                                {
                                  "url": "https://example.com/image.jpg",
                                  "resizedUrl": "https://example.com/image-resized.jpg",
                                  "watermarkedResizedUrl": null
                                }
                              ],
                              "videos": [],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false,
                          "totalResultsEstimate": 50001
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_inactive",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid search parameters or cursor",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/ad-library/companies/search": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Search Facebook ad library companies",
        "description": "Search Facebook ad library companies by name.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "Search query text for Facebook ad library companies."
            },
            "required": true,
            "description": "Search query text for Facebook ad library companies.",
            "name": "query",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Company search results for the requested query.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "companies": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "platform": {
                                "type": "string",
                                "enum": [
                                  "facebook"
                                ],
                                "description": "Social platform for this company result."
                              },
                              "pageId": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Facebook page id for use with other ad library endpoints."
                              },
                              "name": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Company or page name."
                              },
                              "category": {
                                "type": "string",
                                "nullable": true,
                                "description": "Page category label when available."
                              },
                              "imageUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Profile image URL when available."
                              },
                              "likes": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Page like count when available."
                              },
                              "verification": {
                                "type": "string",
                                "nullable": true,
                                "description": "Verification status label when available."
                              },
                              "country": {
                                "type": "string",
                                "nullable": true,
                                "description": "Country associated with the page when available."
                              },
                              "entityType": {
                                "type": "string",
                                "nullable": true,
                                "description": "Entity type reported for the page when available."
                              },
                              "pageAlias": {
                                "type": "string",
                                "nullable": true,
                                "description": "Public page alias or username when available."
                              },
                              "pageDeleted": {
                                "type": "boolean",
                                "nullable": true,
                                "description": "Whether the page is marked as deleted when reported."
                              },
                              "instagram": {
                                "type": "object",
                                "properties": {
                                  "username": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Linked Instagram username when available."
                                  },
                                  "followers": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Linked Instagram follower count when available."
                                  },
                                  "verified": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the linked Instagram account is verified."
                                  }
                                },
                                "required": [
                                  "username",
                                  "followers",
                                  "verified"
                                ],
                                "description": "Linked Instagram details when available."
                              }
                            },
                            "required": [
                              "platform",
                              "pageId",
                              "name",
                              "category",
                              "imageUrl",
                              "likes",
                              "verification",
                              "country",
                              "entityType",
                              "pageAlias",
                              "pageDeleted",
                              "instagram"
                            ],
                            "description": "A Facebook ad library company search result."
                          },
                          "description": "Companies returned for the search query."
                        },
                        "totalCompanies": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of companies returned in this response."
                        }
                      },
                      "required": [
                        "query",
                        "companies",
                        "totalCompanies"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "results": {
                    "value": {
                      "data": {
                        "query": "nike",
                        "companies": [
                          {
                            "platform": "facebook",
                            "pageId": "15087023444",
                            "name": "Nike",
                            "category": "Sportswear Store",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/284964043_10159903868513445_7696353984967674128_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=1&ccb=1-7&_nc_sid=418b77&_nc_ohc=MiIsRq9OtIgQ7kNvwFgCp6a&_nc_oc=AdrXoklhItyWvS7gYnP-xTbs9w35g-Zev7ZQrqGOdJx0XFHnJajR5gWpwJAjTACjSC8&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af4JfJ7GXcjJfD73EzCRIweoZ1DcMFjFVMJaguf7-UxWyA&oe=6A136F70",
                            "likes": 39651323,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nike",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nike",
                              "followers": 292091915,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "51212153078",
                            "name": "Nike Football",
                            "category": "Product/service",
                            "imageUrl": "https://scontent-sea5-1.xx.fbcdn.net/v/t39.30808-1/387181570_863325755161415_3589774989337788111_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=103&ccb=1-7&_nc_sid=418b77&_nc_ohc=sN-QY749hScQ7kNvwERPNzg&_nc_oc=Adr-ZWflDPtXfKZY9u0PCuR_SMegkZkfHNkVqCPwX_LJ0EjC_04-rUj2wvo6pxaDrEQ&_nc_zt=24&_nc_ht=scontent-sea5-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af7xAAZ1i9TOZOfYpYIfGX_ZAqVANozGqDRSe5nxuSObuA&oe=6A133F05",
                            "likes": 40289396,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikefootball",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikefootball",
                              "followers": 44531917,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "65604112975",
                            "name": "Nike Run Club",
                            "category": "Sports & Recreation Venue",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/381660358_828089658776016_1921906525565601948_n.png?stp=dst-png_s200x200&_nc_cat=1&ccb=1-7&_nc_sid=418b77&_nc_ohc=a7GstbZ0h1IQ7kNvwEFinJQ&_nc_oc=AdpIYlJXBsbnsm2DvwQK8BrlJLZw1M_qEVcbKSkPVrvSJ2S_ohkRCGgdBgGUYFI-pzk&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af4NhpUn247aaa_lMj5ZxTWUBM-R1xrs7BHiVl_PbBDo3Q&oe=6A135DAA",
                            "likes": 15389635,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikerunning",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikerunning",
                              "followers": 6159794,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "20825389113",
                            "name": "Nike Sportswear",
                            "category": "Product/service",
                            "imageUrl": "https://scontent-sea5-1.xx.fbcdn.net/v/t39.30808-1/352238800_1378999996006774_4240209247781423917_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=103&ccb=1-7&_nc_sid=418b77&_nc_ohc=PDgiTeeaToMQ7kNvwFUpfX_&_nc_oc=AdoPVng7k1O1D9dkg1C7mPtwnCosnArc173w1RKXhmrynh8cwdqxw7lha_6kwv8A8mw&_nc_zt=24&_nc_ht=scontent-sea5-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af55HGXPrMqpa8FtVemYSE9Bc9rQGVY9B4N-QSMfbSKS_A&oe=6A136F5F",
                            "likes": 15607617,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikesportswear",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikesportswear",
                              "followers": 7649375,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "5941596308",
                            "name": "Nike Basketball",
                            "category": "Product/service",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/352779693_291587943296654_5195981052627043005_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=106&ccb=1-7&_nc_sid=418b77&_nc_ohc=JfQ2Z6FsYZMQ7kNvwHGw5Pd&_nc_oc=AdridIF5njuV4TCjkA6_6TUSvbMTN4-qX2WQ0qvAD2oeTJdOtKSoMDCcFF2uEREgyHk&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af4x8j3beeQuxg5NCbTGjnkmM6UEaTrtd2YiyLPHP49Zcw&oe=6A136412",
                            "likes": 7596493,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikebasketball",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikebasketball",
                              "followers": 15598428,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "108379289247689",
                            "name": "Nike Skateboarding",
                            "category": "Product/service",
                            "imageUrl": "https://scontent-sea5-1.xx.fbcdn.net/v/t39.30808-1/352706208_1588401181639202_901415604300420876_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=110&ccb=1-7&_nc_sid=418b77&_nc_ohc=8b2tKLriJowQ7kNvwGZJOrS&_nc_oc=AdoikV4vVmgkKWXefcxwXA0yRtHNnO_5SfMhIhEHr_dNTaGjbq7o880Red3M-7Mr_cQ&_nc_zt=24&_nc_ht=scontent-sea5-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af5bIb5k2gN1n0kEbr4ysr416Qqo40TXOuJEYtleAJ-iZQ&oe=6A133C00",
                            "likes": 8565227,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "NikeSkateboarding",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikesb",
                              "followers": 6522898,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "6261664682",
                            "name": "NikeWomen",
                            "category": "Product/service",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/360155777_843020267183742_6325909005771886494_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=106&ccb=1-7&_nc_sid=418b77&_nc_ohc=jotiXAWViJ0Q7kNvwEpgokd&_nc_oc=AdrleSk6nuEJ2SSrw-BINO289yD5AXG5aICvcnO0ktTPZjzJZF60hGxmQ1e8zV2OMDQ&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af4Wo3XwCbwTLZZnclDFHMoBfnxiIhZIP48r2ySwAQujJg&oe=6A133D4E",
                            "likes": 5469288,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikewomen",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikewomen",
                              "followers": 6801362,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "128198963716100",
                            "name": "Nike Strength",
                            "category": "Brand",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/387074276_122113082780063867_240960197833276102_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=104&ccb=1-7&_nc_sid=418b77&_nc_ohc=4OzVCLrKQ18Q7kNvwHHSlR3&_nc_oc=AdpQIA0x1rMOiHlhy_21rdhQt-yvxBYxypD_koWOdq2GyZqETipTECrdLIO0MMbqOVQ&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af6P_ei7GNoQpZx5IIBGu2BZcXZpYhfcuMLILUBDpKXnRA&oe=6A135153",
                            "likes": 11911,
                            "verification": "NOT_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikestrength",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nikestrength",
                              "followers": 237633,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "1461718484118285",
                            "name": "Niké je tipovanie",
                            "category": "Interest",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/341111328_738870064578442_1225960234040314537_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=100&ccb=1-7&_nc_sid=418b77&_nc_ohc=kN8dqNq-tE0Q7kNvwF4RPje&_nc_oc=AdqSe6LPwuX8z-oPQSFmfl4NdrLFNCYQYVkCF1qx0Jon1iNHKb3ehTh8tEq6inBmz3s&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af6ZagiZJoMQGi7O_u1SawjcFh325MePsGe36zpATQ86lQ&oe=6A136FB0",
                            "likes": 99477,
                            "verification": "NOT_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "NIKEjetipovanie",
                            "pageDeleted": false,
                            "instagram": {
                              "username": null,
                              "followers": null,
                              "verified": null
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "57460905720",
                            "name": "Nike Football",
                            "category": "Retail Company",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/352241125_115307234918826_7034162321122119580_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=100&ccb=1-7&_nc_sid=418b77&_nc_ohc=2DtU1XbmIsgQ7kNvwEWOURK&_nc_oc=AdrkelCwgql3YSwJ7DyeSTEJ6Yit21DSoKP5RsMhWVbmxnZsYTnv7ozl9IqUeSDOY-Q&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af49yXhVXsLQo_wF8Dj7WN0l4rUB_1QtcN_SIRPeg7G67g&oe=6A136E54",
                            "likes": 5887624,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "usnikefootball",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "usnikefootball",
                              "followers": 2237600,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "1957446251204909",
                            "name": "Nikema Williams",
                            "category": "Politician",
                            "imageUrl": "https://scontent-sea5-1.xx.fbcdn.net/v/t39.30808-1/263004090_404760094355264_2047193406290386818_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=107&ccb=1-7&_nc_sid=418b77&_nc_ohc=_zVdoTWH8L0Q7kNvwEVCjfU&_nc_oc=Adq8jDOBnLszYCJQUdAz1pNP802_WFApXEJ3nJqbeDLamFL4rrQwPogEKHqetpGWAoE&_nc_zt=24&_nc_ht=scontent-sea5-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af4JzrvFmi7g7_XPrUloiwouXsxsF3ticKFXIgOvHTRhHA&oe=6A133D30",
                            "likes": 13193,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "NikemaforCongress",
                            "pageDeleted": false,
                            "instagram": {
                              "username": null,
                              "followers": null,
                              "verified": null
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "682288964969542",
                            "name": "Nike Product Testers",
                            "category": "Apparel & Clothing",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/511193282_10160755385761783_9018986867387327551_n.jpg?stp=dst-jpg_p200x200_tt6&_nc_cat=104&ccb=1-7&_nc_sid=418b77&_nc_ohc=DEm8pUuMRoIQ7kNvwEsq02k&_nc_oc=Adre5PhnXySnvIOIASm0dW6PEwYguYT3SMo_SypOGPFYYFN6-P9g0OernJ2BmbyuKOo&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af43WWGy-28uLV1ernBysuNWncTIT_r21gjbYu8h7DoXSA&oe=6A136FD7",
                            "likes": 5810,
                            "verification": "NOT_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": null,
                            "pageDeleted": false,
                            "instagram": {
                              "username": null,
                              "followers": null,
                              "verified": null
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "276907439024459",
                            "name": "Nike Japan (ナイキ)",
                            "category": "Retail Company",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/351525976_226734210145102_5521153730850946611_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=1&ccb=1-7&_nc_sid=418b77&_nc_ohc=5YSkaOG1XVYQ7kNvwHLunjh&_nc_oc=AdrOli4Dc4OWM6Pc57LEvXPZCACYYeIrCPW2T-IopFT9z7JU05Vt-SGNM8YEuXan7Ik&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af6_DpacjK4C38ORqMkqctnpQvKrHyAk2CPaqi34mtKsKw&oe=6A1348ED",
                            "likes": 310870,
                            "verification": "BLUE_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "nikejapan",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "niketokyo",
                              "followers": 565981,
                              "verified": true
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "319786157889879",
                            "name": "US Sports Camps - NIKE Sports Camps",
                            "category": "Sports & Recreation Venue",
                            "imageUrl": "https://scontent-sea5-1.xx.fbcdn.net/v/t39.30808-1/558050782_122206770398343145_1567215682791490112_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=109&ccb=1-7&_nc_sid=418b77&_nc_ohc=AQgxHs0Qgh8Q7kNvwH46SrX&_nc_oc=AdqqCFXZnxABd6H3qnlQ1PI7Lsk-EMA8CA5l1EYAaYqWFv5iBgBsEqsZMZ_HbLc5kJQ&_nc_zt=24&_nc_ht=scontent-sea5-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af6dVMEEFrn6IeFJ-YgPxy-cBFjHnwCyPsy0sz1qE0ehXQ&oe=6A1352BF",
                            "likes": 9832,
                            "verification": "NOT_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "ussportscamps",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "ussportscamps",
                              "followers": 20285,
                              "verified": false
                            }
                          },
                          {
                            "platform": "facebook",
                            "pageId": "112856680258791",
                            "name": "Niké Kasíno",
                            "category": "Casino",
                            "imageUrl": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.30808-1/452564838_1004892101644091_1489770994966080016_n.jpg?stp=dst-jpg_s200x200_tt6&_nc_cat=100&ccb=1-7&_nc_sid=418b77&_nc_ohc=Ax03zAjZW2IQ7kNvwHUt8Ic&_nc_oc=Adrcp5Vu9dFApbJ-MiBZiLLnsSh-fWTjYERSqDxDSTd7teaqw8okSpCS5bEFRj1kegc&_nc_zt=24&_nc_ht=scontent-sea1-1.xx&_nc_gid=L7LRVTkiKt_29Ewfz1O2-w&_nc_ss=70289&oh=00_Af7lG7O3jIivavvf-Q-jobnytAthSBQza14lmSDH2VQT-w&oe=6A136F5A",
                            "likes": 19662,
                            "verification": "NOT_VERIFIED",
                            "country": null,
                            "entityType": "PERSON_PROFILE",
                            "pageAlias": "NikeKasino",
                            "pageDeleted": false,
                            "instagram": {
                              "username": "nike_kasino",
                              "followers": 1504,
                              "verified": false
                            }
                          }
                        ],
                        "totalCompanies": 15
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "zzzxxyyqqnomatchfixture999",
                        "companies": [],
                        "totalCompanies": 0
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/groups/posts": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook group posts",
        "description": "Get posts from a Facebook group.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "disambiguation": "Pass a full Facebook group URL (`facebook.com/groups/{id-or-slug}/…`), not a profile or page URL. Use `sortBy: chronological` for general feeds; use `chronologicalListings` for Buy/Sell marketplace groups. Upstream returns a small number of posts per page (often around three). No server-side keyword filter — filter client-side on `text` after fetching pages.",
          "emptyResults": "`lookupStatus: not_found` often means the group URL was wrong or unresolved. Each page bills separately, including `not_found` outcomes."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public Facebook group URL whose posts should be listed."
            },
            "required": true,
            "description": "Public Facebook group URL whose posts should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "top",
                "recentActivity",
                "chronological",
                "chronologicalListings"
              ],
              "description": "Optional sort order for the returned posts."
            },
            "required": false,
            "description": "Optional sort order for the returned posts.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`)."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`).",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Group posts for the requested feed. Check `data.lookupStatus` for `found` vs `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the group resolved for this request."
                        },
                        "posts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable identifier for the post."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Canonical public URL for this Facebook group post."
                              },
                              "text": {
                                "type": "string",
                                "nullable": true,
                                "description": "Text body of the post when available."
                              },
                              "publishedAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the post was published, when available."
                              },
                              "reactionCount": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Reaction count for the post when available."
                              },
                              "commentCount": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Comment count for the post when available."
                              },
                              "author": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Platform identifier for the post author when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name for the post author when available."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Public profile URL for the post author when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "url"
                                ],
                                "description": "Author summary for this post."
                              },
                              "video": {
                                "type": "object",
                                "properties": {
                                  "thumbnailUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Thumbnail image URL for embedded video when available."
                                  },
                                  "durationMs": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Video duration in milliseconds when available."
                                  },
                                  "sdUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Standard-definition video URL when available."
                                  },
                                  "hdUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "High-definition video URL when available."
                                  }
                                },
                                "required": [
                                  "thumbnailUrl",
                                  "durationMs",
                                  "sdUrl",
                                  "hdUrl"
                                ],
                                "description": "Embedded video metadata when this post includes video."
                              }
                            },
                            "required": [
                              "id",
                              "url",
                              "text",
                              "publishedAt",
                              "reactionCount",
                              "commentCount",
                              "author",
                              "video"
                            ],
                            "description": "A single post from a Facebook group feed."
                          },
                          "description": "Posts returned for the requested group. This array may be empty when the group resolves but no posts are returned."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of posts can be requested."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "posts",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "posts": [
                          {
                            "id": "1568777534579662",
                            "url": "https://www.facebook.com/groups/742354120555345/permalink/1568777534579662/",
                            "text": "Who hit granny 🤔\n#fight",
                            "publishedAt": "2026-05-17T03:35:10.000Z",
                            "reactionCount": 73,
                            "commentCount": 36,
                            "author": {
                              "id": "100072565869635",
                              "name": "Hancho Red",
                              "url": null
                            },
                            "video": {
                              "thumbnailUrl": "https://scontent-lga3-2.xx.fbcdn.net/v/t15.5256-10/700118977_1018748580482065_1794802588333604144_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=101&ccb=1-7&_nc_sid=50ce42&_nc_ohc=v1mi1yps2TAQ7kNvwGCjE6l&_nc_oc=Adq8CBG0cGOyJXUfSrJD2Jikx0fp4nnKzDCT30xTQU6ag_kNgeryASH0b0ijy0xeoZc&_nc_zt=23&_nc_ht=scontent-lga3-2.xx&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&oh=00_Af7HE3eHzmHvCH2Skx5GBhS4fSHYxwQUDo3cfXmSp6vSdg&oe=6A0F38D1",
                              "durationMs": null,
                              "sdUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m412/AQP-M-zwRu8SDps7AtugfGzyLHoVbr9RIVsfT74jmKz-jR0e1H6NbO27ghP_ol4PfyZDhkSW1WDs5oQQ4miSTMyAi0JPOmaqTSEMRp9ciQ.mp4?_nc_cat=103&_nc_sid=8bf8fe&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=QiuDqJW5A64Q7kNvwHqNmUc&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzIuMzYwLnN2ZV9zZCIsInhwdl9hc3NldF9pZCI6MjUyMDg4MjM5NTAxMDAxMywiYXNzZXRfYWdlX2RheXMiOjAsInZpX3VzZWNhc2VfaWQiOjEwMTIxLCJkdXJhdGlvbl9zIjoxNiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&_nc_zt=28&oh=00_Af7vjG2o4QLwANthi0H3DF40OXORFN5DyTFALoovzeUOgA&oe=6A0F288F&bitrate=688988&tag=sve_sd",
                              "hdUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m366/AQOMe0QD0jm2RdFZ0gdHTZ1UscynH93C8M3g5RIjiN6-u8fkimEglJHLmzSZq-CF82pXbwFfApk-PevO5pG2Z-IXcuRYm-7IGJ8p-qzGQqM51g.mp4?_nc_cat=111&_nc_sid=5e9851&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=JDYEuT1L4LsQ7kNvwFnP0z7&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzIuNzIwLmRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHAiLCJ4cHZfYXNzZXRfaWQiOjI1MjA4ODIzOTUwMTAwMTMsImFzc2V0X2FnZV9kYXlzIjowLCJ2aV91c2VjYXNlX2lkIjoxMDEyMSwiZHVyYXRpb25fcyI6MTYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=228d06575aec7377&_nc_vs=HBksFQIYRWZiX2VwaGVtZXJhbC8yOTQxRTJCRDQ2QUJBNkIyQTI1ODRCNkRFOTg4REFCMF9tdF8xX3ZpZGVvX2Rhc2hpbml0Lm1wNBUAAsgBEgAVAhhAZmJfcGVybWFuZW50L0U4NDE1Q0ZDNjRFQjBERTVFMkREMUQ0RUQ3REJEOUIxX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACa6z-a61a76CBUCKAJDMiwXQDDVP3ztkWgYGWRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHARAHUCZZKeAQA&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&_nc_zt=28&oh=00_Af6OETJ6f4yUDG-ZMK5RQNv47xLU8dg2f-D6P54ELKYlzw&oe=6A0F3581&bitrate=2752820&tag=dash_h264-basic-gen2_720p"
                            }
                          },
                          {
                            "id": "1566390568151692",
                            "url": "https://www.facebook.com/groups/742354120555345/permalink/1566390568151692/",
                            "text": "😩😩😩👊🏾 Damn.",
                            "publishedAt": "2026-05-14T09:29:33.000Z",
                            "reactionCount": 2241,
                            "commentCount": 739,
                            "author": {
                              "id": "100081860143756",
                              "name": "P-la Nkanyiso Nxele",
                              "url": null
                            },
                            "video": {
                              "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/699396991_2759158251144000_1056991297185105477_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=50ce42&_nc_ohc=67EadXVu4UoQ7kNvwGPu_eJ&_nc_oc=AdpqzRNoQ4IhEd6RqVu_Kf_oK_lRFt9yJ-ktYUqge6haa7Ox4K-a5KO5EzihowCBz3A&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&oh=00_Af798rvS_vzoh2ZWdcV1twy7bBS0ILpkb2e-FnuljIA14w&oe=6A0F30F3",
                              "durationMs": null,
                              "sdUrl": "https://video-lga3-3.xx.fbcdn.net/o1/v/t2/f2/m412/AQNGlmfD2g43b8-ajJMQ0AfuSP5kyxGjHtjuoI3dmnxfiuVReneklyoTkXwTssiEeul_2amXbF9GUZ7D_tVjynnoVcH6Gbf7jgLJsWkwkQ.mp4?_nc_cat=102&_nc_sid=8bf8fe&_nc_ht=video-lga3-3.xx.fbcdn.net&_nc_ohc=odrIxK2IHxIQ7kNvwGN5Edm&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzIuMzYwLnN2ZV9zZCIsInhwdl9hc3NldF9pZCI6MTI1MTMzODExNzIxMzE5OCwiYXNzZXRfYWdlX2RheXMiOjIsInZpX3VzZWNhc2VfaWQiOjEwMTIxLCJkdXJhdGlvbl9zIjoxNDAsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&_nc_zt=28&oh=00_Af5vyoqGRYfj7HGDFhnkq5_vMHos64krd5JWk0iDO4EcUw&oe=6A0F4C00&bitrate=329384&tag=sve_sd",
                              "hdUrl": null
                            }
                          },
                          {
                            "id": "1567158324741583",
                            "url": "https://www.facebook.com/groups/742354120555345/permalink/1567158324741583/",
                            "text": "Fighter",
                            "publishedAt": "2026-05-15T06:56:20.000Z",
                            "reactionCount": 172,
                            "commentCount": 119,
                            "author": {
                              "id": "100004310233262",
                              "name": "Rohendi Asepna",
                              "url": null
                            },
                            "video": {
                              "thumbnailUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t15.5256-10/699443050_1275512944758463_6123128849408420475_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=111&ccb=1-7&_nc_sid=50ce42&_nc_ohc=2FWEAviOZDUQ7kNvwGsfJWQ&_nc_oc=Adpo1XuUVrN1bWeB6bnTRkbjPJW86RhHIbpemrlHY5WbfGRiNe90fzXgTcCTueyoK1E&_nc_zt=23&_nc_ht=scontent-lga3-1.xx&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&oh=00_Af5H3UE-H7dZmbSqfFUFi8X98mSJC_IErFxwhaXkAL1IPw&oe=6A0F46B3",
                              "durationMs": null,
                              "sdUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m412/AQMsDwjxSj3h7CYlEINTm6EjP9M1zHW9Bsp9dut61DvhrRHjfvXyy8UypIWk1RnT7jdyeGYuqksC_0hgxs5dZWETLh_hV_U5ONbew_VEPA.mp4?_nc_cat=111&_nc_sid=8bf8fe&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=Z_mvkVdMDg8Q7kNvwG-8rc-&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzIuMzYwLnN2ZV9zZCIsInhwdl9hc3NldF9pZCI6OTcwOTY3ODQyMzIzMjI4LCJhc3NldF9hZ2VfZGF5cyI6MiwidmlfdXNlY2FzZV9pZCI6MTAxMjEsImR1cmF0aW9uX3MiOjEwNCwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&_nc_zt=28&oh=00_Af7mBbfqivvqep09twXCjWO48_BJd08hQm0u2haKcti6sg&oe=6A0F43D3&bitrate=470174&tag=sve_sd",
                              "hdUrl": "https://video-lga3-1.xx.fbcdn.net/o1/v/t2/f2/m366/AQMynOGeIhC-rnH3gvEXppgEJ75cDQAsRc3MuA9vGJPovuP0snqfTSPp2YAIDMbrccMRWwVJ5xvCQTvGWtL31zjAcdYfIBKhBkXYTazB5T6TgA.mp4?_nc_cat=110&_nc_sid=5e9851&_nc_ht=video-lga3-1.xx.fbcdn.net&_nc_ohc=dGg-xnbUSQYQ7kNvwH-5A5u&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzIuNzIwLmRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHAiLCJ4cHZfYXNzZXRfaWQiOjk3MDk2Nzg0MjMyMzIyOCwiYXNzZXRfYWdlX2RheXMiOjIsInZpX3VzZWNhc2VfaWQiOjEwMTIxLCJkdXJhdGlvbl9zIjoxMDQsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&vs=4c745cb84dad6db7&_nc_vs=HBksFQIYRWZiX2VwaGVtZXJhbC8yQTQxOTQ4MTkxNDk3NUM1Rjg1N0VFMEJGN0QzRDk5NV9tdF8xX3ZpZGVvX2Rhc2hpbml0Lm1wNBUAAsgBEgAVAhhAZmJfcGVybWFuZW50LzZDNDYzNDJDRTA0OUY5RjJDNjlDNzg5MzUxMkRCQTk1X2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACa47KOV4sW5AxUCKAJDMiwXQFn90vGp--cYGWRhc2hfaDI2NC1iYXNpYy1nZW4yXzcyMHARAHUCZZKeAQA&_nc_gid=G4AAaIpcKm1k0U6-D3eOuw&_nc_ss=72289&_nc_zt=28&oh=00_Af5m_WFVJ3m5CQ_jv2bkKAXJi6sKbCkLSo4RurjKtuQBxw&oe=6A0F4E7A&bitrate=1964695&tag=dash_h264-basic-gen2_720p"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "AQHSI_Y-E7fHdjuJkubTi0H2KCC-SaGjHJubNMx_GKU6DohMBDddHgUSNK_SMGm8gqyIU4XU7RmGQjDOO5IHMpoe7g:eyIwIjoxNzc5MDAyMDc2LCIxIjo3NjgyLCIzIjowLCI0IjoxLCI1Ijo0LCI2IjowfQ==",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_194dbec3-8a04-4fc3-b221-2c0471a1208d",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "posts": [
                          {
                            "id": "1280901910033894",
                            "url": "https://www.facebook.com/groups/742354120555345/permalink/1280901910033894/",
                            "text": "Another post.",
                            "publishedAt": "2025-05-23T22:34:36.000Z",
                            "reactionCount": 1671,
                            "commentCount": 214,
                            "author": {
                              "id": "61552766652796",
                              "name": "Example Author",
                              "url": "https://www.facebook.com/example.author"
                            },
                            "video": {
                              "thumbnailUrl": "https://example.com/thumb.jpg",
                              "durationMs": null,
                              "sdUrl": "https://example.com/video-sd.mp4",
                              "hdUrl": "https://example.com/video-hd.mp4"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "opaque_second_page_cursor",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_p2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "no_posts": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "posts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "posts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid group URL, sort, cursor, or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/ad-library/companies/ads": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook company ads",
        "description": "List ads a company or page is running in the Facebook Ad Library.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Facebook page id when you have it instead of a company name."
            },
            "required": false,
            "description": "Facebook page id when you have it instead of a company name.",
            "name": "pageId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Company or page name to search when you do not have a page id."
            },
            "required": false,
            "description": "Company or page name to search when you do not have a page id.",
            "name": "companyName",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 2,
              "maxLength": 3,
              "description": "Optional country code filter. Use ALL to search all countries."
            },
            "required": false,
            "description": "Optional country code filter. Use ALL to search all countries.",
            "name": "country",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "active",
                "inactive"
              ],
              "description": "Optional ad status filter."
            },
            "required": false,
            "description": "Optional ad status filter.",
            "name": "status",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "image",
                "video",
                "meme",
                "image-and-meme",
                "none"
              ],
              "description": "Optional creative media filter."
            },
            "required": false,
            "description": "Optional creative media filter.",
            "name": "mediaType",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 2,
              "maxLength": 8,
              "description": "Optional language code filter."
            },
            "required": false,
            "description": "Optional language code filter.",
            "name": "language",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "impressions",
                "most-recent"
              ],
              "description": "Optional sort order for returned ads."
            },
            "required": false,
            "description": "Optional sort order for returned ads.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
              "description": "Optional start date filter in YYYY-MM-DD format."
            },
            "required": false,
            "description": "Optional start date filter in YYYY-MM-DD format.",
            "name": "startDate",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
              "description": "Optional end date filter in YYYY-MM-DD format."
            },
            "required": false,
            "description": "Optional end date filter in YYYY-MM-DD format.",
            "name": "endDate",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`)."
            },
            "required": false,
            "description": "Opaque pagination cursor from a previous response (`data.page.nextCursor`).",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Ads for the requested company or page. Check `data.lookupStatus` for `found` vs `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the company or page resolved for this request."
                        },
                        "ads": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable identifier for the ad."
                              },
                              "adId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Platform ad id when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Public Facebook Ad Library URL for this ad when available."
                              },
                              "page": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Facebook page id for the advertiser when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name for the advertiser page when available."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Public Facebook URL for the advertiser page when available."
                                  },
                                  "isDeleted": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the advertiser page is marked deleted."
                                  },
                                  "profilePictureUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile picture URL for the advertiser page when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "url",
                                  "isDeleted",
                                  "profilePictureUrl"
                                ],
                                "description": "Advertiser page summary for this ad."
                              },
                              "campaign": {
                                "type": "object",
                                "properties": {
                                  "collationId": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Campaign collation id when available."
                                  },
                                  "collationCount": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Number of ads in the campaign collation when available."
                                  }
                                },
                                "required": [
                                  "collationId",
                                  "collationCount"
                                ],
                                "description": "Campaign collation metadata for this ad."
                              },
                              "isActive": {
                                "type": "boolean",
                                "description": "Whether the ad is currently active."
                              },
                              "publisherPlatforms": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Publisher platforms where the ad ran or is running."
                              },
                              "startedAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the ad started, when available."
                              },
                              "endedAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp for when the ad ended, when available."
                              },
                              "categories": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Ad categories reported by the platform."
                              },
                              "countries": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Countries targeted or reached by the ad when available."
                              },
                              "impressions": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "text": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable impressions label when available."
                                  },
                                  "index": {
                                    "type": "integer",
                                    "nullable": true,
                                    "description": "Impressions index when available."
                                  }
                                },
                                "required": [
                                  "text",
                                  "index"
                                ],
                                "description": "Impressions metadata when available."
                              },
                              "spend": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "amount": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Spend amount text when available."
                                  },
                                  "currency": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency code for spend when available."
                                  }
                                },
                                "required": [
                                  "amount",
                                  "currency"
                                ],
                                "description": "Spend metadata when available."
                              },
                              "creative": {
                                "type": "object",
                                "properties": {
                                  "bodyText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary ad body text when available."
                                  },
                                  "title": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Ad title when available."
                                  },
                                  "caption": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Ad caption when available."
                                  },
                                  "linkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary link URL when available."
                                  },
                                  "linkDescription": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Link description when available."
                                  },
                                  "callToAction": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Call-to-action label when available."
                                  },
                                  "displayFormat": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display format for the creative when available."
                                  },
                                  "images": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "url": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Image URL when available."
                                        },
                                        "width": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Image width in pixels when available."
                                        },
                                        "height": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Image height in pixels when available."
                                        }
                                      },
                                      "required": [
                                        "url"
                                      ],
                                      "description": "Image asset for a Facebook ad creative."
                                    },
                                    "description": "Image assets attached to the creative."
                                  },
                                  "videos": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "hdUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "High-definition video URL when available."
                                        },
                                        "sdUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Standard-definition video URL when available."
                                        },
                                        "previewImageUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Video preview image URL when available."
                                        }
                                      },
                                      "required": [
                                        "hdUrl",
                                        "sdUrl",
                                        "previewImageUrl"
                                      ],
                                      "description": "Video asset for a Facebook ad creative."
                                    },
                                    "description": "Video assets attached to the creative."
                                  },
                                  "cards": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "title": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card title when available."
                                        },
                                        "body": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card body text when available."
                                        },
                                        "caption": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card caption when available."
                                        },
                                        "linkUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card link URL when available."
                                        },
                                        "imageUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card image URL when available."
                                        },
                                        "videoUrl": {
                                          "type": "string",
                                          "nullable": true,
                                          "description": "Card video URL when available."
                                        }
                                      },
                                      "required": [
                                        "title",
                                        "body",
                                        "caption",
                                        "linkUrl",
                                        "imageUrl",
                                        "videoUrl"
                                      ],
                                      "description": "Carousel card for a Facebook ad creative."
                                    },
                                    "description": "Carousel cards attached to the creative."
                                  }
                                },
                                "required": [
                                  "bodyText",
                                  "title",
                                  "caption",
                                  "linkUrl",
                                  "linkDescription",
                                  "callToAction",
                                  "displayFormat",
                                  "images",
                                  "videos",
                                  "cards"
                                ],
                                "description": "Creative content for this ad."
                              }
                            },
                            "required": [
                              "id",
                              "adId",
                              "url",
                              "page",
                              "campaign",
                              "isActive",
                              "publisherPlatforms",
                              "startedAt",
                              "endedAt",
                              "categories",
                              "countries",
                              "impressions",
                              "spend",
                              "creative"
                            ],
                            "description": "A single Facebook company ad."
                          },
                          "description": "Ads returned for the requested company or page. This array may be empty when the lookup resolves but no ads match the filters."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass as `cursor` in the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of ads can be requested."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "ads",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "ads": [
                          {
                            "id": "1162496978867592",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=1162496978867592",
                            "page": {
                              "id": "367152833370567",
                              "name": "Instagram",
                              "url": "https://www.facebook.com/instagram/",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg"
                            },
                            "campaign": {
                              "collationId": "596215693307098",
                              "collationCount": 3
                            },
                            "isActive": true,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-27T00:00:00.000Z",
                            "endedAt": "2025-03-01T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": "fb.me",
                              "linkUrl": "http://fb.me/example",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "displayFormat": "VIDEO",
                              "images": [],
                              "videos": [
                                {
                                  "hdUrl": "https://example.com/video-hd.mp4",
                                  "sdUrl": "https://example.com/video-sd.mp4",
                                  "previewImageUrl": "https://example.com/preview.jpg"
                                }
                              ],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "opaque_next_page_cursor",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "ads": [
                          {
                            "id": "1162496978867593",
                            "adId": null,
                            "url": "https://www.facebook.com/ads/library?id=1162496978867593",
                            "page": {
                              "id": "367152833370567",
                              "name": "Instagram",
                              "url": "https://www.facebook.com/instagram/",
                              "isDeleted": false,
                              "profilePictureUrl": "https://example.com/page.jpg"
                            },
                            "campaign": {
                              "collationId": "596215693307098",
                              "collationCount": 3
                            },
                            "isActive": true,
                            "publisherPlatforms": [
                              "FACEBOOK",
                              "INSTAGRAM"
                            ],
                            "startedAt": "2025-02-27T00:00:00.000Z",
                            "endedAt": "2025-03-01T00:00:00.000Z",
                            "categories": [
                              "UNKNOWN"
                            ],
                            "countries": [],
                            "impressions": {
                              "text": null,
                              "index": -1
                            },
                            "spend": null,
                            "creative": {
                              "bodyText": "Example ad body text.",
                              "title": null,
                              "caption": "fb.me",
                              "linkUrl": "http://fb.me/example",
                              "linkDescription": null,
                              "callToAction": "Learn more",
                              "displayFormat": "VIDEO",
                              "images": [],
                              "videos": [
                                {
                                  "hdUrl": "https://example.com/video-hd.mp4",
                                  "sdUrl": "https://example.com/video-sd.mp4",
                                  "previewImageUrl": "https://example.com/preview.jpg"
                                }
                              ],
                              "cards": []
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "opaque_second_page_cursor",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "ads": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "ads": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid identifiers, filters, date range, cursor, or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/marketplace/search": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook marketplace listings",
        "description": "Search Facebook Marketplace listings by keyword near a latitude and longitude.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "Search query text for marketplace listings."
            },
            "required": true,
            "description": "Search query text for marketplace listings.",
            "name": "query",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Latitude for the marketplace search location."
            },
            "required": true,
            "description": "Latitude for the marketplace search location.",
            "name": "lat",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Longitude for the marketplace search location."
            },
            "required": true,
            "description": "Longitude for the marketplace search location.",
            "name": "lng",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Optional search radius in kilometers."
            },
            "required": false,
            "description": "Optional search radius in kilometers.",
            "name": "radiusKm",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Optional minimum listing price."
            },
            "required": false,
            "description": "Optional minimum listing price.",
            "name": "minPrice",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Optional maximum listing price."
            },
            "required": false,
            "description": "Optional maximum listing price.",
            "name": "maxPrice",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "Optional number of listings to return."
            },
            "required": false,
            "description": "Optional number of listings to return.",
            "name": "count",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "suggested",
                "distanceAscend",
                "creationTimeDescend",
                "priceAscend",
                "priceDescend"
              ],
              "description": "Optional sort order for marketplace listings."
            },
            "required": false,
            "description": "Optional sort order for marketplace listings.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "all",
                "localPickup",
                "shipping"
              ],
              "description": "Optional delivery method filter for marketplace listings."
            },
            "required": false,
            "description": "Optional delivery method filter for marketplace listings.",
            "name": "deliveryMethod",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "new",
                "usedLikeNew",
                "usedGood",
                "usedFair"
              ],
              "description": "Optional item condition filter for marketplace listings."
            },
            "required": false,
            "description": "Optional item condition filter for marketplace listings.",
            "name": "condition",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "1",
                "7",
                "30",
                "all",
                "last24Hours",
                "last7Days",
                "last30Days"
              ],
              "description": "Optional date-listed filter for marketplace listings."
            },
            "required": false,
            "description": "Optional date-listed filter for marketplace listings.",
            "name": "dateListed",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "available",
                "sold",
                "all"
              ],
              "description": "Optional availability filter for marketplace listings."
            },
            "required": false,
            "description": "Optional availability filter for marketplace listings.",
            "name": "availability",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Opaque pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Marketplace listings for the requested search.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query string evaluated for this response."
                        },
                        "location": {
                          "type": "object",
                          "properties": {
                            "lat": {
                              "type": "number",
                              "description": "Latitude evaluated for this search."
                            },
                            "lng": {
                              "type": "number",
                              "description": "Longitude evaluated for this search."
                            },
                            "radiusKm": {
                              "type": "number",
                              "nullable": true,
                              "description": "Search radius in kilometers when provided."
                            }
                          },
                          "required": [
                            "lat",
                            "lng",
                            "radiusKm"
                          ],
                          "description": "Location parameters evaluated for this response."
                        },
                        "listings": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable marketplace listing identifier."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Canonical public listing URL when available."
                              },
                              "title": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Listing title."
                              },
                              "price": {
                                "type": "object",
                                "properties": {
                                  "formattedAmount": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Formatted price label when available."
                                  },
                                  "amount": {
                                    "type": "number",
                                    "nullable": true,
                                    "description": "Numeric price amount when available."
                                  },
                                  "amountWithOffsetInCurrency": {
                                    "type": "number",
                                    "nullable": true,
                                    "description": "Price amount with currency offset when available."
                                  }
                                },
                                "required": [
                                  "formattedAmount",
                                  "amount",
                                  "amountWithOffsetInCurrency"
                                ],
                                "description": "Displayed price for the listing."
                              },
                              "strikethroughPrice": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "formattedAmount": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Formatted price label when available."
                                  },
                                  "amount": {
                                    "type": "number",
                                    "nullable": true,
                                    "description": "Numeric price amount when available."
                                  },
                                  "amountWithOffsetInCurrency": {
                                    "type": "number",
                                    "nullable": true,
                                    "description": "Price amount with currency offset when available."
                                  }
                                },
                                "required": [
                                  "formattedAmount",
                                  "amount",
                                  "amountWithOffsetInCurrency"
                                ],
                                "description": "Strikethrough or original price when available."
                              },
                              "location": {
                                "type": "object",
                                "properties": {
                                  "city": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "City name when available."
                                  },
                                  "state": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "State or region when available."
                                  },
                                  "displayName": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable location label when available."
                                  },
                                  "cityPageId": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Location page identifier when available."
                                  }
                                },
                                "required": [
                                  "city",
                                  "state",
                                  "displayName",
                                  "cityPageId"
                                ],
                                "description": "Location summary for the listing."
                              },
                              "primaryPhoto": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary photo identifier when available."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary photo URL when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "url"
                                ],
                                "description": "Primary photo for the listing."
                              },
                              "categoryId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Marketplace category identifier when available."
                              },
                              "deliveryTypes": {
                                "type": "array",
                                "items": {
                                  "type": "string"
                                },
                                "description": "Delivery options reported for the listing."
                              },
                              "status": {
                                "type": "object",
                                "properties": {
                                  "isHidden": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the listing is hidden when available."
                                  },
                                  "isLive": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the listing is live when available."
                                  },
                                  "isPending": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the listing is pending when available."
                                  },
                                  "isSold": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the listing is sold when available."
                                  },
                                  "isViewerSeller": {
                                    "type": "boolean",
                                    "nullable": true,
                                    "description": "Whether the viewer is the seller when available."
                                  }
                                },
                                "required": [
                                  "isHidden",
                                  "isLive",
                                  "isPending",
                                  "isSold",
                                  "isViewerSeller"
                                ],
                                "description": "Listing status flags."
                              },
                              "storyType": {
                                "type": "string",
                                "nullable": true,
                                "description": "Story type metadata when available."
                              },
                              "storyKey": {
                                "type": "string",
                                "nullable": true,
                                "description": "Story key metadata when available."
                              }
                            },
                            "required": [
                              "id",
                              "url",
                              "title",
                              "price",
                              "strikethroughPrice",
                              "location",
                              "primaryPhoto",
                              "categoryId",
                              "deliveryTypes",
                              "status",
                              "storyType",
                              "storyKey"
                            ],
                            "description": "A marketplace listing in search results."
                          },
                          "description": "Listings returned for this page."
                        },
                        "totalListings": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of listings returned in this response."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when another page is available; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of listings can be requested."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "query",
                        "location",
                        "listings",
                        "totalListings",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "results": {
                    "value": {
                      "data": {
                        "query": "bike",
                        "location": {
                          "lat": 30.2677,
                          "lng": -97.7475,
                          "radiusKm": null
                        },
                        "listings": [
                          {
                            "id": "1365026115430019",
                            "url": "https://www.facebook.com/marketplace/item/1365026115430019/",
                            "title": "Mountain Bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$80",
                              "amount": 80,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1412663710238166",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/637431546_1412663720238165_8257177400080165140_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=106&ccb=1-7&_nc_sid=92e707&_nc_ohc=faII_OdxWlgQ7kNvwGMrvgQ&_nc_oc=Adozk9B0VW6xblFXY6AXF0qfmuCl2L2P1aPMAYOF-m4gA4SCFZ5ZoLcqQugLeT2HzC4&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af66UTMB6wddKskCgVZS0v9jN9Db0jT150GzjdjDJ_Cm8g&oe=6A136CC2"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26197243669962791"
                          },
                          {
                            "id": "2304704033379147",
                            "url": "https://www.facebook.com/marketplace/item/2304704033379147/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$60",
                              "amount": 60,
                              "amountWithOffsetInCurrency": 6000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1721663185168155",
                              "url": "https://scontent-iad3-2.xx.fbcdn.net/v/t45.5328-4/584711644_1721663188501488_4837220186107432299_n.jpg?stp=c0.101.261.261a_dst-jpg_p261x260_tt6&_nc_cat=103&ccb=1-7&_nc_sid=247b10&_nc_ohc=w8_Vxo8eFbwQ7kNvwF1q6pp&_nc_oc=Adra6kK_Ay_0ZNzv7_vD6gt3dgDZvxO-bQo5f0XCRH4-jq0qp8GqrtgWDJrKsNElirQ&_nc_zt=23&_nc_ht=scontent-iad3-2.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6Kf2V-jT7IpLHlHPYIGT92eR1JlFT4y4ChgpWsrbrNEA&oe=6A137217"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "32507300205551568"
                          },
                          {
                            "id": "966360869514688",
                            "url": "https://www.facebook.com/marketplace/item/966360869514688/",
                            "title": "Maxxis DTH 26” x 2.15” - Bike Tires - Low Mileage",
                            "price": {
                              "formattedAmount": "$49",
                              "amount": 49,
                              "amountWithOffsetInCurrency": 4900
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1183193263870401",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/701369598_1183193290537065_2014509081848761484_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=wBjy-5bA_xoQ7kNvwFR_OZi&_nc_oc=AdreW_5B7f8M_WEAs2ZDQAKqpG5Ct4n23RL9ECIpy-3Icd5OMoFnMUAiSnzrdx7e9K4&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af7mZCyZoGUrvTJ7iggIaTdZ9024bkz-dCx-urCipJWv5w&oe=6A13531A"
                            },
                            "categoryId": "1383948661922113",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26646092708417026"
                          },
                          {
                            "id": "2311541489748712",
                            "url": "https://www.facebook.com/marketplace/item/2311541489748712/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$30",
                              "amount": 30,
                              "amountWithOffsetInCurrency": 3000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Pflugerville",
                              "state": "TX",
                              "displayName": "Pflugerville, Texas",
                              "cityPageId": "113725725304918"
                            },
                            "primaryPhoto": {
                              "id": "1558648375610743",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/700306273_1558648385610742_8505021173076471143_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=eesolV_R_JsQ7kNvwFX1C_z&_nc_oc=AdqN3bjAsWmDPcCWR30FkecRbKoBPl58BZ_EZAqTHLsInD9ce82DbHbfBjZIax7ZtlI&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af7-O9KO6MI82zepL8GfQnoenjrkoQkrjMAKpS8ysxT0qA&oe=6A133B0C"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35993932360220066"
                          },
                          {
                            "id": "1738573697521304",
                            "url": "https://www.facebook.com/marketplace/item/1738573697521304/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$60",
                              "amount": 60,
                              "amountWithOffsetInCurrency": 6000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "2416408675523975",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/701311621_2416408692190640_1070333440216724138_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=9la9vCMNtBgQ7kNvwGGrjm0&_nc_oc=Ado6PB7cT6YR_TB6EeQGYGJXKlf9ckEU0LM4euKd75gS6clwv7m53_-dltVF4UlMTmU&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6V1XikzwPkFuCPg2NqAyqrQ9e5gB8pl5eObK6eC4Z8qA&oe=6A135848"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26078419078500378"
                          },
                          {
                            "id": "865714715964079",
                            "url": "https://www.facebook.com/marketplace/item/865714715964079/",
                            "title": "Green Bike 26 inches",
                            "price": {
                              "formattedAmount": "$70",
                              "amount": 70,
                              "amountWithOffsetInCurrency": 7000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "709814341775346",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/594067363_709814351775345_4709229522989059318_n.jpg?stp=c44.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=xltbQhKrVhIQ7kNvwEGBuVa&_nc_oc=AdrOgtKK4737B1pJIUYpobtPnwk0cVjVopOBGl7vEPHP2t2VM3pb6pvWh955HoYiv5o&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af5nWX5-qBBv963A-o24UVxFf0GJz_tmmT0wjFbhvpk8xg&oe=6A1360BE"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "33195468026718491"
                          },
                          {
                            "id": "1172256331726051",
                            "url": "https://www.facebook.com/marketplace/item/1172256331726051/",
                            "title": "24 Inch Girls Purple Huffy Mountain Bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1608615430170449",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/605810201_1608615436837115_5444755921246306950_n.jpg?stp=c67.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=106&ccb=1-7&_nc_sid=92e707&_nc_ohc=Ffqhvsnm9vwQ7kNvwGUKGhR&_nc_oc=Adq0EoLa0oAZ15ZsESuX2IFbBgqClv8OQmzQOFHckBfmtNFkdQl7UOsjyUre1BzZOx4&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6M4Alk3oNGi40hBRbP-2mMS2txl4DOSJRKjaizR-02NA&oe=6A133B18"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "PUBLIC_MEETUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "33251181877860071"
                          },
                          {
                            "id": "1220531572933052",
                            "url": "https://www.facebook.com/marketplace/item/1220531572933052/",
                            "title": "Missing/STOLEN bikes ~ one black Bridgestone Kabuki road bike and one Motobecane Elite Trail bike",
                            "price": {
                              "formattedAmount": "$1",
                              "amount": 1,
                              "amountWithOffsetInCurrency": 100
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$185",
                              "amount": 185,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "794720220127464",
                              "url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.84726-6/571132619_794720273460792_2973008822151508812_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=101&ccb=1-7&_nc_sid=92e707&_nc_ohc=w0ZyK5PUZBQQ7kNvwF87GWE&_nc_oc=AdotWcfJMrrbCC_zK6iBPgG4aZVNtwNs3RA3JzFkYEa0feEjuQ5weIjL76C4cx2O9p0&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6VTNPOzl_Og3vOJX-sB4p_IRpt_Y5fxsrlqymJ2RrOEA&oe=6A134C50"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "29250972447851162"
                          },
                          {
                            "id": "944037628412949",
                            "url": "https://www.facebook.com/marketplace/item/944037628412949/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Belton",
                              "state": "TX",
                              "displayName": "Belton, Texas",
                              "cityPageId": "105518682813863"
                            },
                            "primaryPhoto": {
                              "id": "2017337282155005",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/674129372_2017337298821670_4338889039074973660_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=z95dIYUuio4Q7kNvwH4RcJ5&_nc_oc=AdpYPZHo2uSsJzhgr4mpTIZy8c4-MViLmbImrhj2VmiYvsAcqjDeMtxD_cnXsFnfE4w&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6qkUAhQNkjbmOLYN-OUege1ucgeaV4yweMKJeNA9ppKA&oe=6A136BFD"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26476334411977162"
                          },
                          {
                            "id": "764702846107370",
                            "url": "https://www.facebook.com/marketplace/item/764702846107370/",
                            "title": "Tandem bike",
                            "price": {
                              "formattedAmount": "$300",
                              "amount": 300,
                              "amountWithOffsetInCurrency": 30000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$450",
                              "amount": 450,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "2581216818879277",
                              "url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.84726-6/565247382_2581216865545939_3922761195650399485_n.jpg?stp=c45.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=nEjRMxxgih0Q7kNvwGxRWyR&_nc_oc=AdqVD0Zv-BKJOfRfe6jt9LAZl6FFEVEQv3McWWbfdGvAmIGt1gXHtIMmpBOqpU8vKX4&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af7zExkMEQRL29CWY58zVGK1QTkpX0uTmWLYInnMDvmrUA&oe=6A1371D8"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP",
                              "DOOR_DROPOFF"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "23969840892699381"
                          },
                          {
                            "id": "1009808541716832",
                            "url": "https://www.facebook.com/marketplace/item/1009808541716832/",
                            "title": "Ozone Bike",
                            "price": {
                              "formattedAmount": "$25",
                              "amount": 25,
                              "amountWithOffsetInCurrency": 2500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Leander",
                              "state": "TX",
                              "displayName": "Leander, Texas",
                              "cityPageId": "104048089631273"
                            },
                            "primaryPhoto": {
                              "id": "806665518991281",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/703326737_806665538991279_1264738983528597658_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=109&ccb=1-7&_nc_sid=92e707&_nc_ohc=eLLAxvI65PAQ7kNvwGmM0eN&_nc_oc=AdrVpsz4uQd-U9N23ikj6uZyeQu7rID3PUZlbpKDyGze5DFisq_puhGQYQJPIQRAiII&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af4NAB44rvi8lvv3OCiRs_1mxhVn3Z0Ce6MXQYh2cc0EVg&oe=6A135607"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35734372912874277"
                          },
                          {
                            "id": "969944035963216",
                            "url": "https://www.facebook.com/marketplace/item/969944035963216/",
                            "title": "Kent Bayside 26\" Girl's Cruiser Bike - Back\nTire Flat",
                            "price": {
                              "formattedAmount": "$20",
                              "amount": 20,
                              "amountWithOffsetInCurrency": 2000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$45",
                              "amount": 45,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Jollyville, Texas",
                              "cityPageId": "111991062151421"
                            },
                            "primaryPhoto": {
                              "id": "1685700892845217",
                              "url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.84726-6/700762919_1685700902845216_745923652098281808_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=KshJvd-yLXYQ7kNvwEvLJkt&_nc_oc=Adozm0Bg7pF7QcAMXajy3fSpjIz4R_pVOErQ3TcMsTnTb5ChWNzKppZ6Iqylitb-bAM&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af5srUc5806jpVsihghT2RYkqijEema6YdBORQCrRKHddw&oe=6A134E40"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26972548409076370"
                          },
                          {
                            "id": "1625160381893258",
                            "url": "https://www.facebook.com/marketplace/item/1625160381893258/",
                            "title": "Women’s specialized bike",
                            "price": {
                              "formattedAmount": "$400",
                              "amount": 400,
                              "amountWithOffsetInCurrency": 40000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1710520759956555",
                              "url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.84726-6/703015164_1710520766623221_5849100395889960040_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=110&ccb=1-7&_nc_sid=92e707&_nc_ohc=DzLfPMS5zYAQ7kNvwGlWnR5&_nc_oc=Adpe-KbJcxYEcWSwyQVsMyxWphlXDWea_dA00pld2qASJVl9wZvyMus6VO90ub9z9DE&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af5AUFrDwarkCtVCfMhGaR9DfvjRjvg_8Pl88Rw4CoX9Yg&oe=6A135051"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35586119694369233"
                          },
                          {
                            "id": "1160044339601256",
                            "url": "https://www.facebook.com/marketplace/item/1160044339601256/",
                            "title": "Temu e bike",
                            "price": {
                              "formattedAmount": "$115",
                              "amount": 115,
                              "amountWithOffsetInCurrency": 11500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "971987895454326",
                              "url": "https://scontent-iad6-1.xx.fbcdn.net/v/t39.84726-6/703098475_971987902120992_700177355260698489_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=KsxzcxOfdu4Q7kNvwGVhyii&_nc_oc=AdqqLAa37AxEs2HiebPv5MG4IjVg2pt6I41715oSz2SiK73e0ohRtrfjNC9Sdn04pPw&_nc_zt=14&_nc_ht=scontent-iad6-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af4IaqSosMmec_QJiawv-0vRZN9-0vXxRleV-6i5o0x_8A&oe=6A1362EF"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "36982546081344277"
                          },
                          {
                            "id": "1288652280114646",
                            "url": "https://www.facebook.com/marketplace/item/1288652280114646/",
                            "title": "bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Cedar Park",
                              "state": "TX",
                              "displayName": "Cedar Park, Texas",
                              "cityPageId": "106041646094495"
                            },
                            "primaryPhoto": {
                              "id": "1705581410640952",
                              "url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.84726-6/703131686_1705581420640951_3133335055383325963_n.jpg?stp=c0.152.261.261a_dst-jpg_p261x260_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=6w8SD1VzSa8Q7kNvwEm5kl_&_nc_oc=AdpeosL5WNV-1BIGNK75jFYo9ZIWZn-mnMuZrdZNYSviGI9CW5U7hgBfZ9ou4sv8b9Y&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af6krS6dHDyOxSq3qNIZe5DUAtU_KrspkTkD0epBA8n2WQ&oe=6A134524"
                            },
                            "categoryId": "1383948661922113",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26782497318086782"
                          },
                          {
                            "id": "26839418689045523",
                            "url": "https://www.facebook.com/marketplace/item/26839418689045523/",
                            "title": "Wide Gel Bike Seat For Men Women Bicycle Padded Comfortable Heavy Duty Bike",
                            "price": {
                              "formattedAmount": "$57.99",
                              "amount": 57.99,
                              "amountWithOffsetInCurrency": 5799
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Citrus Heights",
                              "state": "CA",
                              "displayName": "Citrus Heights, California",
                              "cityPageId": "107983655891235"
                            },
                            "primaryPhoto": {
                              "id": "1004320638792775",
                              "url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.84726-6/703727273_1024901393401366_2700188957112749329_n.jpg?stp=c0.7.261.261a_dst-jpg_p261x260_tt6&_nc_cat=103&ccb=1-7&_nc_sid=92e707&_nc_ohc=1CN2UeUl8tQQ7kNvwFr9mE1&_nc_oc=AdrPGqptO_6djQNR0pw5e83fvTGMLEGkpP2hYDb7xVlrhtMyt9BOHw_jlxrZtpZBCl4&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=MzXQLveBEcoSU-WsF6hAfA&_nc_ss=7e289&oh=00_Af5ulc0QVQJo8y8MIkh6Kp_75iVHbDXao3zf6m52JfCLNg&oe=6A135D84"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "SHIPPING_OFFSITE"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26839418689045523"
                          }
                        ],
                        "totalListings": 16,
                        "page": {
                          "nextCursor": "eyJwZyI6MCwiYjJjIjp7ImJyIjoiIiwiaXQiOjAsImhtc3IiOmZhbHNlLCJ0YmkiOjB9LCJjMmMiOnsiYnIiOiJBYnFSVm81bF9IQ1dteFl6VDRkdFliZUFUb3FOZ1FrLXExLXd4WVVpMm1ERnFDazh6TFFNdmZOcDdOV05Zeno3aTFfbXYxM3pGU3pNODRmMEd0aHdjMHhjRGxxNE1lT2lmSk9ONFhCTUxfQUtCQmVNNEY1SnlwRWROZm12Uk4ydC1hMTFoVEtaWWstejdtLW1Vekh2bEFmV2VfcmZRR0hvRURLcmQ4VDNNeG45dHdYOTdrMEpmVk1fNE5mdFJtM2xUUXpDMm9KaXZzRnItQkROSndSV09ldG5HaWFkWjUtY3JJN0JUU3BacWF1d2RFY1lOWklwTVFaQTNLSFdoYVVHQWZLcnlXdUR0N3ZPZk84cXlXZXpWYWhmVEZGeGdSZUtyNVA5VF90OTNNcFRhNWVpRF9iaVVQVmhLR0JhV2tiUFh3TUZTdi0zbXVUMzVQSk5oMndEdWxkZXIzVVRMd0FOQ2xCMVdFOGQzZFF6QXl6ZHlOQjRXNFBJcW14bmw3Vk5LRjF4blFXNzViRGFFc0xJOWdxaHR0ODhJbGhLcHUwbzdJUjlzem9DdWlmeUpUV0RHamFMeFdMNzBleWtBQUFkU2ZhYTBKakpRVFJHRWpNRTlSNWk1VlkzaDR3UE9uNHpSdXQzc3hJbzBhTE5fdl9jVmFUYXhXSW9GT1MwUEFkV3FQdTJGcFctTjZWUll0UjFuWVNEU0g3Y0MxVWJISFBiUkJBanBJeEJud1I0d0NBUGFfOFRyZ2ZWblJjbmI4emVvMEUiLCJpdCI6MCwicnBiciI6IiIsInJwaHIiOmZhbHNlLCJybWhyIjpmYWxzZSwic3NpIjpmYWxzZSwic3NjbyI6MCwic3NwaSI6W119LCJpcnIiOmZhbHNlLCJzZXJwX2N0YSI6ZmFsc2UsInJ1aSI6W10sIm1waWQiOltdLCJ1YnAiOm51bGwsIm5jcm5kIjowLCJpcnNyIjpmYWxzZSwiYm1wciI6W10sImJtcGVpZCI6W10sIm5tYm1wIjpmYWxzZSwic2tyciI6ZmFsc2UsImlvb3VyIjpmYWxzZSwiaXNlIjpmYWxzZSwic21zX2N1cnNvciI6eyJwYWdlX2luZGV4IjowLCJibGVuZGVkX2FkX2luZGV4IjowLCJvcmdhbmljc19zaW5jZV9sYXN0X2FkIjowLCJwYWdlX29yZ2FuaWNfY291bnQiOjAsImJsZW5kZWRfb3JnYW5pY19pbmRleCI6MCwicmV0dXJuZWRfYWRfaW5kZXgiOjAsInRvdGFsX2luZGV4IjowfX0",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01facebook_marketplace_search_example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "socialfetch_fixture_no_results_000000",
                        "location": {
                          "lat": 30.2677,
                          "lng": -97.7475,
                          "radiusKm": null
                        },
                        "listings": [],
                        "totalListings": 0,
                        "page": {
                          "nextCursor": "eyJwZyI6MCwiYjJjIjp7ImJyIjoiIiwiaXQiOjAsImhtc3IiOmZhbHNlLCJ0YmkiOjB9LCJjMmMiOnsiYnIiOiJBYnJBakp6ZFFJQWttOVNIbEtDYm5LR0hxOHRsNkh6RlQtWk05aXN6OVhxR0dpQlpCSHdqX3dkb29KRmJPcHdQeFQ0VmoyYXZmVG9FM0dDQ3dDd2doN09IYmRYazRVaVhKbXBmM2Q1ZTJNTEpiWi1Pek9McjJaenhUWGNBUWYzcWhMTjc0ZUV6X2kyb3BnS0s3OTJMOGd4LWU1OWkyU1hwZWJvMTV0bHctOEE2VTNuV1ByY1Y2Yms0SjdoRG5odHI3VXhXNjEtWFlaMnd0VGNZd2c2bldMSEJ6YnZjRC1YS2wzUVFSNDJ3TzhPbF84LXFlYWRhZUk0NzV2ZHR2Ynd3LXp4RGZuMFJFSmpudFZpWVF1bEkzN2R3cmltdVZES2hOQVpFcURwMnZVcHZReXRXRDRUYldyVy1XZE9RZV9CM196czB5RDhUQkt3NjNJSkFUWHlhU3BkUFZRVFc5SWdJWTFLNGk5cjZNcWg1NVVKbjlWTGFjRV81QUxfRjdFb2xWal9acDNFOWJncE5EQTdtRXViTnhZY1otcHZSMHhSYWdIRnlFa0U1WEhhU0EycDR1TUpmc2xVZ0NORG5HU08zd0s4dnFVdjljaEJyREY2NWdQSFVZN1NIQ053TVptcDBqZjdEWUlYUWRfWkhEZyIsIml0IjowLCJycGJyIjoiIiwicnBociI6ZmFsc2UsInJtaHIiOmZhbHNlLCJzc2kiOmZhbHNlLCJzc2NvIjowLCJzc3BpIjpbXX0sImlyciI6ZmFsc2UsInNlcnBfY3RhIjpmYWxzZSwicnVpIjpbXSwibXBpZCI6W10sInVicCI6bnVsbCwibmNybmQiOjEsImlyc3IiOmZhbHNlLCJibXByIjpbXSwiYm1wZWlkIjpbXSwibm1ibXAiOmZhbHNlLCJza3JyIjpmYWxzZSwiaW9vdXIiOmZhbHNlLCJpc2UiOmZhbHNlLCJzbXNfY3Vyc29yIjp7InBhZ2VfaW5kZXgiOjAsImJsZW5kZWRfYWRfaW5kZXgiOjAsIm9yZ2FuaWNzX3NpbmNlX2xhc3RfYWQiOjAsInBhZ2Vfb3JnYW5pY19jb3VudCI6MCwiYmxlbmRlZF9vcmdhbmljX2luZGV4IjowLCJyZXR1cm5lZF9hZF9pbmRleCI6MCwidG90YWxfaW5kZXgiOjB9fQ",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01facebook_marketplace_search_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "query": "bike",
                        "location": {
                          "lat": 30.2677,
                          "lng": -97.7475,
                          "radiusKm": null
                        },
                        "listings": [
                          {
                            "id": "2105461403596881",
                            "url": "https://www.facebook.com/marketplace/item/2105461403596881/",
                            "title": "Bike with trailer",
                            "price": {
                              "formattedAmount": "$100",
                              "amount": 100,
                              "amountWithOffsetInCurrency": 10000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$120",
                              "amount": 120,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "908031671776883",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/615366863_908031698443547_3418101653211667223_n.jpg?stp=c55.0.259.259a_dst-jpg_p370x247_tt6&_nc_cat=110&ccb=1-7&_nc_sid=92e707&_nc_ohc=5Aiya5V0e68Q7kNvwHhCvMg&_nc_oc=Ado_y4C88F44G69VY5N9bVO2tZhQx8yoZfBAbw-D1gMyvXrfxplj9s24YF8-YfxZeQY&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af6WdeuPLbo3d6zeGR9Uic7vhmECWgYQO7E17GkrQg3GCg&oe=6A13694A"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "25668049189493280"
                          },
                          {
                            "id": "802291229626616",
                            "url": "https://www.facebook.com/marketplace/item/802291229626616/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$30",
                              "amount": 30,
                              "amountWithOffsetInCurrency": 3000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Helotes",
                              "state": "TX",
                              "displayName": "Helotes, Texas",
                              "cityPageId": "112926008717496"
                            },
                            "primaryPhoto": {
                              "id": "984557667328023",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/666944885_984557677328022_796822009240692494_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=6ETZZlAmR24Q7kNvwE91P6a&_nc_oc=AdrIUFN8bnM4jvQqNFpveu1otj1PvXbMELEFiamD4exDAc6L6PcWuODtly7_4mX55dc&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af60fqfiUt9lps1Cug0Sq2QzlDYIIB7brR58uAGY_ev_8A&oe=6A135AC3"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26540939352235951"
                          },
                          {
                            "id": "1730513637938095",
                            "url": "https://www.facebook.com/marketplace/item/1730513637938095/",
                            "title": "Canyon Endurance CF Size L Bike",
                            "price": {
                              "formattedAmount": "$1,500",
                              "amount": 1500,
                              "amountWithOffsetInCurrency": 150000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "2053155781932628",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/700679143_2053155808599292_4012771115860792277_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=105&ccb=1-7&_nc_sid=92e707&_nc_ohc=PT7WTIrLUYEQ7kNvwF-4DbL&_nc_oc=Ado2q-YAsjTAZtlqK970Fgl1GEXVfnKN7RNuVZKKUEqg5typb8s-BdO6VNC_IEf89t4&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af4UoXlVIu_XBRnVh5p4WjRD0umZr_J497J_LDUrSXlCTw&oe=6A134FAF"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26462125060153339"
                          },
                          {
                            "id": "1753440592489611",
                            "url": "https://www.facebook.com/marketplace/item/1753440592489611/",
                            "title": "Woom 2 Kids Bike – Like New Condition",
                            "price": {
                              "formattedAmount": "$325",
                              "amount": 325,
                              "amountWithOffsetInCurrency": 32500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "973085128658889",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/701088227_973085141992221_3568555442071254677_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=lpfsnSfbcecQ7kNvwGkXWlJ&_nc_oc=AdqmpjkN6M1VMmg4D6QgnovqhTXT2b8vZUIE4sU5Ptk5ofL7vDP1aB5tko_MuaYYpxc&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5Uzu1V1FDgP1yFuiBtmegnMoiJyi64JtI07UgObroOtw&oe=6A1348B6"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "27002210319434548"
                          },
                          {
                            "id": "957683700370228",
                            "url": "https://www.facebook.com/marketplace/item/957683700370228/",
                            "title": "Kids bike",
                            "price": {
                              "formattedAmount": "$25",
                              "amount": 25,
                              "amountWithOffsetInCurrency": 2500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Round Rock",
                              "state": "TX",
                              "displayName": "Round Rock, Texas",
                              "cityPageId": "108109465877758"
                            },
                            "primaryPhoto": {
                              "id": "1636492830976098",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/701788636_1636492854309429_1960231483169399873_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=109&ccb=1-7&_nc_sid=92e707&_nc_ohc=XF8bmAZz5aEQ7kNvwHc3WHE&_nc_oc=Adq8PriENlCIeSnH_QyVJMSNE9wVCiwXciXgF-fRiRo9YwpPjh0d2jl4BIlGEOU-Y7Q&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af7SgmAV_WpoRbJbmM4eBIx8d6E6zb3yadbPyrEU_HIwXw&oe=6A133D64"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26998384816451302"
                          },
                          {
                            "id": "837680759415045",
                            "url": "https://www.facebook.com/marketplace/item/837680759415045/",
                            "title": "Roadmaster Mt.Fury Bike Size 24",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1005137331871063",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/701725425_1005137345204395_6079898203375135539_n.jpg?stp=c101.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=Y-JrDS_Oj7sQ7kNvwHL7wyA&_nc_oc=Ado0EoQ-hrWed4TBE0uyt-5jeobozkelLVlNmdC8ZDw4xTFJCuOk6D0wjbvJhvSGnQ8&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5wZdcDdpb4epv73AQbktv_GqLarHXh1sWJ-Zd4eUDBOA&oe=6A1347AC"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "27175366025435623"
                          },
                          {
                            "id": "2027403268189881",
                            "url": "https://www.facebook.com/marketplace/item/2027403268189881/",
                            "title": "Nishiki Colorado Comp 29” Large mountain bike",
                            "price": {
                              "formattedAmount": "$340",
                              "amount": 340,
                              "amountWithOffsetInCurrency": 34000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Buda",
                              "state": "TX",
                              "displayName": "Buda, Texas",
                              "cityPageId": "107883835900201"
                            },
                            "primaryPhoto": {
                              "id": "1306660438096130",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/702848351_1306660451429462_3541643792991887821_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=OYcckQeFpqEQ7kNvwH1VUU2&_nc_oc=Adr0xjjVBm3Qsu381mE8hIWZ439NtJ4lNU9dlqvlPOfSQz3O0JT4pRiOCziAXFrHoxs&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af51RAcdHfJcbtjaV4Pgk1VnJ_v9GEPN8-5k5NA0LnnITA&oe=6A1353BE"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35624560180525148"
                          },
                          {
                            "id": "985755357308407",
                            "url": "https://www.facebook.com/marketplace/item/985755357308407/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$70",
                              "amount": 70,
                              "amountWithOffsetInCurrency": 7000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$75",
                              "amount": 75,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "New Braunfels",
                              "state": "TX",
                              "displayName": "New Braunfels, Texas",
                              "cityPageId": "113176415363421"
                            },
                            "primaryPhoto": {
                              "id": "960475080200879",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/686932848_960475086867545_2006087998396215646_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=101&ccb=1-7&_nc_sid=92e707&_nc_ohc=QBaEtJyac_AQ7kNvwHzVBLv&_nc_oc=AdralGkbQiI0qQYi6pGz2AT_QyUShFZMIISO4XJ9EvnLHM7ow6suW7ui8EQb2e-qSJ8&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5VUDJQBZbzAERl5otoUZ08BrAsKCAJyzKspK79-9ZUew&oe=6A134712"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "27097704303179114"
                          },
                          {
                            "id": "3100945246961037",
                            "url": "https://www.facebook.com/marketplace/item/3100945246961037/",
                            "title": "Kids bike",
                            "price": {
                              "formattedAmount": "$30",
                              "amount": 30,
                              "amountWithOffsetInCurrency": 3000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "The Hills, Texas",
                              "cityPageId": "104027006300890"
                            },
                            "primaryPhoto": {
                              "id": "1639293897238999",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/699852192_1639293903905665_5582717266931432777_n.jpg?stp=c0.152.261.261a_dst-jpg_p261x260_tt6&_nc_cat=108&ccb=1-7&_nc_sid=92e707&_nc_ohc=K6kqkjcNzOUQ7kNvwEJldgM&_nc_oc=Adrzx9VrX0GZrKzn4rvgNRvYJbjoY2GaR33U01gutyDqu3DaytdxHcUfT0AV0-tem2Q&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af54UtiXiG1pxdLEzYB1u8wsmHTe-XJpr8_saRKa_It7hQ&oe=6A136A4B"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "PUBLIC_MEETUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26926883540280526"
                          },
                          {
                            "id": "35731922386456071",
                            "url": "https://www.facebook.com/marketplace/item/35731922386456071/",
                            "title": "Green Bike Brake Cable Kit - Universal Use",
                            "price": {
                              "formattedAmount": "$20.79",
                              "amount": 20.79,
                              "amountWithOffsetInCurrency": 2079
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$25.99",
                              "amount": 25.99,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Citrus Heights",
                              "state": "CA",
                              "displayName": "Citrus Heights, California",
                              "cityPageId": "107983655891235"
                            },
                            "primaryPhoto": {
                              "id": "27914700864784514",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/702044383_27914705834784017_3684045308446152529_n.jpg?stp=c0.0.261.261a_dst-jpg_p261x260_tt6&_nc_cat=104&ccb=1-7&_nc_sid=92e707&_nc_ohc=GjeW5kvgb0cQ7kNvwFWhuZK&_nc_oc=Adpsl7VwT1OpVFeohcsoXR-cF1Aqyw-4tBILAWrFdUOTL6JFaZiu5oPbbe0fM6DvTdg&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5hsU8St9Kgf7Afm0CG1KRZuK51Vr4AaQa2AUdTYhb_sg&oe=6A136CAB"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "SHIPPING_OFFSITE"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35731922386456071"
                          },
                          {
                            "id": "804676075431655",
                            "url": "https://www.facebook.com/marketplace/item/804676075431655/",
                            "title": "Roadster bike, bike pump, and bike lock",
                            "price": {
                              "formattedAmount": "$99",
                              "amount": 99,
                              "amountWithOffsetInCurrency": 9900
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "2069176446987014",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/653489023_2069176453653680_608704998337835199_n.jpg?stp=c0.152.261.261a_dst-jpg_p261x260_tt6&_nc_cat=105&ccb=1-7&_nc_sid=92e707&_nc_ohc=BRUY0nYXow4Q7kNvwEu-qhk&_nc_oc=Ado9GiBRj--zNtixgdWlJxGzx9a85rCbxuTd8WzaigkCx48eTGW0jOpNJsMPmqqoU0k&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5SyN47MHhDT3DyMMu8qAXMrlVk_kvBLDc4D2igOd8zIQ&oe=6A136F19"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26588688650715264"
                          },
                          {
                            "id": "901876416054005",
                            "url": "https://www.facebook.com/marketplace/item/901876416054005/",
                            "title": "Retrospec 7 speed city bike",
                            "price": {
                              "formattedAmount": "$275",
                              "amount": 275,
                              "amountWithOffsetInCurrency": 27500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1509631630719974",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/651000852_1509631634053307_3881091820848541857_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=111&ccb=1-7&_nc_sid=92e707&_nc_ohc=jYT1jSHdJXkQ7kNvwFk0Iq_&_nc_oc=Adp6RzC19nS59KgOf6fgV8ySbAu-EYycdfirCb0d8yc8HFvDVQe7j4bCWl1863TKIlA&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af7Quo-o-btmZuIaJ4bXC5HquN8TS3YQ96Ie4pSoG2T5cQ&oe=6A134359"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "PUBLIC_MEETUP",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26918941341042517"
                          },
                          {
                            "id": "1867165530906459",
                            "url": "https://www.facebook.com/marketplace/item/1867165530906459/",
                            "title": "Schwinn Bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1335350031799061",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/702334343_1335350041799060_3491797853373913737_n.jpg?stp=c0.152.261.261a_dst-jpg_p261x260_tt6&_nc_cat=105&ccb=1-7&_nc_sid=92e707&_nc_ohc=1TL3Dk4Y_ycQ7kNvwEJmrsi&_nc_oc=AdrtZ8Jmd0JruhtgZyp8ifXMn1PfQ1hY8tFUonUpHdFjxPbb3j0ma6aB9uJ9S7SPPpQ&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af55Gw-1ZcAw6_O5XCuWYALYk-oaaJDSqMhQ9Fh2Xfsotg&oe=6A133C8B"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35992359890377206"
                          },
                          {
                            "id": "2070494323524711",
                            "url": "https://www.facebook.com/marketplace/item/2070494323524711/",
                            "title": "bike",
                            "price": {
                              "formattedAmount": "$150",
                              "amount": 150,
                              "amountWithOffsetInCurrency": 15000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$180",
                              "amount": 180,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Pflugerville",
                              "state": "TX",
                              "displayName": "Pflugerville, Texas",
                              "cityPageId": "113725725304918"
                            },
                            "primaryPhoto": {
                              "id": "887495771010268",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/676830555_887495777676934_7263381815043702345_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=103&ccb=1-7&_nc_sid=92e707&_nc_ohc=XyoI4zZ1OvEQ7kNvwHcIWCV&_nc_oc=AdoTh9BFlM59LHw3pL6jmUFEU0NW3o1QEotwR7Bjj34QsZyJeOokdzrVodJVE3zRm2Y&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af645morZCuo-qpH_PbSyffq3HAdCcRhfXfG3geLtPXIjw&oe=6A136C5E"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26587856154240425"
                          },
                          {
                            "id": "1292288125661228",
                            "url": "https://www.facebook.com/marketplace/item/1292288125661228/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$100",
                              "amount": 100,
                              "amountWithOffsetInCurrency": 10000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Pflugerville",
                              "state": "TX",
                              "displayName": "Pflugerville, Texas",
                              "cityPageId": "113725725304918"
                            },
                            "primaryPhoto": {
                              "id": "4498704687040069",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/686291656_4498704697040068_4205073378817409096_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=105&ccb=1-7&_nc_sid=92e707&_nc_ohc=3Ap9or7RLKMQ7kNvwEQd-5-&_nc_oc=AdrMKKJr7GZvy1xMMEAr2j1aSVpULDOqj_ewg1qemKR4xR0EFc99O2t0htu9B0h0aAo&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af6hcCp9K_XcAIxnCDLA-oyiOSopqspRv534_ZFcySaHEA&oe=6A1343E8"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "27023873433899044"
                          },
                          {
                            "id": "3069993240054806",
                            "url": "https://www.facebook.com/marketplace/item/3069993240054806/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$60",
                              "amount": 60,
                              "amountWithOffsetInCurrency": 6000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1229156832761274",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/653700921_1229156839427940_7520194626479008904_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=107&ccb=1-7&_nc_sid=92e707&_nc_ohc=xomu0plCF9kQ7kNvwGErh0e&_nc_oc=AdqlhNXqd95sDf9vjZ5T7_4zbzTxAxWRlJr6HmFqa_MGvFU3GKfrK52cqkDSVESSBvk&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af7_m2w8l4TGf8a59GanmbSLfXVfbOtpp2OgJ6s-4AyK1Q&oe=6A1362EC"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26289007124092424"
                          },
                          {
                            "id": "1599030704602867",
                            "url": "https://www.facebook.com/marketplace/item/1599030704602867/",
                            "title": "Girls Starlite Bike 20\" (retail $395)",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$75",
                              "amount": 75,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1313625453870825",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/609117650_1313625480537489_3235143429288952626_n.jpg?stp=c78.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=107&ccb=1-7&_nc_sid=92e707&_nc_ohc=WcKTQTfG5aAQ7kNvwFE1ow9&_nc_oc=Ado-491iuP7Drcgwxv3Q6D5T8gHCR4hcSSXb7ANrRdO_aSnv8yIYnA9Dx6bnfDj6gSQ&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af4PqrQubKKKtx4wB6vNqQeX-DieqTQ_zIxOteY5e151hA&oe=6A134FCB"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "24992273710450904"
                          },
                          {
                            "id": "982043034753326",
                            "url": "https://www.facebook.com/marketplace/item/982043034753326/",
                            "title": "Retrospec Koda Kids Bike",
                            "price": {
                              "formattedAmount": "$50",
                              "amount": 50,
                              "amountWithOffsetInCurrency": 5000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Georgetown",
                              "state": "TX",
                              "displayName": "Georgetown, Texas",
                              "cityPageId": "109527462399665"
                            },
                            "primaryPhoto": {
                              "id": "841773575643799",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/701881839_841773585643798_9220789098507841806_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=104&ccb=1-7&_nc_sid=92e707&_nc_ohc=GigaT9_Ty0MQ7kNvwF92kg7&_nc_oc=Adq3Eodhd46DTcI-azVtVy_7bhtWWGUY7BlUOZj4s5wM_5AFKrB4-V8WhkeLWNzeF7A&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af7DmHWHOwYvJ7_FUCoyrD62m5VFUF8gXsRllt5oPG_GPA&oe=6A1346A5"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26769760629376026"
                          },
                          {
                            "id": "1658422788444798",
                            "url": "https://www.facebook.com/marketplace/item/1658422788444798/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$150",
                              "amount": 150,
                              "amountWithOffsetInCurrency": 15000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Houston",
                              "state": "TX",
                              "displayName": "Jersey Village, Texas",
                              "cityPageId": "104036566299885"
                            },
                            "primaryPhoto": {
                              "id": "1366669352149864",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/686315062_1366669358816530_4796945213019790797_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=102&ccb=1-7&_nc_sid=92e707&_nc_ohc=Fu08RFTuZzUQ7kNvwE8Z5dM&_nc_oc=AdqMAer79Wt4BXUeTZ1kIF5sC5in87NYJziyyEfXgF3eV-VAd7OU2elTLY3T_X1Rzfk&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af4MuF2CRtwQe6MS5p1ZB1btp0XiZF8Eqna_sUSJQqjb5A&oe=6A136F64"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "PUBLIC_MEETUP",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "35782478801343409"
                          },
                          {
                            "id": "2415974795491410",
                            "url": "https://www.facebook.com/marketplace/item/2415974795491410/",
                            "title": "Fuji Bike",
                            "price": {
                              "formattedAmount": "$175",
                              "amount": 175,
                              "amountWithOffsetInCurrency": 17500
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$250",
                              "amount": 250,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "1314108330847833",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/658697707_1314108337514499_2166161977530790192_n.jpg?stp=c0.101.261.261a_dst-jpg_p261x260_tt6&_nc_cat=106&ccb=1-7&_nc_sid=92e707&_nc_ohc=X3TjOXIBvhQQ7kNvwEh5TeG&_nc_oc=Adorg619TdcGCM0bd61jFc_7gP3mt3mEV1tSnnIDwm9tVVPxA2LMVX_Ej25UEec1t64&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5cXhGCkq-XNVdzSo--1XQMeenIm-SEHkRVTAa6ZI35KA&oe=6A135694"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26994247623494730"
                          },
                          {
                            "id": "958839917125465",
                            "url": "https://www.facebook.com/marketplace/item/958839917125465/",
                            "title": "20 inch Trek Mountain bike",
                            "price": {
                              "formattedAmount": "$120",
                              "amount": 120,
                              "amountWithOffsetInCurrency": 12000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Round Rock",
                              "state": "TX",
                              "displayName": "Round Rock, Texas",
                              "cityPageId": "108109465877758"
                            },
                            "primaryPhoto": {
                              "id": "2051084119094480",
                              "url": "https://scontent-lga3-3.xx.fbcdn.net/v/t39.84726-6/701019784_2051084132427812_347417754280232708_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=104&ccb=1-7&_nc_sid=92e707&_nc_ohc=SvEMkeHG1XQQ7kNvwFRSP_r&_nc_oc=AdoeLzhAb0xDy0kZBZdG4T0qRKwE-9x4mxze_cEg4NuylILzRV0foMXr7BzpIMy1rT4&_nc_zt=14&_nc_ht=scontent-lga3-3.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af57WooTRRca1Z8IyR4FcYQcFaAv334v2byrba_yTIlJ7w&oe=6A136893"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON",
                              "DOOR_PICKUP"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "36025090850437765"
                          },
                          {
                            "id": "812890974576323",
                            "url": "https://www.facebook.com/marketplace/item/812890974576323/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$60",
                              "amount": 60,
                              "amountWithOffsetInCurrency": 6000
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Austin",
                              "state": "TX",
                              "displayName": "Austin, Texas",
                              "cityPageId": "106224666074625"
                            },
                            "primaryPhoto": {
                              "id": "857356027319324",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/657280158_857356033985990_3526329641694674571_n.jpg?stp=c43.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=103&ccb=1-7&_nc_sid=92e707&_nc_ohc=ju0DJ8zk72kQ7kNvwHf7Yn3&_nc_oc=AdorN9RMjPIM4TAC0FvKbfdU15n3QTafpEUm-YvZ-YTVMx8Hp73bkQw8MVHxFEMLhyA&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af6yMxeHUeT_6Y2n1eNgVBZo85U7HJtbbE-KS_VSJQeEag&oe=6A134E64"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26373100135633572"
                          },
                          {
                            "id": "1554496832763058",
                            "url": "https://www.facebook.com/marketplace/item/1554496832763058/",
                            "title": "Schwinn Female Bike",
                            "price": {
                              "formattedAmount": "$59",
                              "amount": 59,
                              "amountWithOffsetInCurrency": 5900
                            },
                            "strikethroughPrice": {
                              "formattedAmount": "$95",
                              "amount": 95,
                              "amountWithOffsetInCurrency": null
                            },
                            "location": {
                              "city": "Hutto",
                              "state": "TX",
                              "displayName": "Hutto, Texas",
                              "cityPageId": "105537989480752"
                            },
                            "primaryPhoto": {
                              "id": "957408187138128",
                              "url": "https://scontent-lga3-1.xx.fbcdn.net/v/t39.84726-6/702729965_957408200471460_2760497936652914204_n.jpg?stp=c100.0.260.260a_dst-jpg_p261x260_tt6&_nc_cat=111&ccb=1-7&_nc_sid=92e707&_nc_ohc=8NLxYvedeIcQ7kNvwHKGYNc&_nc_oc=AdqlHLaNfX-dKU2Xrm3aGVC1p6-yeNwg4iUSjNOK7brRu4EQ6yfMF_DtczikWmsIQG4&_nc_zt=14&_nc_ht=scontent-lga3-1.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af4sxtP360yCZ0u43ZCuwHv7anAlpQEHlDEUjczZY3hc8g&oe=6A135693"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26727203166937013"
                          },
                          {
                            "id": "2373773349763318",
                            "url": "https://www.facebook.com/marketplace/item/2373773349763318/",
                            "title": "Bike",
                            "price": {
                              "formattedAmount": "$25",
                              "amount": 25,
                              "amountWithOffsetInCurrency": 2500
                            },
                            "strikethroughPrice": null,
                            "location": {
                              "city": "Bastrop",
                              "state": "TX",
                              "displayName": "Bastrop, Texas",
                              "cityPageId": "109182835766312"
                            },
                            "primaryPhoto": {
                              "id": "943254888311783",
                              "url": "https://scontent-lga3-2.xx.fbcdn.net/v/t39.84726-6/679466988_943254908311781_6655351783614772978_n.jpg?stp=c0.43.261.261a_dst-jpg_p261x260_tt6&_nc_cat=100&ccb=1-7&_nc_sid=92e707&_nc_ohc=zECogqWz_UsQ7kNvwFmpwGZ&_nc_oc=AdosH97wkIKkEju2RP_WCKiSW80yDXjMQHvXc-sZOQ9FDBlHmk4_jPq-wykRbrZ6EyE&_nc_zt=14&_nc_ht=scontent-lga3-2.xx&_nc_gid=ORxKk18J9CmExc1duxOk9Q&_nc_ss=7e289&oh=00_Af5m7Lx1f0uhNRYxuUCMomopr7bX0yqspbrRBu3B-7gWsA&oe=6A135A9E"
                            },
                            "categoryId": "1658310421102081",
                            "deliveryTypes": [
                              "IN_PERSON"
                            ],
                            "status": {
                              "isHidden": false,
                              "isLive": true,
                              "isPending": false,
                              "isSold": false,
                              "isViewerSeller": false
                            },
                            "storyType": "POST",
                            "storyKey": "26401486019521039"
                          }
                        ],
                        "totalListings": 24,
                        "page": {
                          "nextCursor": "eyJwZyI6MSwiYjJjIjp7ImJyIjoiIiwiaXQiOjAsImhtc3IiOmZhbHNlLCJ0YmkiOjB9LCJjMmMiOnsiYnIiOiJBYnE3VzJ2WDNMVmd2ZzFTTU5JOWc3dk5IdDhnS29zU01TR3lWQURGUXVmU3JXQjVwZl8wYjF4TFNIRmdxQWl1LUU4SDlybGRJN1NQUG5jRUFhQ2VrMS1lR28zZ2ZxY21HczZ1Rzk3N29fbTJUQ0JrVENyalQ4NVdYMGZDdGdSR2xTd3pGeDFqSldKZWJKMnpfS2VLMThSMGVXcWZiekRIOUZqc0ttU25NRmZRRENhN3hVbF9pRUpvWm9oNFNxNHBUbVFxM2dTRnBzNC1NYzJJWWdJaG8tak1pTEhOU3lvNWxUQVVaLWhqbVVmdnRpVXBDaFplbWtsZXpISkxjZzlCbURDa29Ua0kyVzlBOEZvbUlXLTNxVHNPMDBQaWhHcHVPUWZoTEZQTHE3TUFkSEFxMEY0Yzh4WC0zcHZ0QVFUVi03NjNkdjhCMVpveWVBdlA0Y3FzcXBSU3FTcTROQ3loWV9YR3p4bzU1ejdDMmlOeFRwTWtHcHJXSEJKNVktdFUzTG9JaDhTMmtoU2VkdUFlS01uWERQXzdKSzVsZUtBRm9Hb2JudHp3WUFpaUFQTU04Yk81RFdKZmZ0UjhSeXRRWXRhb0FnZkFTbXA1eDFFX0p6X2lIVERldjlEUEdtZ21pR2VOV1NwOWZsTDRjd3BrbUlwQnpTX3NnTHZmVGpBeDRuY2stN2dBYTNRbXQ5Sy1WcnNVNnV5WUhkdUpfQUdEWlRiTWVMd2FRUjZnaVA2OVpHZEZkcVExZHdLaHk0cXhHbWsiLCJpdCI6MCwicnBiciI6IiIsInJwaHIiOmZhbHNlLCJybWhyIjpmYWxzZSwic3NpIjpmYWxzZSwic3NjbyI6MCwic3NwaSI6W119LCJpcnIiOmZhbHNlLCJzZXJwX2N0YSI6ZmFsc2UsInJ1aSI6W10sIm1waWQiOltdLCJ1YnAiOm51bGwsIm5jcm5kIjowLCJpcnNyIjpmYWxzZSwiYm1wciI6W10sImJtcGVpZCI6W10sIm5tYm1wIjpmYWxzZSwic2tyciI6ZmFsc2UsImlvb3VyIjpmYWxzZSwiaXNlIjpmYWxzZSwic21zX2N1cnNvciI6eyJwYWdlX2luZGV4IjowLCJibGVuZGVkX2FkX2luZGV4IjowLCJvcmdhbmljc19zaW5jZV9sYXN0X2FkIjowLCJwYWdlX29yZ2FuaWNfY291bnQiOjAsImJsZW5kZWRfb3JnYW5pY19pbmRleCI6MCwicmV0dXJuZWRfYWRfaW5kZXgiOjAsInRvdGFsX2luZGV4IjowfX0",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01facebook_marketplace_search_page2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query, location, filters, cursor, or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/marketplace/locations/search": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Search Facebook Marketplace locations",
        "description": "Search Facebook Marketplace locations to obtain coordinates for listing search.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "City or place name to search for Facebook Marketplace locations."
            },
            "required": true,
            "description": "City or place name to search for Facebook Marketplace locations.",
            "name": "query",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Marketplace locations for the requested query.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "locations": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Display name for the Marketplace location match."
                              },
                              "subtitle": {
                                "type": "string",
                                "nullable": true,
                                "description": "Additional location context shown by Facebook when available."
                              },
                              "multiLineAddress": {
                                "type": "array",
                                "items": {
                                  "type": "string",
                                  "minLength": 1
                                },
                                "description": "Address lines for the location when available."
                              },
                              "pageId": {
                                "type": "string",
                                "nullable": true,
                                "description": "Facebook page identifier for the location when available."
                              },
                              "latitude": {
                                "type": "number",
                                "description": "Latitude coordinate for Marketplace listing search."
                              },
                              "longitude": {
                                "type": "number",
                                "description": "Longitude coordinate for Marketplace listing search."
                              },
                              "city": {
                                "type": "string",
                                "nullable": true,
                                "description": "City associated with the location when available."
                              },
                              "postalCode": {
                                "type": "string",
                                "nullable": true,
                                "description": "Postal or ZIP code associated with the location when available."
                              }
                            },
                            "required": [
                              "name",
                              "subtitle",
                              "multiLineAddress",
                              "pageId",
                              "latitude",
                              "longitude",
                              "city",
                              "postalCode"
                            ],
                            "description": "A Facebook Marketplace location match with coordinates."
                          },
                          "description": "Locations returned for the search query."
                        },
                        "totalLocations": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of locations returned in this response."
                        }
                      },
                      "required": [
                        "query",
                        "locations",
                        "totalLocations"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "locations": {
                    "value": {
                      "data": {
                        "query": "Austin",
                        "locations": [
                          {
                            "name": "Austin",
                            "subtitle": "Austin, IL · 22,136 people checked in here",
                            "multiLineAddress": [],
                            "pageId": "108120015875983",
                            "latitude": 41.894086,
                            "longitude": -87.763202,
                            "city": "Chicago",
                            "postalCode": "60644-1112"
                          },
                          {
                            "name": "Austin",
                            "subtitle": "Austin, GA · 7 people checked in here",
                            "multiLineAddress": [],
                            "pageId": "312180006098697",
                            "latitude": 33.955058,
                            "longitude": -84.529634,
                            "city": "Marietta",
                            "postalCode": "30060-1862"
                          },
                          {
                            "name": "Austin, Texas",
                            "subtitle": "City",
                            "multiLineAddress": [],
                            "pageId": "106224666074625",
                            "latitude": 30.2677,
                            "longitude": -97.7475,
                            "city": "Austin",
                            "postalCode": "78701"
                          },
                          {
                            "name": "Austin, Minnesota",
                            "subtitle": "City",
                            "multiLineAddress": [],
                            "pageId": "109365855748315",
                            "latitude": 43.6678,
                            "longitude": -92.978,
                            "city": "Austin",
                            "postalCode": "55912"
                          },
                          {
                            "name": "Downtown Austin",
                            "subtitle": "Downtown Austin, TX · 154,702 people checked in here",
                            "multiLineAddress": [],
                            "pageId": "1939771852939956",
                            "latitude": 30.270398,
                            "longitude": -97.742793,
                            "city": "Austin",
                            "postalCode": "78701"
                          },
                          {
                            "name": "Austin, Indiana",
                            "subtitle": "City",
                            "multiLineAddress": [],
                            "pageId": "107603279269569",
                            "latitude": 38.7428,
                            "longitude": -85.8094,
                            "city": "Austin",
                            "postalCode": "47102-1619"
                          },
                          {
                            "name": "North Austin",
                            "subtitle": "North Austin, TX · 1,694 people checked in here",
                            "multiLineAddress": [],
                            "pageId": "102419148171421",
                            "latitude": 30.370272,
                            "longitude": -97.706148,
                            "city": "Austin",
                            "postalCode": "78758-6251"
                          },
                          {
                            "name": "Austin, Arkansas",
                            "subtitle": "City",
                            "multiLineAddress": [],
                            "pageId": "112205362128405",
                            "latitude": 35.0052,
                            "longitude": -91.9892,
                            "city": "Austin",
                            "postalCode": "72007"
                          },
                          {
                            "name": "Austin Avenue",
                            "subtitle": "Austin Avenue, TX · 387 people checked in here",
                            "multiLineAddress": [],
                            "pageId": "171050370095478",
                            "latitude": 31.537311,
                            "longitude": -97.154049,
                            "city": "Waco",
                            "postalCode": "76710"
                          },
                          {
                            "name": "Austin, Colorado",
                            "subtitle": "City",
                            "multiLineAddress": [],
                            "pageId": "104062079629569",
                            "latitude": 38.7811,
                            "longitude": -107.95,
                            "city": "Austin",
                            "postalCode": "81410-8207"
                          }
                        ],
                        "totalLocations": 10
                      },
                      "meta": {
                        "requestId": "req_01facebook_marketplace_locations_search_example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "zzzxxyyqqnomatchfixture999",
                        "locations": [],
                        "totalLocations": 0
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/marketplace/items": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Facebook Marketplace item",
        "description": "Get details for a Facebook Marketplace listing.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 256,
              "description": "Facebook Marketplace item identifier. Provide this instead of url when you already know the item id."
            },
            "required": false,
            "description": "Facebook Marketplace item identifier. Provide this instead of url when you already know the item id.",
            "name": "itemId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public Facebook Marketplace item URL."
            },
            "required": false,
            "description": "Public Facebook Marketplace item URL.",
            "name": "url",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Marketplace item metadata (found or not found in body).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the listing could be resolved for this request."
                        },
                        "item": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "facebook"
                              ],
                              "description": "Social platform for this listing."
                            },
                            "itemId": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Marketplace item identifier."
                            },
                            "url": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public URL for this Marketplace listing."
                            },
                            "title": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Listing title."
                            },
                            "description": {
                              "type": "string",
                              "nullable": true,
                              "description": "Listing description when available."
                            },
                            "createdAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "Creation timestamp in ISO 8601 when available."
                            },
                            "categoryId": {
                              "type": "string",
                              "nullable": true,
                              "description": "Marketplace category identifier when available."
                            },
                            "shareUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Shareable listing URL when available."
                            }
                          },
                          "required": [
                            "platform",
                            "itemId",
                            "url",
                            "title",
                            "description",
                            "createdAt",
                            "categoryId",
                            "shareUrl"
                          ],
                          "description": "Listing details when found."
                        },
                        "price": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "formatted": {
                              "type": "string",
                              "nullable": true,
                              "description": "Formatted price string when available."
                            },
                            "amount": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Numeric price amount when available."
                            },
                            "amountMinor": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Price amount in minor currency units (for example cents) when available."
                            },
                            "currency": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "ISO currency code when available."
                            },
                            "strikethroughFormatted": {
                              "type": "string",
                              "nullable": true,
                              "description": "Formatted strikethrough price when available."
                            },
                            "strikethroughAmount": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Strikethrough numeric amount when available."
                            },
                            "strikethroughAmountMinor": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Strikethrough amount in minor currency units when available."
                            },
                            "strikethroughCurrency": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Strikethrough currency code when available."
                            }
                          },
                          "required": [
                            "formatted",
                            "amount",
                            "amountMinor",
                            "currency",
                            "strikethroughFormatted",
                            "strikethroughAmount",
                            "strikethroughAmountMinor",
                            "strikethroughCurrency"
                          ],
                          "description": "Price details when found."
                        },
                        "location": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "text": {
                              "type": "string",
                              "nullable": true,
                              "description": "Human-readable location label when available."
                            },
                            "latitude": {
                              "type": "number",
                              "nullable": true,
                              "description": "Latitude when available."
                            },
                            "longitude": {
                              "type": "number",
                              "nullable": true,
                              "description": "Longitude when available."
                            }
                          },
                          "required": [
                            "text",
                            "latitude",
                            "longitude"
                          ],
                          "description": "Location details when found."
                        },
                        "attributes": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Attribute name."
                              },
                              "value": {
                                "type": "string",
                                "nullable": true,
                                "description": "Attribute value when available."
                              },
                              "label": {
                                "type": "string",
                                "nullable": true,
                                "description": "Display label when available."
                              }
                            },
                            "required": [
                              "name",
                              "value",
                              "label"
                            ],
                            "description": "A single Marketplace listing attribute."
                          },
                          "description": "Listing attributes when found."
                        },
                        "photos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "photoId": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Photo identifier when available."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Photo image URL."
                              },
                              "width": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Image width in pixels when available."
                              },
                              "height": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Image height in pixels when available."
                              },
                              "accessibilityCaption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Accessibility caption when available."
                              }
                            },
                            "required": [
                              "photoId",
                              "url",
                              "width",
                              "height",
                              "accessibilityCaption"
                            ],
                            "description": "A photo attached to the listing."
                          },
                          "description": "Listing photos when found."
                        },
                        "seller": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "sellerId": {
                              "type": "string",
                              "description": "Seller identifier when available."
                            },
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "Seller display name when available."
                            },
                            "profileUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Seller profile URL when available."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Seller avatar image URL when available."
                            },
                            "rating": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Seller rating when available."
                            }
                          },
                          "required": [
                            "name",
                            "profileUrl",
                            "avatarUrl",
                            "rating"
                          ],
                          "description": "Seller details when available."
                        },
                        "availability": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "hidden": {
                              "type": "boolean",
                              "description": "Whether the listing is hidden."
                            },
                            "live": {
                              "type": "boolean",
                              "description": "Whether the listing is live."
                            },
                            "pending": {
                              "type": "boolean",
                              "description": "Whether the listing is pending."
                            },
                            "sold": {
                              "type": "boolean",
                              "description": "Whether the listing is marked sold."
                            },
                            "viewerSeller": {
                              "type": "boolean",
                              "description": "Whether the authenticated viewer is the seller."
                            },
                            "shippingOffered": {
                              "type": "boolean",
                              "description": "Whether shipping is offered for this listing."
                            },
                            "buyNowEnabled": {
                              "type": "boolean",
                              "description": "Whether buy-now checkout is enabled."
                            },
                            "messagingEnabled": {
                              "type": "boolean",
                              "description": "Whether messaging is enabled for this listing."
                            }
                          },
                          "required": [
                            "hidden",
                            "live",
                            "pending",
                            "sold",
                            "viewerSeller",
                            "shippingOffered",
                            "buyNowEnabled",
                            "messagingEnabled"
                          ],
                          "description": "Availability flags when found."
                        },
                        "deliveryTypes": {
                          "type": "array",
                          "items": {
                            "type": "string",
                            "minLength": 1
                          },
                          "description": "Delivery options such as in-person pickup."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "item",
                        "price",
                        "location",
                        "attributes",
                        "photos",
                        "seller",
                        "availability",
                        "deliveryTypes"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "item": {
                          "platform": "facebook",
                          "itemId": "1656586118821988",
                          "url": "https://www.facebook.com/marketplace/item/1656586118821988/",
                          "title": "Specialized Hardrock GSX - Super Clean Vintage Restomod - INCLUDES FREE TUNE UP",
                          "description": "Was going to hang on to this one bc I absolutely love how it looks.",
                          "createdAt": "2026-05-15T16:57:39.000Z",
                          "categoryId": "1658310421102081",
                          "shareUrl": "https://www.facebook.com/marketplace/item/1656586118821988/"
                        },
                        "price": {
                          "formatted": "$380",
                          "amount": 380,
                          "amountMinor": 38000,
                          "currency": "USD",
                          "strikethroughFormatted": null,
                          "strikethroughAmount": null,
                          "strikethroughAmountMinor": null,
                          "strikethroughCurrency": null
                        },
                        "location": {
                          "text": "Austin, TX",
                          "latitude": 30.401916503906,
                          "longitude": -97.761840820312
                        },
                        "attributes": [
                          {
                            "name": "Condition",
                            "value": "used_good",
                            "label": "Used - Good"
                          }
                        ],
                        "photos": [
                          {
                            "photoId": "2810586442651711",
                            "url": "https://scontent.example.com/marketplace-photo.jpg",
                            "width": 960,
                            "height": 720,
                            "accessibilityCaption": "No photo description available."
                          }
                        ],
                        "seller": null,
                        "availability": {
                          "hidden": false,
                          "live": true,
                          "pending": false,
                          "sold": false,
                          "viewerSeller": false,
                          "shippingOffered": false,
                          "buyNowEnabled": false,
                          "messagingEnabled": true
                        },
                        "deliveryTypes": [
                          "IN_PERSON"
                        ]
                      },
                      "meta": {
                        "requestId": "req_01example_marketplace_item_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "item": null,
                        "price": null,
                        "location": null,
                        "attributes": [],
                        "photos": [],
                        "seller": null,
                        "availability": null,
                        "deliveryTypes": []
                      },
                      "meta": {
                        "requestId": "req_01example_marketplace_item_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/posts": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Facebook post or reel",
        "description": "Get a Facebook post or Reel.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public permalink to the Facebook post or reel."
            },
            "required": true,
            "description": "Public permalink to the Facebook post or reel.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, includes a sample of top-level comments when available."
            },
            "required": false,
            "description": "When true, includes a sample of top-level comments when available.",
            "name": "includeComments",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, includes a plain-text transcript when available for the video."
            },
            "required": false,
            "description": "When true, includes a plain-text transcript when available for the video.",
            "name": "includeTranscript",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Post or reel metadata (found or not found in body).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the URL could be resolved to public content."
                        },
                        "post": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "facebook"
                              ],
                              "description": "Social platform for this content."
                            },
                            "postId": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Platform post id when available."
                            },
                            "url": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical or resolved public URL for this post or reel."
                            },
                            "description": {
                              "type": "string",
                              "nullable": true,
                              "description": "Caption or body text when available."
                            },
                            "publishedAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "Publication timestamp in ISO 8601 when available."
                            },
                            "feedbackId": {
                              "type": "string",
                              "nullable": true,
                              "description": "Opaque feedback identifier when exposed by the platform; may be used for related lookups."
                            }
                          },
                          "required": [
                            "platform",
                            "postId",
                            "url",
                            "description",
                            "publishedAt",
                            "feedbackId"
                          ],
                          "description": "Post details when found."
                        },
                        "author": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "name": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Display name of the author."
                            },
                            "profileUrl": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Public profile URL for the author when available; null when not exposed (e.g. some group posts)."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Avatar image URL when available."
                            },
                            "platformUserId": {
                              "type": "string",
                              "description": "Platform-specific author id when available."
                            },
                            "verified": {
                              "type": "boolean",
                              "description": "Whether the author is marked as verified."
                            }
                          },
                          "required": [
                            "name",
                            "profileUrl",
                            "avatarUrl",
                            "verified"
                          ],
                          "description": "Author when found."
                        },
                        "metrics": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "likes": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Like count when available."
                            },
                            "comments": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Comment count when available."
                            },
                            "shares": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Share count when available."
                            },
                            "views": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "View or play count when available."
                            },
                            "reactions": {
                              "type": "object",
                              "nullable": true,
                              "additionalProperties": {
                                "type": "integer",
                                "minimum": 0
                              },
                              "description": "Per-category reaction totals for the post when exposed by the platform."
                            }
                          },
                          "required": [
                            "likes",
                            "comments",
                            "shares",
                            "views",
                            "reactions"
                          ],
                          "description": "Engagement metrics for the post or reel."
                        },
                        "media": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "thumbnailUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Thumbnail image URL when available."
                            },
                            "imageUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Primary image URL when the post is image-based."
                            },
                            "videoUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Standard-definition video URL when available."
                            },
                            "videoHdUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "High-definition video URL when available."
                            },
                            "durationSec": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Video duration in seconds when available."
                            },
                            "width": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Video width in pixels when available."
                            },
                            "height": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Video height in pixels when available."
                            },
                            "captionsUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Caption or subtitle asset URL when available."
                            }
                          },
                          "required": [
                            "thumbnailUrl",
                            "imageUrl",
                            "videoUrl",
                            "videoHdUrl",
                            "durationSec",
                            "width",
                            "height",
                            "captionsUrl"
                          ],
                          "description": "Primary media for the post or reel."
                        },
                        "music": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "trackTitle": {
                              "type": "string",
                              "nullable": true,
                              "description": "Track title when the post uses attached audio."
                            },
                            "albumArtUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Album art image URL when available."
                            },
                            "musicId": {
                              "type": "string",
                              "description": "Audio track id when available."
                            },
                            "type": {
                              "type": "string",
                              "description": "Audio source type label when available."
                            }
                          },
                          "required": [
                            "trackTitle",
                            "albumArtUrl"
                          ],
                          "description": "Attached audio metadata when available."
                        },
                        "comments": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "commentId": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable id for the comment when available."
                              },
                              "text": {
                                "type": "string",
                                "nullable": true,
                                "description": "Comment body text."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "Creation timestamp in ISO 8601 when available."
                              },
                              "replyCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Number of direct replies when available."
                              },
                              "reactionCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Total reactions when available."
                              },
                              "authorName": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Display name of the commenter."
                              },
                              "authorPlatformUserId": {
                                "type": "string",
                                "description": "Platform-specific id for the commenter when available."
                              },
                              "authorAvatarUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Avatar image URL for the commenter when available."
                              },
                              "reactions": {
                                "type": "object",
                                "nullable": true,
                                "additionalProperties": {
                                  "type": "integer",
                                  "minimum": 0
                                },
                                "description": "Per-category reaction totals on the comment when exposed by the platform."
                              }
                            },
                            "required": [
                              "commentId",
                              "text",
                              "createdAt",
                              "replyCount",
                              "reactionCount",
                              "authorName",
                              "authorAvatarUrl",
                              "reactions"
                            ],
                            "description": "A single top-level comment sample."
                          },
                          "description": "Sample of top-level comments when requested and available."
                        },
                        "transcript": {
                          "type": "string",
                          "nullable": true,
                          "description": "Plain-text transcript when requested and available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "post",
                        "author",
                        "metrics",
                        "media",
                        "music",
                        "comments",
                        "transcript"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "post": {
                          "platform": "facebook",
                          "postId": "10162952105911701",
                          "url": "https://www.facebook.com/reel/823172974137208",
                          "description": "Being a dad of 3 looks a little like… 🕺🤣♥️",
                          "publishedAt": "2026-04-07T19:02:33.000Z",
                          "feedbackId": "ZmVlZGJhY2s6MTAxNjI5NTIxMDU5MTE3MDE="
                        },
                        "author": {
                          "name": "Rob Gill",
                          "profileUrl": "https://www.facebook.com/rob.gill.75",
                          "avatarUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-1/514261429_10161957814226701_4543987082209670710_n.jpg?stp=c0.0.721.721a_cp0_dst-jpg_s40x40_tt6&_nc_cat=110&ccb=1-7&_nc_sid=e99d92&_nc_ohc=uyR1txJfOkQQ7kNvwHtN2QJ&_nc_oc=AdrGClplp0F2h2TolejNQ2iULFmor5zBt9rLR-BfwhoITH_juE07WURY5_PB2gUUozQ&_nc_zt=24&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af5xFRYrR0OVC2I3j2RaMFqp3gXT2QUUITElFMy5refGQw&oe=6A0F29D6",
                          "platformUserId": "pfbid0uBmCwXFmk9pA4PiBCQrHHU6RGhnfmfVhjSCYj4VjdSgwzjMeamJqm39UqeCdEEdTl",
                          "verified": false
                        },
                        "metrics": {
                          "likes": 110,
                          "comments": 10,
                          "shares": 0,
                          "views": null,
                          "reactions": null
                        },
                        "media": {
                          "thumbnailUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t51.71878-10/660112739_25957974367215059_110893655217320703_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=109&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=XXjYUlYXsXMQ7kNvwGg3lr9&_nc_oc=AdpGmc_ITdYsRAu1lw7lgHS0jBbI1fL5c3VG4hyIURvYbteKGCgLnf-kl-nsbx9KQdc&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af6T_mC1eBMhqDZAGMYPr4hVgsYyRKXzXhsB1Z3qDUYZmg&oe=6A0F2B3E",
                          "imageUrl": null,
                          "videoUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m367/AQPifrfcgYSM0szrgSfU6HXGgyc_676Q7R_bJ9tqkyZbxmII7geMl27xpAqH4AgCW7HXoTfBhgskFxtKF4ne8vG2uQw44KtjK11jRbiH4A.mp4?_nc_cat=101&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=02-IX_hmNCQQ7kNvwFf2nGG&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuMzYwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl8zNjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk1Nzg0MTM1NzEwODIyNywiYXNzZXRfYWdlX2RheXMiOjM5LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&_nc_zt=28&oh=00_Af4V01R-EBg18wBHUpjqOx4-vybRzN0PfBncptxmnKCDxQ&oe=6A0F4C85&bitrate=433115&tag=progressive_h264-basic-gen2_360p",
                          "videoHdUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m86/AQNJdGdrSnjGzK4cq5gtbF1YJkHJxmv7r2V6lKscQLUfoFkpQJqiXL1p-xRP8hXm_uzQBVPJhXwU3TE41uNJC29Sd5NTRgWLO5uJpgY.mp4?_nc_cat=108&_nc_sid=5e9851&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=bCPjaL1CxfYQ7kNvwHGGFX2&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTc5NTc4NDEzNTcxMDgyMjcsImFzc2V0X2FnZV9kYXlzIjozOSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjM3LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=95f7d67ab79008df&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC82MjQwQjYzMjUwMzE4QkVBNkE3NzYwNEMwM0M1NjY4NV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0VGNDE2MkM1MDM0MkM3QzRGQzVGM0NBMkVBQ0NBOUJFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaG0K-w-KPmPxUCKAJDMywXQELVP3ztkWgYEmRhc2hfYmFzZWxpbmVfMV92MREAdQJl5p0BAA&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&_nc_zt=28&oh=00_Af5RGEMxGqzKcTTlVz3m_4evEEAKpZ-pl7U2n4TyNdapmg&oe=6A0B3EBD&bitrate=1814698&tag=dash_baseline_1_v1",
                          "durationSec": 37.64,
                          "width": 1080,
                          "height": 1920,
                          "captionsUrl": null
                        },
                        "music": {
                          "trackTitle": "Sabrina Carpenter · Manchild",
                          "albumArtUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/504219432_90029957196451_5125107072007623706_n.jpg?stp=dst-jpg_s168x128_tt6&_nc_cat=1&ccb=1-7&_nc_sid=2f2557&_nc_ohc=ViTN-uA-1C0Q7kNvwEC5I94&_nc_oc=AdrKctFKyf4KpuE_4vFL2qUvcYwfYyAj7iCNiUS6BXhQidU4AlmHiNtiNGjebKWtZqA&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af5GkS6h2uQUTUEaOQZ7t5lIPKdhTIvbGM3nXiaIJTpZNA&oe=6A0F25C2",
                          "musicId": "1736166400619393",
                          "type": "LIBRARY_MUSIC"
                        },
                        "comments": [],
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_fb5a02ce-9b0e-4b27-8854-0a6e40760e3d",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "with_comments": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "post": {
                          "platform": "facebook",
                          "postId": "10162952105911701",
                          "url": "https://www.facebook.com/reel/823172974137208",
                          "description": "Being a dad of 3 looks a little like… 🕺🤣♥️",
                          "publishedAt": "2026-04-07T19:02:33.000Z",
                          "feedbackId": "ZmVlZGJhY2s6MTAxNjI5NTIxMDU5MTE3MDE="
                        },
                        "author": {
                          "name": "Rob Gill",
                          "profileUrl": "https://www.facebook.com/rob.gill.75",
                          "avatarUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-1/514261429_10161957814226701_4543987082209670710_n.jpg?stp=c0.0.721.721a_cp0_dst-jpg_s40x40_tt6&_nc_cat=110&ccb=1-7&_nc_sid=e99d92&_nc_ohc=uyR1txJfOkQQ7kNvwHtN2QJ&_nc_oc=AdrGClplp0F2h2TolejNQ2iULFmor5zBt9rLR-BfwhoITH_juE07WURY5_PB2gUUozQ&_nc_zt=24&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af5xFRYrR0OVC2I3j2RaMFqp3gXT2QUUITElFMy5refGQw&oe=6A0F29D6",
                          "platformUserId": "pfbid0uBmCwXFmk9pA4PiBCQrHHU6RGhnfmfVhjSCYj4VjdSgwzjMeamJqm39UqeCdEEdTl",
                          "verified": false
                        },
                        "metrics": {
                          "likes": 110,
                          "comments": 10,
                          "shares": 0,
                          "views": null,
                          "reactions": null
                        },
                        "media": {
                          "thumbnailUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t51.71878-10/660112739_25957974367215059_110893655217320703_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=109&ccb=1-7&_nc_sid=5fad0e&_nc_ohc=XXjYUlYXsXMQ7kNvwGg3lr9&_nc_oc=AdpGmc_ITdYsRAu1lw7lgHS0jBbI1fL5c3VG4hyIURvYbteKGCgLnf-kl-nsbx9KQdc&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af6T_mC1eBMhqDZAGMYPr4hVgsYyRKXzXhsB1Z3qDUYZmg&oe=6A0F2B3E",
                          "imageUrl": null,
                          "videoUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m367/AQPifrfcgYSM0szrgSfU6HXGgyc_676Q7R_bJ9tqkyZbxmII7geMl27xpAqH4AgCW7HXoTfBhgskFxtKF4ne8vG2uQw44KtjK11jRbiH4A.mp4?_nc_cat=101&_nc_sid=8bf8fe&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=02-IX_hmNCQQ7kNvwFf2nGG&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuMzYwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl8zNjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk1Nzg0MTM1NzEwODIyNywiYXNzZXRfYWdlX2RheXMiOjM5LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzcsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&_nc_zt=28&oh=00_Af4V01R-EBg18wBHUpjqOx4-vybRzN0PfBncptxmnKCDxQ&oe=6A0F4C85&bitrate=433115&tag=progressive_h264-basic-gen2_360p",
                          "videoHdUrl": "https://video-bos5-1.xx.fbcdn.net/o1/v/t2/f2/m86/AQNJdGdrSnjGzK4cq5gtbF1YJkHJxmv7r2V6lKscQLUfoFkpQJqiXL1p-xRP8hXm_uzQBVPJhXwU3TE41uNJC29Sd5NTRgWLO5uJpgY.mp4?_nc_cat=108&_nc_sid=5e9851&_nc_ht=video-bos5-1.xx.fbcdn.net&_nc_ohc=bCPjaL1CxfYQ7kNvwHGGFX2&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5GQUNFQk9PSy4uQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTc5NTc4NDEzNTcxMDgyMjcsImFzc2V0X2FnZV9kYXlzIjozOSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjM3LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=95f7d67ab79008df&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC82MjQwQjYzMjUwMzE4QkVBNkE3NzYwNEMwM0M1NjY4NV92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyL0VGNDE2MkM1MDM0MkM3QzRGQzVGM0NBMkVBQ0NBOUJFX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACaG0K-w-KPmPxUCKAJDMywXQELVP3ztkWgYEmRhc2hfYmFzZWxpbmVfMV92MREAdQJl5p0BAA&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&_nc_zt=28&oh=00_Af5RGEMxGqzKcTTlVz3m_4evEEAKpZ-pl7U2n4TyNdapmg&oe=6A0B3EBD&bitrate=1814698&tag=dash_baseline_1_v1",
                          "durationSec": 37.64,
                          "width": 1080,
                          "height": 1920,
                          "captionsUrl": null
                        },
                        "music": {
                          "trackTitle": "Sabrina Carpenter · Manchild",
                          "albumArtUrl": "https://scontent-bos5-1.xx.fbcdn.net/v/t39.30808-6/504219432_90029957196451_5125107072007623706_n.jpg?stp=dst-jpg_s168x128_tt6&_nc_cat=1&ccb=1-7&_nc_sid=2f2557&_nc_ohc=ViTN-uA-1C0Q7kNvwEC5I94&_nc_oc=AdrKctFKyf4KpuE_4vFL2qUvcYwfYyAj7iCNiUS6BXhQidU4AlmHiNtiNGjebKWtZqA&_nc_zt=23&_nc_ht=scontent-bos5-1.xx&_nc_gid=By5MPaBr8Jm4C-MZm-yCVA&_nc_ss=7e289&oh=00_Af5GkS6h2uQUTUEaOQZ7t5lIPKdhTIvbGM3nXiaIJTpZNA&oe=6A0F25C2",
                          "musicId": "1736166400619393",
                          "type": "LIBRARY_MUSIC"
                        },
                        "comments": [
                          {
                            "commentId": "Y29tbWVudDox",
                            "text": "Great post.",
                            "createdAt": "2026-04-07T19:08:56.000Z",
                            "replyCount": 0,
                            "reactionCount": 2,
                            "authorName": "Example User",
                            "authorPlatformUserId": "685038012",
                            "authorAvatarUrl": null,
                            "reactions": {
                              "like": 2,
                              "love": 0,
                              "haha": 0,
                              "care": 0,
                              "sad": 0,
                              "anger": 0,
                              "wow": 0,
                              "thankful": 0,
                              "pride": 0,
                              "confused": 0
                            }
                          }
                        ],
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_fb5a02ce-9b0e-4b27-8854-0a6e40760e3d",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "post": null,
                        "author": null,
                        "metrics": null,
                        "media": null,
                        "music": null,
                        "comments": [],
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/posts/comments": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "List Facebook post or reel comments",
        "description": "Get comments on a Facebook post or Reel.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Link to the Facebook post or reel whose comments should be listed."
            },
            "required": false,
            "description": "Link to the Facebook post or reel whose comments should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque cursor from a previous response to fetch the next page."
            },
            "required": false,
            "description": "Opaque cursor from a previous response to fetch the next page.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Optional Facebook feedback identifier for the target post; when available it can improve lookup performance."
            },
            "required": false,
            "description": "Optional Facebook feedback identifier for the target post; when available it can improve lookup performance.",
            "name": "feedbackId",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Comment listing result. Check `data.lookupStatus` for `found` or `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the post or reel was resolved for this request."
                        },
                        "comments": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable identifier for the comment."
                              },
                              "text": {
                                "type": "string",
                                "description": "Comment text."
                              },
                              "createdAt": {
                                "type": "string",
                                "description": "ISO-8601 timestamp when the comment was created."
                              },
                              "replyCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Direct reply count for the comment thread."
                              },
                              "reactionCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Total reaction count on the comment."
                              },
                              "author": {
                                "type": "object",
                                "properties": {
                                  "name": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Display name of the commenter."
                                  },
                                  "platformUserId": {
                                    "type": "string",
                                    "description": "Platform-specific commenter id when available."
                                  },
                                  "shortName": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Short display name for the commenter when available."
                                  }
                                },
                                "required": [
                                  "name",
                                  "shortName"
                                ],
                                "description": "Comment author."
                              }
                            },
                            "required": [
                              "id",
                              "text",
                              "createdAt",
                              "replyCount",
                              "reactionCount",
                              "author"
                            ],
                            "description": "A single top-level comment on a Facebook post or reel."
                          },
                          "description": "Top-level comments for the resolved post or reel."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more pages exist."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of comments is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for this response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "comments",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "comments": [
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV85ODgxOTAyNjA1NjI4OTk=",
                            "text": "More importantly mate. A dad of girls!! Makes us the best dancers and we know all the words to songs we’d never openly listen to otherwise 🤣🤣\nBest thing ever!!",
                            "createdAt": "2026-04-07T19:08:56.000Z",
                            "replyCount": 0,
                            "reactionCount": 2,
                            "author": {
                              "name": "Craig Howard",
                              "platformUserId": "685038012",
                              "shortName": "Craig"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV85Nzk0MjQ3OTc5Nzk3OTc=",
                            "text": "Someone’s having fun!!",
                            "createdAt": "2026-04-07T19:53:04.000Z",
                            "replyCount": 0,
                            "reactionCount": 1,
                            "author": {
                              "name": "Andy Cliffe",
                              "platformUserId": "100054717760633",
                              "shortName": "Andy"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xMTQzNTE5OTE3ODk5Njgz",
                            "text": "Lovely family ❤️",
                            "createdAt": "2026-04-07T20:02:29.000Z",
                            "replyCount": 0,
                            "reactionCount": 1,
                            "author": {
                              "name": "Trudy Edwards",
                              "platformUserId": "pfbid0uejkVag742X4gpXwoVa8aJY9KL8NhSZiJttKXikuc7ViZmjAVyHx6JUzDiUruaEZl",
                              "shortName": "Trudy"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xNDc5ODQ5MzMwMTU5MzQ3",
                            "text": "Oh he is doing a good job 👏",
                            "createdAt": "2026-04-07T20:48:07.000Z",
                            "replyCount": 0,
                            "reactionCount": 0,
                            "author": {
                              "name": "Margaret Coutts",
                              "platformUserId": "pfbid0UzXFHSfb85J6KastPYutK9xDnX3PEqKBynC17YL2C2WqYzF42CfzR9BRcuiG3yd4l",
                              "shortName": "Margaret"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xNDI2NjA4OTU4Njk1NjQx",
                            "text": "Nice  bro",
                            "createdAt": "2026-04-07T23:05:20.000Z",
                            "replyCount": 0,
                            "reactionCount": 0,
                            "author": {
                              "name": "Dave Blay",
                              "platformUserId": "pfbid02N36gJL8rTHmL5StA9waKPr13cA9gGBQ9JYpS5Dn883MJsaQHkBqiyqVHpQjc1UYjl",
                              "shortName": "Dave"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xMjcxODYyNjMxNzQxOTQ2",
                            "text": "That's amazing team looks like having an amazing time",
                            "createdAt": "2026-04-07T23:58:01.000Z",
                            "replyCount": 0,
                            "reactionCount": 1,
                            "author": {
                              "name": "John Te Wani",
                              "platformUserId": "pfbid0Q53fCS9cXWuKxjqnp5nykzjUcuAyzoqyAqfG9DEYEz32LyMPgzEP3nPCTSj3VeRSl",
                              "shortName": "John"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV85NjU0Mjc0MTkzMjQyODg=",
                            "text": "well done dad keep up the moves",
                            "createdAt": "2026-04-08T00:43:01.000Z",
                            "replyCount": 0,
                            "reactionCount": 1,
                            "author": {
                              "name": "Aangry Jury",
                              "platformUserId": "pfbid0psTFZ1QKvRdu63Rsjv2wWiDCX8jXFFmmT4XygroxRYGMEqg5rHesGfMfruQT5U9wl",
                              "shortName": "Aangry"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xMjQzODcwNTAwODE2ODc1",
                            "text": "Go on gilly you work it fair play 🤣",
                            "createdAt": "2026-04-08T05:50:02.000Z",
                            "replyCount": 1,
                            "reactionCount": 1,
                            "author": {
                              "name": "Matthew Holland - Ryder",
                              "platformUserId": "pfbid051QMgdDHiPGeQTnx5P69guAhSgr61kBN8M1b72wopvM8GCRwPSXmhJAcfYbg24MDl",
                              "shortName": "Matthew"
                            }
                          },
                          {
                            "id": "Y29tbWVudDoxMDE2Mjk1MjEwNTkxMTcwMV8xNjI4MDQ5NDc4NTMwMDUw",
                            "text": "Love it mate look good on the dance floor in Albert’s shed or labyrinth 🤣",
                            "createdAt": "2026-04-08T14:56:59.000Z",
                            "replyCount": 0,
                            "reactionCount": 0,
                            "author": {
                              "name": "Matty Cowap",
                              "platformUserId": "pfbid02RHp9nYKQgCdkZ9MdJy6WXRBcLzKDwBcVUwLcfWnTK5pfwVVW7Z6NgnRbY4m62WVQl",
                              "shortName": "Matty"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "MToxNzc5MDAyMDg4OgF_OnxTY4ilUyFme-jzIfO0nduKiEiJY4AXuTpoNnQnTJ8WdxjK4QaGzEEAZj-SbkY-6Lwm3b_I52vumNbux4AI7i3TJ4Xsc7wZOWsXGAy8lHkyLDscLokBBmtY2bplxZhbpESBLEEwhWULvOzLjMKNx3VqTNfo2OcyItfbWHAKiVdDQxv0-Kx0IH9JGRKH6IMLaE5KmIpWAhsG_hESIOmjHQcZJt3oFQwJUdWTTmnAhm9Ejh_HUp6-W9q-iD55IZzhM3vL7RNHPnksRJJyvSZxEY82A4gEbiePFJW368E1Wu6QLjSH2RxLelWGB_ZWZ0KbhLkfRTlBX2xvm_fIlZbVC0JEDme9zTDX-iC7ZQf3cyYQjmS1AkIxQLaHm7-p-nepe4emtqs72cof7GQ",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_3826df21-47e9-4af3-aa86-e84d0a40190d",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "no_comments": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "comments": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_nc",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "comments": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/facebook/posts/transcript": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Facebook post transcript",
        "description": "Get the transcript for a Facebook post.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Link to the Facebook post or reel whose transcript should be returned."
            },
            "required": true,
            "description": "Link to the Facebook post or reel whose transcript should be returned.",
            "name": "url",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Transcript lookup result. Inspect `data.lookupStatus` for found, not found, or lookup_failed.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found",
                            "lookup_failed"
                          ],
                          "description": "Outcome of the transcript lookup."
                        },
                        "post": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "url": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Public URL of the Facebook post or reel that was requested (same as the lookup input)."
                            }
                          },
                          "required": [
                            "url"
                          ],
                          "description": "Post or reel identity when the lookup resolved; otherwise null."
                        },
                        "transcript": {
                          "type": "string",
                          "nullable": true,
                          "description": "Plain transcript text when available. May be null when speech is not detected, the video exceeds supported length, or transcription is otherwise unavailable."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "post",
                        "transcript"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "post": {
                          "url": "https://www.facebook.com/reel/1535656380759655"
                        },
                        "transcript": "1\n00:00:00,000 --> 00:00:02,561\nA recipe that **** Throw one\nripe banana into a bowl and\n\n2\n00:00:02,561 --> 00:00:05,121\ngive it a mash. Followed by\nvanilla protein yogurt, cocoa\n\n3\n00:00:05,121 --> 00:00:08,161\npowder, egg whites, oat flour,\nbaking powder, some vanilla\n\n4\n00:00:08,161 --> 00:00:10,881\nextract and give it a good mix\nand pour into a baking tin. Add\n\n5\n00:00:10,881 --> 00:00:12,881\nin a cheeky square of dark\nchocolate if you please and\n\n6\n00:00:12,881 --> 00:00:14,961\nbake in the air fryer for 20\nminutes and now you got\n\n7\n00:00:14,961 --> 00:00:18,241\nyourself a dessert that 100%\n**** packing 27 grams of\n\n8\n00:00:18,241 --> 00:00:20,961\nprotein. Full recipe's in the\ndescription so until next time.\n\n9\n00:00:20,961 --> 00:00:24,881\nBon appetite and we'll see you\nin the next video."
                      },
                      "meta": {
                        "requestId": "req_8e2c7567-6df6-4f70-ba3f-f6ec61e9d6a1",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "post": null,
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "no_transcript": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "post": {
                          "url": "https://www.facebook.com/reel/1535656380759655"
                        },
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_null",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "lookup_failed": {
                    "value": {
                      "data": {
                        "lookupStatus": "lookup_failed",
                        "post": null,
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_lf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query, bad request, or the video exceeds supported transcription length.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "anyOf": [
                            {
                              "type": "string",
                              "enum": [
                                "bad_request"
                              ]
                            },
                            {
                              "type": "string",
                              "enum": [
                                "video_too_long_for_transcription"
                              ]
                            }
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "examples": {
                  "bad_request": {
                    "value": {
                      "error": {
                        "code": "bad_request",
                        "message": "Example message.",
                        "requestId": "req_01example"
                      }
                    }
                  },
                  "video_too_long_for_transcription": {
                    "value": {
                      "error": {
                        "code": "video_too_long_for_transcription",
                        "message": "Example message.",
                        "requestId": "req_01example"
                      }
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok profile",
        "description": "Get a TikTok profile for a creator or account.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle to look up, with or without a leading @."
            },
            "required": true,
            "description": "TikTok handle to look up, with or without a leading @.",
            "name": "handle",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Lookup result. Check `data.lookupStatus` for `found`, `private`, or `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "private",
                            "not_found"
                          ],
                          "description": "Whether the profile was resolved."
                        },
                        "profile": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "tiktok"
                              ],
                              "description": "Social platform for this profile."
                            },
                            "handle": {
                              "type": "string",
                              "description": "TikTok username without the leading @."
                            },
                            "displayName": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public display name shown on the TikTok profile."
                            },
                            "bio": {
                              "type": "string",
                              "nullable": true,
                              "description": "Profile biography text."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available avatar image URL for the profile."
                            },
                            "verified": {
                              "type": "boolean",
                              "description": "Whether TikTok marks the profile as verified."
                            },
                            "profileUrl": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public TikTok profile URL."
                            },
                            "privateAccount": {
                              "type": "boolean",
                              "description": "Whether the TikTok account is private."
                            },
                            "platformUserId": {
                              "type": "string",
                              "description": "TikTok numeric user id as a string (stable within TikTok)."
                            },
                            "secUid": {
                              "type": "string",
                              "description": "TikTok opaque stable user identifier (for advanced integrations)."
                            },
                            "accountCreatedAt": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Account creation time as Unix epoch seconds from TikTok, when provided."
                            },
                            "avatarUrls": {
                              "type": "object",
                              "properties": {
                                "large": {
                                  "type": "string",
                                  "description": "Large avatar URL (typically 1080px class)."
                                },
                                "medium": {
                                  "type": "string",
                                  "description": "Medium avatar URL (typically 720px class)."
                                },
                                "thumb": {
                                  "type": "string",
                                  "description": "Thumbnail avatar URL (typically 100px class)."
                                }
                              },
                              "description": "Avatar URLs at multiple resolutions when available."
                            },
                            "bioLink": {
                              "type": "object",
                              "properties": {
                                "url": {
                                  "type": "string",
                                  "minLength": 1,
                                  "description": "Destination URL for the profile link."
                                },
                                "riskLevel": {
                                  "type": "integer",
                                  "description": "TikTok-assigned link risk indicator (vendor-defined)."
                                }
                              },
                              "required": [
                                "url",
                                "riskLevel"
                              ],
                              "description": "Profile link-in-bio when TikTok provides it."
                            },
                            "language": {
                              "type": "string",
                              "description": "Profile language code reported by TikTok."
                            },
                            "isCommerceUser": {
                              "type": "boolean",
                              "description": "Whether TikTok marks the account as a commerce/creator shop user."
                            },
                            "isSeller": {
                              "type": "boolean",
                              "description": "Whether TikTok marks the account as a TikTok Shop seller."
                            },
                            "openFavorite": {
                              "type": "boolean",
                              "description": "Whether the user’s liked-videos list is public."
                            },
                            "isAdVirtual": {
                              "type": "boolean",
                              "description": "Whether TikTok flags the profile as an AD virtual account."
                            },
                            "isEmbedBanned": {
                              "type": "boolean",
                              "description": "Whether embeds are disallowed for this profile."
                            },
                            "canExpandPlaylist": {
                              "type": "boolean",
                              "description": "Whether playlist expansion is allowed for this profile."
                            },
                            "profileEmbedPermission": {
                              "type": "integer",
                              "description": "TikTok profile embed permission code (vendor-defined)."
                            },
                            "followingVisibility": {
                              "type": "integer",
                              "description": "Who can see accounts this user follows (TikTok vendor-defined code)."
                            },
                            "roomId": {
                              "type": "string",
                              "description": "Live room id when TikTok provides a non-empty value."
                            },
                            "contentSettings": {
                              "type": "object",
                              "properties": {
                                "comment": {
                                  "type": "integer",
                                  "description": "TikTok comment-setting code (vendor-defined)."
                                },
                                "duet": {
                                  "type": "integer",
                                  "description": "TikTok duet-setting code (vendor-defined)."
                                },
                                "stitch": {
                                  "type": "integer",
                                  "description": "TikTok stitch-setting code (vendor-defined)."
                                },
                                "download": {
                                  "type": "integer",
                                  "description": "TikTok download-setting code (vendor-defined)."
                                }
                              },
                              "required": [
                                "comment",
                                "duet",
                                "stitch",
                                "download"
                              ],
                              "description": "Comment, duet, stitch, and download settings from TikTok."
                            },
                            "profileTabs": {
                              "type": "object",
                              "properties": {
                                "showMusicTab": {
                                  "type": "boolean",
                                  "description": "Whether the Music tab is shown on the profile."
                                },
                                "showQuestionTab": {
                                  "type": "boolean",
                                  "description": "Whether the Q&A tab is shown on the profile."
                                },
                                "showPlayListTab": {
                                  "type": "boolean",
                                  "description": "Whether the playlist tab is shown on the profile."
                                }
                              },
                              "required": [
                                "showMusicTab",
                                "showQuestionTab",
                                "showPlayListTab"
                              ],
                              "description": "Which profile tabs TikTok exposes."
                            }
                          },
                          "required": [
                            "platform",
                            "handle",
                            "displayName",
                            "bio",
                            "avatarUrl",
                            "verified",
                            "profileUrl"
                          ],
                          "description": "Profile details when available."
                        },
                        "metrics": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "followers": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Total follower count reported by TikTok."
                            },
                            "following": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Total following count reported by TikTok."
                            },
                            "likes": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Total profile likes reported by TikTok."
                            },
                            "posts": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Total public posts or videos reported by TikTok."
                            },
                            "friends": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Mutual friend count when TikTok reports it."
                            },
                            "diggs": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Profile digg count when TikTok reports it (often zero)."
                            }
                          },
                          "required": [
                            "followers",
                            "following",
                            "likes",
                            "posts"
                          ],
                          "description": "Profile metrics when available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "profile",
                        "metrics"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "profile": {
                          "platform": "tiktok",
                          "handle": "mrbeast",
                          "displayName": "MrBeast",
                          "bio": "Watch my latest video! 👇",
                          "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/1e2348ca19d394037718e3b1d3fc2958~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=cdf6dfe4&x-expires=1779174000&x-signature=liMf49rM%2BUnnJKotaUekFP7R%2FG8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
                          "verified": true,
                          "profileUrl": "https://www.tiktok.com/@mrbeast",
                          "privateAccount": false,
                          "platformUserId": "6614519312189947909",
                          "secUid": "MS4wLjABAAAABKjQkOz_IIzXXzEAl_9LGsWhvK-gBnlczwRPXK8EmxAp6K3X0qiaP5_OEqmm0XwG",
                          "accountCreatedAt": 1540063576,
                          "avatarUrls": {
                            "large": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/1e2348ca19d394037718e3b1d3fc2958~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=cdf6dfe4&x-expires=1779174000&x-signature=liMf49rM%2BUnnJKotaUekFP7R%2FG8%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
                            "medium": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/1e2348ca19d394037718e3b1d3fc2958~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=4edc9ce5&x-expires=1779174000&x-signature=v9fiXRXxMMANfuIDJh%2F5hYhFT1I%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=f20df69d&idc=useast8",
                            "thumb": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/1e2348ca19d394037718e3b1d3fc2958~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=c270ff9c&x-expires=1779174000&x-signature=QWZp42JeOZBr4ypwFniWPXV9D%2Fo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=f20df69d&idc=useast8"
                          },
                          "bioLink": {
                            "url": "https://youtu.be/zRtGL0-5rg4",
                            "riskLevel": 0
                          },
                          "language": "en",
                          "isCommerceUser": false,
                          "isSeller": false,
                          "openFavorite": false,
                          "isAdVirtual": false,
                          "isEmbedBanned": false,
                          "canExpandPlaylist": true,
                          "profileEmbedPermission": 1,
                          "followingVisibility": 2,
                          "contentSettings": {
                            "comment": 0,
                            "duet": 0,
                            "stitch": 0,
                            "download": 0
                          },
                          "profileTabs": {
                            "showMusicTab": false,
                            "showQuestionTab": false,
                            "showPlayListTab": true
                          }
                        },
                        "metrics": {
                          "followers": 127352270,
                          "following": 351,
                          "likes": 1301821757,
                          "posts": 459,
                          "friends": 284,
                          "diggs": 0
                        }
                      },
                      "meta": {
                        "requestId": "req_f05c55ed-d134-4f26-9c23-8a49df4810ba",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "private": {
                    "value": {
                      "data": {
                        "lookupStatus": "private",
                        "profile": {
                          "platform": "tiktok",
                          "handle": "redfanta_",
                          "displayName": "Example",
                          "bio": null,
                          "avatarUrl": "https://example.com/avatar.jpg",
                          "verified": false,
                          "profileUrl": "https://www.tiktok.com/@redfanta_",
                          "privateAccount": true
                        },
                        "metrics": {
                          "followers": 24,
                          "following": 1046,
                          "likes": 751,
                          "posts": 0
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "profile": null,
                        "metrics": null
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/live": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok live stream",
        "description": "Check whether a TikTok creator is currently live.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle to look up, with or without a leading @."
            },
            "required": true,
            "description": "TikTok handle to look up, with or without a leading @.",
            "name": "handle",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Lookup result. Check `data.lookupStatus` for `found` or `not_found`; when found, `data.liveStatus` is `live` or `offline`, with profile context in `data.profile` and live stream payload in `data.live` when broadcasting.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether a TikTok profile identity could be resolved for the handle."
                        },
                        "liveStatus": {
                          "type": "string",
                          "nullable": true,
                          "enum": [
                            "live",
                            "offline",
                            null
                          ],
                          "description": "When `lookupStatus` is `found`, whether the profile is `live` or `offline`. Null when the profile could not be resolved."
                        },
                        "profile": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "tiktok"
                              ],
                              "description": "Social platform for this profile."
                            },
                            "handle": {
                              "type": "string",
                              "description": "TikTok username without the leading @."
                            },
                            "displayName": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public display name shown on the TikTok profile."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available avatar image URL for the profile."
                            },
                            "verified": {
                              "type": "boolean",
                              "description": "Whether TikTok marks the profile as verified."
                            },
                            "profileUrl": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public TikTok profile URL."
                            },
                            "platformUserId": {
                              "type": "string",
                              "description": "TikTok numeric user id as a string (stable within TikTok)."
                            },
                            "secUid": {
                              "type": "string",
                              "description": "TikTok opaque stable user identifier (for advanced integrations)."
                            },
                            "followerCount": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Follower count reported by TikTok when available."
                            },
                            "followingCount": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Following count reported by TikTok when available."
                            },
                            "bio": {
                              "type": "string",
                              "nullable": true,
                              "description": "Profile biography text when TikTok provides it."
                            }
                          },
                          "required": [
                            "platform",
                            "handle",
                            "displayName",
                            "avatarUrl",
                            "verified",
                            "profileUrl"
                          ],
                          "description": "Profile identity when the lookup resolved."
                        },
                        "live": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "roomId": {
                              "type": "string",
                              "minLength": 1,
                              "description": "TikTok live room identifier for the current broadcast."
                            },
                            "title": {
                              "type": "string",
                              "nullable": true,
                              "description": "Live stream title when TikTok provides one."
                            },
                            "coverUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cover image URL for the live stream when available."
                            },
                            "startedAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "ISO-8601 timestamp when the live stream started, when TikTok provides a valid start time."
                            },
                            "viewerCount": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Approximate concurrent viewers reported by TikTok."
                            },
                            "enterCount": {
                              "type": "integer",
                              "minimum": 0,
                              "description": "Cumulative enters reported by TikTok for this live room."
                            },
                            "streamId": {
                              "type": "string",
                              "description": "TikTok stream identifier when TikTok provides one."
                            },
                            "streams": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "codecFamily": {
                                    "type": "string",
                                    "enum": [
                                      "h264",
                                      "h265"
                                    ],
                                    "description": "Video codec family for this variant."
                                  },
                                  "source": {
                                    "type": "string",
                                    "enum": [
                                      "primary",
                                      "hevc"
                                    ],
                                    "description": "Which stream bundle this variant came from (standard vs alternate encoding)."
                                  },
                                  "qualityKey": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Stable quality key for this stream variant."
                                  },
                                  "qualityLabel": {
                                    "type": "string",
                                    "description": "Human-readable quality label when TikTok provides one."
                                  },
                                  "flvUrl": {
                                    "type": "string",
                                    "description": "FLV playback URL when TikTok provides one."
                                  },
                                  "hlsUrl": {
                                    "type": "string",
                                    "description": "HLS playback URL when TikTok provides one."
                                  },
                                  "cmafUrl": {
                                    "type": "string",
                                    "description": "CMAF playback URL when TikTok provides one."
                                  },
                                  "resolution": {
                                    "type": "string",
                                    "description": "Video resolution string when TikTok reports it."
                                  },
                                  "bitrate": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Target bitrate in bits per second when TikTok reports it."
                                  }
                                },
                                "required": [
                                  "codecFamily",
                                  "source",
                                  "qualityKey"
                                ],
                                "description": "A single live stream playback variant."
                              },
                              "description": "Flattened playback variants for the live stream."
                            }
                          },
                          "required": [
                            "roomId",
                            "title",
                            "coverUrl",
                            "startedAt",
                            "viewerCount",
                            "enterCount",
                            "streams"
                          ],
                          "description": "Live broadcast details when `liveStatus` is `live`. Null when not live or when the profile could not be resolved."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "liveStatus",
                        "profile",
                        "live"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "live": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "liveStatus": "offline",
                        "profile": {
                          "platform": "tiktok",
                          "handle": "jade_pk6",
                          "displayName": "Jade-pk",
                          "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/3c81ab843a1b82b5c6c2cd84366b23ed~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=306e7550&x-expires=1779174000&x-signature=s%2FEdsPqTt9IgWGZU1bjfANmFBHE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=fdd36af4&idc=useast5",
                          "verified": false,
                          "profileUrl": "https://www.tiktok.com/@jade_pk6",
                          "platformUserId": "75123320319",
                          "secUid": "MS4wLjABAAAA5e21vOQS6YrPEGPIWqgYUeQka7Pz8suMFMmKmNAdHAI",
                          "followerCount": 1659,
                          "followingCount": 218,
                          "bio": "หยกรีวิวทู้กกกอย่างงง🥰"
                        },
                        "live": null
                      },
                      "meta": {
                        "requestId": "req_98301289-bc4d-4cfc-86ae-837e6342d4f4",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "offline": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "liveStatus": "offline",
                        "profile": {
                          "platform": "tiktok",
                          "handle": "jade_pk6",
                          "displayName": "Jade-pk",
                          "avatarUrl": "https://example.com/avatar.jpg",
                          "verified": false,
                          "profileUrl": "https://www.tiktok.com/@jade_pk6",
                          "platformUserId": "75123320319",
                          "secUid": "MS4wLjABAAAAexample",
                          "followerCount": 1657,
                          "followingCount": 217,
                          "bio": "หยกรีวิวทู้กกกอย่างงง🥰"
                        },
                        "live": null
                      },
                      "meta": {
                        "requestId": "req_01example_offline",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "liveStatus": null,
                        "profile": null,
                        "live": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/region": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok profile region",
        "description": "Get the region code reported for a TikTok profile.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle to look up, with or without a leading @."
            },
            "required": true,
            "description": "TikTok handle to look up, with or without a leading @.",
            "name": "handle",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Lookup result. Check `data.lookupStatus` for `found` or `not_found`; when found, `data.profile` contains profile identity and `data.region` contains the reported region code.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether a TikTok profile could be resolved for the handle."
                        },
                        "profile": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "tiktok"
                              ],
                              "description": "Social platform for this profile."
                            },
                            "handle": {
                              "type": "string",
                              "description": "TikTok username without the leading @."
                            },
                            "profileUrl": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public TikTok profile URL."
                            }
                          },
                          "required": [
                            "platform",
                            "handle",
                            "profileUrl"
                          ],
                          "description": "Profile identity when the lookup resolved."
                        },
                        "region": {
                          "type": "string",
                          "nullable": true,
                          "minLength": 1,
                          "description": "Country or region code reported for the profile when available. Null when the profile could not be resolved."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "profile",
                        "region"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "profile": {
                          "platform": "tiktok",
                          "handle": "stoolpresidente",
                          "profileUrl": "https://www.tiktok.com/@stoolpresidente"
                        },
                        "region": "US"
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "profile": null,
                        "region": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/videos": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok profile videos",
        "description": "Get videos from a specific TikTok profile.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.videos` array can mean no videos in the selected sort window, a private profile, or other cases—there is no `lookupStatus` field on this route.",
          "disambiguation": "Call `GET /v1/tiktok/profiles/{handle}` when you need explicit `lookupStatus` including `private` or `not_found` before interpreting an empty video list."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle whose videos should be listed."
            },
            "required": true,
            "description": "TikTok handle whose videos should be listed.",
            "name": "handle",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "latest",
                "popular"
              ],
              "description": "Optional sort order for the returned TikTok videos."
            },
            "required": false,
            "description": "Optional sort order for the returned TikTok videos.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Optional TikTok user id to speed up the request."
            },
            "required": false,
            "description": "Optional TikTok user id to speed up the request.",
            "name": "userId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "description": "Optional ISO 3166-1 country code for the request."
            },
            "required": false,
            "description": "Optional ISO 3166-1 country code for the request.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "Optional flag for a smaller response with fewer fields."
            },
            "required": false,
            "description": "Optional flag for a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "TikTok videos for the requested profile.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "videos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok video identifier."
                              },
                              "caption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Caption text shown for the TikTok video."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp when the video was created, when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Canonical public TikTok URL for the video."
                              },
                              "thumbnailUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Best available thumbnail or cover image URL for the video."
                              },
                              "durationMs": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Video duration in milliseconds, when available."
                              },
                              "pinned": {
                                "type": "boolean",
                                "description": "Whether the video is pinned on the profile."
                              },
                              "isAd": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the video as an ad."
                              },
                              "stats": {
                                "type": "object",
                                "properties": {
                                  "views": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "View count reported by TikTok for the video."
                                  },
                                  "likes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Like count reported by TikTok for the video."
                                  },
                                  "comments": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Comment count reported by TikTok for the video."
                                  },
                                  "shares": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Share count reported by TikTok for the video."
                                  },
                                  "saves": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Save or collection count reported by TikTok for the video."
                                  }
                                },
                                "required": [
                                  "views",
                                  "likes",
                                  "comments",
                                  "shares",
                                  "saves"
                                ],
                                "description": "Engagement metrics for the video."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "downloadUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL, usually with watermark."
                                  },
                                  "downloadWithoutWatermarkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL without watermark."
                                  }
                                },
                                "required": [
                                  "downloadUrl",
                                  "downloadWithoutWatermarkUrl"
                                ],
                                "description": "Download-related media URLs for the video."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this video (for example author, music, challenges, and full `video` and `statistics` objects). Keys that only duplicate the top-level fields are omitted."
                              }
                            },
                            "required": [
                              "id",
                              "caption",
                              "createdAt",
                              "url",
                              "thumbnailUrl",
                              "durationMs",
                              "pinned",
                              "isAd",
                              "stats",
                              "media"
                            ],
                            "description": "TikTok video in the profile feed."
                          },
                          "description": "TikTok videos for the requested profile page. An empty array can mean no videos in the selected sort window, a private profile, or other cases—this route has no `lookupStatus`; use the profile endpoint when you need explicit outcomes."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more videos are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of videos is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "videos",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "first_page": {
                    "value": {
                      "data": {
                        "videos": [
                          {
                            "id": "7639528062975053069",
                            "caption": "#teabythesea SEVEN YEARS!!!!   7 YEARS!",
                            "createdAt": "2026-05-13T23:50:59.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7639528062975053069",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogHfQF26AmuRWD73IEDDLppAk1EEBqHSgDBFIf~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=db707fa5&x-expires=1779087600&x-signature=afu2geiwzZ6P6%2BSrBjju5Ei46ok%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 205635,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 302447,
                              "likes": 19880,
                              "comments": 339,
                              "shares": 2232,
                              "saves": 389
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/2b905d4c9f3a5aaab2a98980e674c1ac/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/osAqDEcqSELQqRrE2EFfBFZBcDyspQI73UuAfg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1699&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDo7NmdoaGc5Njo0NDc3NEBpM3E1aXc5cjVqOzMzZzczNEBiYV4xM2MxNi8xMjExMi01YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/100b9c6d0753b5d49d2abca34e54acf3/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7639528133133110000,
                                "id_str": "7639528133133110030",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639528178599332622.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639528178599332622.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 205,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7639528062975053069,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d82gsqnog65illsu3omg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7639528133133110030",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 205,
                                "shoot_duration": 205,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 205,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 205.662,
                                  "shoot_duration_precision": 205.662,
                                  "audition_duration_precision": 205.662,
                                  "video_duration_precision": 205.662
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778716267,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7639528133133110000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/100b9c6d0753b5d49d2abca34e54acf3/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/cc539c489df2247582666c33134b891f/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=77d6b9f187e846878ef545a2e5760b9c&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmVhYWMyYTA1ZDE3OGExY2ZhYjU4YzNlM2Y3YjU1Mjdj&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_h264_720p_1865655",
                                  "data_size": 47955516,
                                  "file_hash": "6576f8a3908f06de8059d9fe27073fe5",
                                  "file_cs": "c:0-170032-917a",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/ogHfQF26AmuRWD73IEDDLppAk1EEBqHSgDBFIf",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogHfQF26AmuRWD73IEDDLppAk1EEBqHSgDBFIf~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=db707fa5&x-expires=1779087600&x-signature=afu2geiwzZ6P6%2BSrBjju5Ei46ok%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogHfQF26AmuRWD73IEDDLppAk1EEBqHSgDBFIf~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=6e6dcb70&x-expires=1779087600&x-signature=syt6QiGUVQjiCUJqY%2BNgvhtjYr0%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogHfQF26AmuRWD73IEDDLppAk1EEBqHSgDBFIf~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=1fd98db4&x-expires=1779087600&x-signature=sBKr8tfsP5Y0FMiTcJx%2BY48EUhs%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/okUfDAfDSI7WRuqEpD3E4B3QFBpACE2qFB0LIg",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okUfDAfDSI7WRuqEpD3E4B3QFBpACE2qFB0LIg~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=8cc40d59&x-expires=1779087600&x-signature=VXabL8H6V0qBNaC2O%2FRTu6YdyRU%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okUfDAfDSI7WRuqEpD3E4B3QFBpACE2qFB0LIg~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=139ea440&x-expires=1779087600&x-signature=RVgO3g%2FpW2DgpEoAQ5NMHrO1ijg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okUfDAfDSI7WRuqEpD3E4B3QFBpACE2qFB0LIg~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=bcc87244&x-expires=1779087600&x-signature=j0c9sedfn4xVNTSSUjT6x0QpAwQ%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEHEuoFB3IDBL7BA2EbgffEpqFISRSADS2pQDB",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEHEuoFB3IDBL7BA2EbgffEpqFISRSADS2pQDB~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=0a8bc443&x-expires=1779087600&x-signature=VRU6UYfvxrRLfBCztObvOIUUeAU%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEHEuoFB3IDBL7BA2EbgffEpqFISRSADS2pQDB~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=bfa2e83f&x-expires=1779087600&x-signature=P%2F7t7nFU9Hdb0891L28qShM1o1k%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEHEuoFB3IDBL7BA2EbgffEpqFISRSADS2pQDB~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=9d3194af&x-expires=1779087600&x-signature=%2B4RQZP%2FDrbNjd8dblrE9k21M5JA%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/2b905d4c9f3a5aaab2a98980e674c1ac/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/osAqDEcqSELQqRrE2EFfBFZBcDyspQI73UuAfg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1699&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDo7NmdoaGc5Njo0NDc3NEBpM3E1aXc5cjVqOzMzZzczNEBiYV4xM2MxNi8xMjExMi01YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/68b1f58b6c3b9e4e67eaec621f373684/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/osAqDEcqSELQqRrE2EFfBFZBcDyspQI73UuAfg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1699&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDo7NmdoaGc5Njo0NDc3NEBpM3E1aXc5cjVqOzMzZzczNEBiYV4xM2MxNi8xMjExMi01YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d82gr2vog65tqfo2tn20&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=81045441415743269d4efe6d43a8d7ea&item_id=7639528062975053069&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZmMzY3NWFmMGRmMmU4YzY5OWVhZjVlODUyMmM2OGI0&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 44736328,
                                  "file_cs": "c:0-170032-917a",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1886255,
                                    "play_addr": {
                                      "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/4d8827c95498106f6c9e62c60d2b6f1f/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/og0A8cLXATsIh3kUjjQCH7CeFIRPgCLKeg4CeG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1842&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Mzs4OGU6NDc1Z2k7aTg1NEBpM3E1aXc5cjVqOzMzZzczNEA1NjJgLy9eXy4xLTMvXl42YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/e4a6e5341570432699db015d69f1304b/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/og0A8cLXATsIh3kUjjQCH7CeFIRPgCLKeg4CeG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1842&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Mzs4OGU6NDc1Z2k7aTg1NEBpM3E1aXc5cjVqOzMzZzczNEA1NjJgLy9eXy4xLTMvXl42YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=91a2a52f680f4d12b4a1272bc5559880&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjE4MzlkMzRmMDE2MjA5ZWRjOWM1NmE1ODUyZDFmYTQ2&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_1080p_1886255",
                                      "data_size": 48485014,
                                      "file_hash": "98e8378788db09eb04c6d23b2472cdc2",
                                      "file_cs": "c:0-170634-0798",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 506576}, {\\\"time\\\": 2, \\\"offset\\\": 714477}, {\\\"time\\\": 3, \\\"offset\\\": 930751}, {\\\"time\\\": 4, \\\"offset\\\": 1164254}, {\\\"time\\\": 5, \\\"offset\\\": 1394066}, {\\\"time\\\": 10, \\\"offset\\\": 2511241}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 96.758, \\\"v960\\\": 97.849, \\\"v864\\\": 98.611, \\\"v720\\\": 99.378}, \\\"ori\\\": {\\\"v1080\\\": 90.724, \\\"v960\\\": 92.854, \\\"v864\\\": 94.399, \\\"v720\\\": 96.407}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"718123573b18c7b87c2da0cff22eed31\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96065,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"55\",\"srqa3_0_ori\":\"50\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 1115390,
                                    "play_addr": {
                                      "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/852fb80950d656ccc686b69a6fe13d61/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c004-tx/oo7AVF2EQLI3BbYqApQERGfFcf41dSESDDEBgu/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1089&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ojs0ZDM7O2c7NjRoZGk2M0BpM3E1aXc5cjVqOzMzZzczNEAtLjVfYC9jNmAxYmE1NV4vYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/83e518ccce50d09cd1dda2cd026ec0ba/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c004-tx/oo7AVF2EQLI3BbYqApQERGfFcf41dSESDDEBgu/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1089&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ojs0ZDM7O2c7NjRoZGk2M0BpM3E1aXc5cjVqOzMzZzczNEAtLjVfYC9jNmAxYmE1NV4vYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=20a38f8adee143c89df828c0ba811807&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjc2OWVjZTgxMjRmOTY1NzBmYTE0ODQzNzY1NWFkYzMy&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_720p_1115390",
                                      "data_size": 28670560,
                                      "file_hash": "e371eef8b1d800cffe9faa0096a7a164",
                                      "file_cs": "c:0-170637-0774",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 386862}, {\\\"time\\\": 2, \\\"offset\\\": 501766}, {\\\"time\\\": 3, \\\"offset\\\": 638330}, {\\\"time\\\": 4, \\\"offset\\\": 780757}, {\\\"time\\\": 5, \\\"offset\\\": 922100}, {\\\"time\\\": 10, \\\"offset\\\": 1568720}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 90.196, \\\"v960\\\": 92.592, \\\"v864\\\": 94.303, \\\"v720\\\": 96.802}, \\\"ori\\\": {\\\"v1080\\\": 81.106, \\\"v960\\\": 84.287, \\\"v864\\\": 87.019, \\\"v720\\\": 90.627}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 90.068, \\\"sr20\\\": 96.711}}\",\"audio_bit_rate\":96065,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":18.2,\\\"RCD\\\":[-1.9],\\\"MP\\\":-5.28,\\\"BE\\\":[64.6,10551.3],\\\"OCF\\\":[-22.1864,-14.5892,-8.7583,-4.5968,-4.5092,-11.8217,-12.7125,-22.7927,-33.1016,-51.1933],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.5}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_1",
                                    "quality_type": 28,
                                    "bit_rate": 867198,
                                    "play_addr": {
                                      "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/c27d9f1cddd789f98e1c7b8b0eff600b/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/o0pIXa3fDDGBASuFTEFgg2EERA7SQGLfEVBqQQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=846&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTo6aWY0OzY3O2gzNzhpaEBpM3E1aXc5cjVqOzMzZzczNEAwYjQ1MWIwNl8xMTUtLTQxYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/2942fe55b7c0c288a65a70642830f4c0/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/o0pIXa3fDDGBASuFTEFgg2EERA7SQGLfEVBqQQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=846&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTo6aWY0OzY3O2gzNzhpaEBpM3E1aXc5cjVqOzMzZzczNEAwYjQ1MWIwNl8xMTUtLTQxYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4e7f0504804e48b49338e14c8f77e736&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU2ZGYzNjUxMTgwOGRjZDkwYjA4ZjA4NDVmYjhlOWUx&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_540p_867198",
                                      "data_size": 22290916,
                                      "file_hash": "b55c35653a97b3746624fb5ff14cc3da",
                                      "file_cs": "c:0-170637-510a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 332083}, {\\\"time\\\": 2, \\\"offset\\\": 413609}, {\\\"time\\\": 3, \\\"offset\\\": 511312}, {\\\"time\\\": 4, \\\"offset\\\": 614595}, {\\\"time\\\": 5, \\\"offset\\\": 718574}, {\\\"time\\\": 10, \\\"offset\\\": 1217658}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 86.87, \\\"v960\\\": 90.052, \\\"v864\\\": 92.273, \\\"v720\\\": 95.314}, \\\"ori\\\": {\\\"v1080\\\": 76.029, \\\"v960\\\": 79.337, \\\"v864\\\": 82.441, \\\"v720\\\": 87.443}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6cec0b1e0e6cc0e83d0cdf75ec8b3526\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 85.845, \\\"sr20\\\": 94.475}}\",\"audio_bit_rate\":64045,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBIIAQBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":18.2,\\\"RCD\\\":[-1.8],\\\"MP\\\":-3.99,\\\"BE\\\":[64.6,10427.5],\\\"OCF\\\":[-21.8489,-14.5579,-8.7861,-4.6156,-4.5259,-11.7548,-12.5613,-22.7383,-33.2532,-51.2328],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.5}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 735427,
                                    "play_addr": {
                                      "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/7df1cab91b88c1bb1d42efc036fdbc11/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYLHEpsBg27RAIAoqSEwfSFdEuDFSQfFB3QEDB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=718&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZjdlZ2RmaDU3ZzZnaWk0NEBpM3E1aXc5cjVqOzMzZzczNEBeNC00YDEyX2IxYzYwLS1jYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/625813254ba70de781183eaf1ffbaa1e/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYLHEpsBg27RAIAoqSEwfSFdEuDFSQfFB3QEDB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=718&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZjdlZ2RmaDU3ZzZnaWk0NEBpM3E1aXc5cjVqOzMzZzczNEBeNC00YDEyX2IxYzYwLS1jYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f1010f3f9df34de4b25e4cca7d0b74ac&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjljNGFmNTczODQxMTdhMDY5YTEyNzFmNThhMzcwZTgx&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_540p_735427",
                                      "data_size": 18903801,
                                      "file_hash": "0d7ce4bb26918abab8099cf2e5a30afa",
                                      "file_cs": "c:0-170635-2b48",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 309446}, {\\\"time\\\": 2, \\\"offset\\\": 387233}, {\\\"time\\\": 3, \\\"offset\\\": 469177}, {\\\"time\\\": 4, \\\"offset\\\": 555452}, {\\\"time\\\": 5, \\\"offset\\\": 647269}, {\\\"time\\\": 10, \\\"offset\\\": 1063929}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 83.178, \\\"v960\\\": 85.975, \\\"v864\\\": 88.755, \\\"v720\\\": 92.316}, \\\"ori\\\": {\\\"v1080\\\": 71.961, \\\"v960\\\": 75.602, \\\"v864\\\": 78.651, \\\"v720\\\": 83.781}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 82.176, \\\"sr20\\\": 90.806}}\",\"audio_bit_rate\":64045,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":18.2,\\\"RCD\\\":[-1.8],\\\"MP\\\":-3.99,\\\"BE\\\":[64.6,10427.5],\\\"OCF\\\":[-21.8489,-14.5579,-8.7861,-4.6156,-4.5259,-11.7548,-12.5613,-22.7383,-33.2532,-51.2328],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.5}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 510742,
                                    "play_addr": {
                                      "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/4e1f0585ae8755a23f6d47fffc108a4e/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/oEbEEfQFugPRDAMEQA7EALBSFDBFIaMfq32phQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=498&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ojw0NWVkZzM8NzszNjloOkBpM3E1aXc5cjVqOzMzZzczNEBfXi9fLzMwXzExX2AyLWNfYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/b1369cdaa9dc0f5a343073624956f59d/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/oEbEEfQFugPRDAMEQA7EALBSFDBFIaMfq32phQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=498&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ojw0NWVkZzM8NzszNjloOkBpM3E1aXc5cjVqOzMzZzczNEBfXi9fLzMwXzExX2AyLWNfYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=b7fe0653c0b84449b03d6a2bb221a9b7&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmE1Y2QxY2EyZDYwNDA1ODU4YWQzZjJlYzE2OWI5MTlm&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_540p_510742",
                                      "data_size": 13128382,
                                      "file_hash": "b599a780f9b502a2bdb4fcee67028a61",
                                      "file_cs": "c:0-170651-3ca2",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 273060}, {\\\"time\\\": 2, \\\"offset\\\": 327383}, {\\\"time\\\": 3, \\\"offset\\\": 384080}, {\\\"time\\\": 4, \\\"offset\\\": 446012}, {\\\"time\\\": 5, \\\"offset\\\": 512594}, {\\\"time\\\": 10, \\\"offset\\\": 804422}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 76.396, \\\"v960\\\": 79.575, \\\"v864\\\": 82.746, \\\"v720\\\": 86.808}, \\\"ori\\\": {\\\"v1080\\\": 65.282, \\\"v960\\\": 69.322, \\\"v864\\\": 72.626, \\\"v720\\\": 78.291}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24030,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  }
                                ],
                                "duration": 205635,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/100b9c6d0753b5d49d2abca34e54acf3/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/cc539c489df2247582666c33134b891f/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=77d6b9f187e846878ef545a2e5760b9c&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmVhYWMyYTA1ZDE3OGExY2ZhYjU4YzNlM2Y3YjU1Mjdj&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_h264_720p_1865655",
                                  "data_size": 47955516,
                                  "file_hash": "6576f8a3908f06de8059d9fe27073fe5",
                                  "file_cs": "c:0-170032-917a",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=736634b1&x-expires=1779087600&x-signature=5glMTjQDd%2FbngTkRxnA%2F2whmBrg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6b76d3a0&x-expires=1779087600&x-signature=P2LOGCp4UR0VKRn3mj%2FmvfLWECU%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=2ab64709&x-expires=1779087600&x-signature=Ywd8%2Bs55OSCjSCNJsvc51VKErVM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 2,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 206,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 205.63333,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/o4IFIDDRRDABAuDqpFsUf3ifE27ELEdgSuQrB5",
                                      "tos-useast5-p-0068-tx/oY3xQIkjqIZhToGdHFALuCXfQeHBUXICeHs3KA",
                                      "tos-useast5-p-0068-tx/oIEEADurIp7ESWBB3FuDfDER2LAFD9QgNVzqIf",
                                      "tos-useast5-p-0068-tx/oUgIEJ7EEFApuBDgIRJDSLAuQ3Dj27qF3DffBr",
                                      "tos-useast5-p-0068-tx/okIvBejIQHAerQoFGUyAeITdkCLsuDCGhOWX13",
                                      "tos-useast5-p-0068-tx/oUuFjhIsUQkeIqH3DCCLWUsIQBGGTsAdXAeRre",
                                      "tos-useast5-p-0068-tx/ogIsmGkGUCD3uydLIpehmAQTIHBFeCtAejQroX",
                                      "tos-useast5-p-0068-tx/o0DEXEEDg3VBA2uFfDqRDDA7IpFfrBISQLv8FS",
                                      "tos-useast5-p-0068-tx/oc5DA2qfADR3ELpEFQA8IIIDFgbSB5uBEtf9r7"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4IFIDDRRDABAuDqpFsUf3ifE27ELEdgSuQrB5~tplv-noop.image?dr=12525&refresh_token=45d6f295&x-expires=1779024029&x-signature=vC3qKUGXp5mNyptXK0wEpT2rqW8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oY3xQIkjqIZhToGdHFALuCXfQeHBUXICeHs3KA~tplv-noop.image?dr=12525&refresh_token=832145a3&x-expires=1779024029&x-signature=rI%2BkGVGUk2dGj63srgUxHKhEGrI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIEEADurIp7ESWBB3FuDfDER2LAFD9QgNVzqIf~tplv-noop.image?dr=12525&refresh_token=3a89d2ce&x-expires=1779024029&x-signature=Vft4o8JzLsLfKVizKSF8iUszLkg%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUgIEJ7EEFApuBDgIRJDSLAuQ3Dj27qF3DffBr~tplv-noop.image?dr=12525&refresh_token=0149f461&x-expires=1779024029&x-signature=kUInhnSJMKtxSZKKpvSIdBEkEAs%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okIvBejIQHAerQoFGUyAeITdkCLsuDCGhOWX13~tplv-noop.image?dr=12525&refresh_token=0231fe02&x-expires=1779024029&x-signature=zI0%2BQVLGc5Y4lwSrQL%2FKUbfkbNk%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUuFjhIsUQkeIqH3DCCLWUsIQBGGTsAdXAeRre~tplv-noop.image?dr=12525&refresh_token=b8a64109&x-expires=1779024029&x-signature=xIZJPFd4%2F68k4Mt3QJd4lORR1eA%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogIsmGkGUCD3uydLIpehmAQTIHBFeCtAejQroX~tplv-noop.image?dr=12525&refresh_token=e16eb3fc&x-expires=1779024029&x-signature=i2wkjpxHiP0Hc4VRjX4unWoGrj8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0DEXEEDg3VBA2uFfDqRDDA7IpFfrBISQLv8FS~tplv-noop.image?dr=12525&refresh_token=0e49ced7&x-expires=1779024029&x-signature=lALUgY%2FAaklomHZcOiscSNM4PXU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oc5DA2qfADR3ELpEFQA8IIIDFgbSB5uBEtf9r7~tplv-noop.image?dr=12525&refresh_token=cc50f46e&x-expires=1779024029&x-signature=mYQiH%2BoDK5TEYomR1syZPbn1cCo%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d82gr2vog65tqfo2tn20"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/c27d9f1cddd789f98e1c7b8b0eff600b/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/o0pIXa3fDDGBASuFTEFgg2EERA7SQGLfEVBqQQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=846&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTo6aWY0OzY3O2gzNzhpaEBpM3E1aXc5cjVqOzMzZzczNEAwYjQ1MWIwNl8xMTUtLTQxYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/2942fe55b7c0c288a65a70642830f4c0/6a09c09d/video/tos/useast5/tos-useast5-pve-0068-tx/o0pIXa3fDDGBASuFTEFgg2EERA7SQGLfEVBqQQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=846&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTo6aWY0OzY3O2gzNzhpaEBpM3E1aXc5cjVqOzMzZzczNEAwYjQ1MWIwNl8xMTUtLTQxYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4e7f0504804e48b49338e14c8f77e736&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU2ZGYzNjUxMTgwOGRjZDkwYjA4ZjA4NDVmYjhlOWUx&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_bytevc1_540p_867198",
                                  "data_size": 22290916,
                                  "file_hash": "b55c35653a97b3746624fb5ff14cc3da",
                                  "file_cs": "c:0-170637-510a",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"2.9\",\"LoudnessRangeEnd\":\"-15.5\",\"LoudnessRangeStart\":\"-18.4\",\"MaximumMomentaryLoudness\":\"-11\",\"MaximumShortTermLoudness\":\"-14.3\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"LoudnessRange\\\":2.9,\\\"LoudnessRangeEnd\\\":-15.5,\\\"Metrics\\\":{\\\"RMSStats\\\":{\\\"LRDiff\\\":3.436,\\\"LTotal\\\":-18.905,\\\"Peak\\\":-5.285,\\\"RTotal\\\":-22.341},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.02,\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0.95},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-16.29,\\\"LoudR\\\":2.7,\\\"LoudRE\\\":-15.4,\\\"LoudRS\\\":-18.1,\\\"MaxMomLoud\\\":-10.97,\\\"MaxSTLoud\\\":-14.31}},\\\"Cutoff\\\":{\\\"Spkr200G\\\":0.07,\\\"FCenL\\\":2630.14,\\\"FCenR\\\":3090.16,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0},\\\"Loudness\\\":{\\\"Integrated\\\":-16.319},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.391}},\\\"Peak\\\":0.54325,\\\"Loudness\\\":-16.3,\\\"LoudnessRangeStart\\\":-18.4,\\\"MaximumMomentaryLoudness\\\":-11,\\\"MaximumShortTermLoudness\\\":-14.3,\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.1431\",\"brightness_mean\":\"150.3145\",\"diff_overexposure_ratio\":\"0.0105\",\"loudness\":\"-16.3\",\"overexposure_ratio_mean\":\"0.0381\",\"peak\":\"0.54325\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778716264}\",\"sr_score\":\"1.000\",\"std_brightness\":\"4.3034\",\"vq_score\":\"57.04\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=736634b1&x-expires=1779087600&x-signature=5glMTjQDd%2FbngTkRxnA%2F2whmBrg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6b76d3a0&x-expires=1779087600&x-signature=P2LOGCp4UR0VKRn3mj%2FmvfLWECU%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=2ab64709&x-expires=1779087600&x-signature=Ywd8%2Bs55OSCjSCNJsvc51VKErVM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=736634b1&x-expires=1779087600&x-signature=5glMTjQDd%2FbngTkRxnA%2F2whmBrg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6b76d3a0&x-expires=1779087600&x-signature=P2LOGCp4UR0VKRn3mj%2FmvfLWECU%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocqBQ73DIpQEBupEILOFYDAVBRFpPSffzgAD2E~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=2ab64709&x-expires=1779087600&x-signature=Ywd8%2Bs55OSCjSCNJsvc51VKErVM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 460
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/7082cd3892d659c4fab8382ee793998d/6a30f93d/video/tos/useast5/tos-useast5-v-0068-tx/8eeabe4a98ea4adf8c02fa3e8df3493a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=6768&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M3E1aXc5cjVqOzMzZzczNEBpM3E1aXc5cjVqOzMzZzczNEAvcWxuMmRzby9hLS1kMS9zYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594429,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7639528333131255000,
                                      "is_auto_generated": true,
                                      "sub_id": -1692587135,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7639528333131255000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/7082cd3892d659c4fab8382ee793998d/6a30f93d/video/tos/useast5/tos-useast5-v-0068-tx/8eeabe4a98ea4adf8c02fa3e8df3493a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=6768&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M3E1aXc5cjVqOzMzZzczNEBpM3E1aXc5cjVqOzMzZzczNEAvcWxuMmRzby9hLS1kMS9zYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/e8a46d31ce2b9e7c1c3006f8eb6d5c6f/6a30f93d/video/tos/useast5/tos-useast5-v-0068-tx/8eeabe4a98ea4adf8c02fa3e8df3493a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=6768&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M3E1aXc5cjVqOzMzZzczNEBpM3E1aXc5cjVqOzMzZzczNEAvcWxuMmRzby9hLS1kMS9zYSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmYxMzlmM2ZjNTIxZGJkMTgwMDY0MjU1ZTVkZDRmMTE2&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                      ],
                                      "caption_length": 3046,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10012\",\"rec_audio_effect\":\"1\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010308\\\",\\\"tag_02040437\\\",\\\"tag_03010300\\\",\\\"tag_01010226\\\"],\\\"TRS\\\":[0.82,0.1,0.09,0.07,0.06],\\\"TACM\\\":[0.58],\\\"DRR\\\":18.1,\\\"RCD\\\":[-1.9],\\\"MP\\\":-5.28,\\\"BE\\\":[70,11132.7],\\\"OCF\\\":[-22.6928,-14.7296,-8.8689,-4.6778,-4.4018,-11.7461,-12.6064,-22.6792,-32.7099,-49.7159],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.3}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d82gr2vog65tqfo2tn20",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/100b9c6d0753b5d49d2abca34e54acf3/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/cc539c489df2247582666c33134b891f/6a09c09d/video/tos/useast5/tos-useast5-ve-0068c001-tx/og8BSILEDA42QBD3gEfyAjQuuFpftqDEi7ERqF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1821&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZmU5ODU4OGg6OTs6NDw5OkBpM3E1aXc5cjVqOzMzZzczNEA2LTRiXjFjNTUxYjVjX2E0YSMvcWxuMmRzby9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=77d6b9f187e846878ef545a2e5760b9c&is_play_url=1&item_id=7639528062975053069&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmVhYWMyYTA1ZDE3OGExY2ZhYjU4YzNlM2Y3YjU1Mjdj&source=PUBLISH&video_id=v12044gd0000d82gr2vog65tqfo2tn20"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d82gr2vog65tqfo2tn20_h264_720p_1865655",
                                  "data_size": 47955516,
                                  "file_hash": "6576f8a3908f06de8059d9fe27073fe5",
                                  "file_cs": "c:0-170032-917a",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7639528062975053069",
                                "comment_count": 339,
                                "digg_count": 19880,
                                "download_count": 36,
                                "play_count": 302447,
                                "share_count": 2232,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 2,
                                "collect_count": 389,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7639528062975053069",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "1"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7639528062975053069?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7639528062975053069&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7639528062975053069",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 31,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"#teabythesea\",\"\",\"SEVEN YEARS!!!!   7 YEARS!\"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 0,
                                  "tag_id": "1"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "chase stokes and kelsea ballerini 2026",
                                        "word_id": "2506682549914510804",
                                        "penetrate_info": "{\"visualize_sug_product_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"lvl1_category_id\":\"\",\"ecom_intent\":\"0\",\"video_id\":\"\",\"direct_to_tako\":\"\",\"is_time_sensitive\":\"0\",\"generate_time\":\"0\",\"hot_level\":\"0\",\"words_type_to_dmp_list\":\"\",\"sug_user_id\":\"\",\"poi_card_id_list\":\"\",\"word_type_version_map\":\"\",\"predict_ctr_score\":0.028536814179561252,\"is_ramandan_promotion\":\"\",\"word_type_list\":\"\",\"ecom_trigger_info_map\":\"\",\"lvl3_cate_list\":\"\",\"recall_reason\":\"shortterm_manual_attribute_recall,video_sar_top_counter_passive_recall,global_video_top_counter_recall,video_top_counter_recall\",\"ecom_trigger_info\":\"\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{\"is_sensitive_intent\":1}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7639528062975053000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 205631,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "<h id=\"1\">#teabythesea</h><br><br>SEVEN YEARS!!!!   7 YEARS!",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "1"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0011208575386761979}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "chase stokes and kelsea ballerini 2026"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "2506682549914510804"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7639528133133110000,
                                "id_str": "7639528133133110030",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639528178599332622.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639528178599332622.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 205,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7639528062975053069,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d82gsqnog65illsu3omg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7639528133133110030",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 205,
                                "shoot_duration": 205,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 205,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 205.662,
                                  "shoot_duration_precision": 205.662,
                                  "audition_duration_precision": 205.662,
                                  "video_duration_precision": 205.662
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778716267,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7639528133133110000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501262679714345, \\\"1\\\": 4.501274966445517, \\\"0\\\": 4.501238531621605}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -1.9097091799065396e-05, \\\"2\\\": -0.00013356474086623072, \\\"-1\\\": -2.4248674291220928e-05}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0002968604523306782, \\\"2\\\": 0.0006060498072687343, \\\"-1\\\": 2.9107127305046327e-06}\",\"PACK_VOD:audio_meta\":\"{\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":18.2,\\\"rcd\\\":[-1.9],\\\"mp\\\":-5.28,\\\"be\\\":[64.6,10551.3],\\\"ocf\\\":[-22.1864,-14.5892,-8.7583,-4.5968,-4.5092,-11.8217,-12.7125,-22.7927,-33.1016,-51.1933],\\\"il\\\":-16.5}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":18.2,\\\"rcd\\\":[-1.8],\\\"mp\\\":-3.99,\\\"be\\\":[64.6,10427.5],\\\"ocf\\\":[-21.8489,-14.5579,-8.7861,-4.6156,-4.5259,-11.7548,-12.5613,-22.7383,-33.2532,-51.2328],\\\"il\\\":-16.5}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":18.1,\\\"rcd\\\":[-1.9],\\\"mp\\\":-5.28,\\\"be\\\":[70,11132.7],\\\"ocf\\\":[-22.6928,-14.7296,-8.8689,-4.6778,-4.4018,-11.7461,-12.6064,-22.6792,-32.7099,-49.7159],\\\"il\\\":-16.3},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010308\\\",\\\"tag_02040437\\\",\\\"tag_03010300\\\",\\\"tag_01010226\\\"],\\\"trs\\\":[0.82,0.1,0.09,0.07,0.06]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10012\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7639090537349270797",
                            "caption": "#teabythesea I know all the girlies are #teamalix but I hate the way she’s handled this Alex Cooper controversy.",
                            "createdAt": "2026-05-12T19:33:20.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7639090537349270797",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogBzAgbABicT5E3FIqiB5IfbI3XYgfIxDSDBQR~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=bf130610&x-expires=1779087600&x-signature=wjk7f%2FNrN16VWhgH%2FHZVom7T2YU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 236067,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 782794,
                              "likes": 35755,
                              "comments": 611,
                              "shares": 1833,
                              "saves": 812
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/5268cef09f387a6531f4c64c0bc759c8/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0uIg3j5BEQTbD5fAQiQSLRBbBf1q0DIipgxEA/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1829&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OjczOWYzOjk8Ojc3O2ZoO0BpanU0dnM5cjNxOzMzZzczNEAtMS9hYmIxNV8xMGM2Li1iYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/5b69eaab10f9e49e0b8ecf3ad67c8b78/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7639090647165865000,
                                "id_str": "7639090647165864717",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639090699555965709.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639090699555965709.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 236,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7639090537349270797,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d81o11nog65l3fd4cab0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7639090647165864717",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 236,
                                "shoot_duration": 236,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 236,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 236.09468,
                                  "shoot_duration_precision": 236.09468,
                                  "audition_duration_precision": 236.09468,
                                  "video_duration_precision": 236.09468
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778614407,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7639090647165865000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/5b69eaab10f9e49e0b8ecf3ad67c8b78/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/14187b638f859fca4f5232017b884189/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a4df85d7f0d42f09d9877b0256301e6&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI3ZDUxYmJiMjdjNDc3ODU0OWQyNmExZDczNmVkMTQz&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d81nv0vog65pss910rdg_h264_720p_2037352",
                                  "data_size": 60118953,
                                  "file_hash": "16822a0606ae2642ae79ed318700a33d",
                                  "file_cs": "c:0-194432-fb88",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/ogBzAgbABicT5E3FIqiB5IfbI3XYgfIxDSDBQR",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogBzAgbABicT5E3FIqiB5IfbI3XYgfIxDSDBQR~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=bf130610&x-expires=1779087600&x-signature=wjk7f%2FNrN16VWhgH%2FHZVom7T2YU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogBzAgbABicT5E3FIqiB5IfbI3XYgfIxDSDBQR~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=48061cea&x-expires=1779087600&x-signature=5R5%2BSdMlK6o45llvc1jBJMFd8Mg%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogBzAgbABicT5E3FIqiB5IfbI3XYgfIxDSDBQR~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=0a2fdb82&x-expires=1779087600&x-signature=JvvxyhbFluOhSNcz75vNkTdZUYo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocQHD2ABfAQa8eAfFDjUiZC2AEHkFIsgzvlQaz",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocQHD2ABfAQa8eAfFDjUiZC2AEHkFIsgzvlQaz~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=77a12652&x-expires=1779087600&x-signature=9O0kXxve63huvEmEz4M%2BBTaiYa0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocQHD2ABfAQa8eAfFDjUiZC2AEHkFIsgzvlQaz~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=0f8f2688&x-expires=1779087600&x-signature=3Xq8ynHotpeH%2FSixlipKV080qYE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocQHD2ABfAQa8eAfFDjUiZC2AEHkFIsgzvlQaz~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=3a2f8941&x-expires=1779087600&x-signature=YsS6zJEqbbFKsCd3urLd8LLY1D0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oMwEQAgZQzzIk9BC2HPDfH2jeDAFE2vActfUQi",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oMwEQAgZQzzIk9BC2HPDfH2jeDAFE2vActfUQi~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=033c6671&x-expires=1779087600&x-signature=SnS4dta%2FXilagGbT3Ls9yr92ygg%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oMwEQAgZQzzIk9BC2HPDfH2jeDAFE2vActfUQi~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=aa89e436&x-expires=1779087600&x-signature=BRz28L4ZnGUXXNy2lOzOrLCA1M8%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oMwEQAgZQzzIk9BC2HPDfH2jeDAFE2vActfUQi~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=e3fe73c8&x-expires=1779087600&x-signature=WRrCLkDuvDvXr8hVSK2zagmvXl8%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/5268cef09f387a6531f4c64c0bc759c8/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0uIg3j5BEQTbD5fAQiQSLRBbBf1q0DIipgxEA/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1829&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OjczOWYzOjk8Ojc3O2ZoO0BpanU0dnM5cjNxOzMzZzczNEAtMS9hYmIxNV8xMGM2Li1iYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/1acb214e8cd0429a45659b54e70df208/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0uIg3j5BEQTbD5fAQiQSLRBbBf1q0DIipgxEA/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1829&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OjczOWYzOjk8Ojc3O2ZoO0BpanU0dnM5cjNxOzMzZzczNEAtMS9hYmIxNV8xMGM2Li1iYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d81nv0vog65pss910rdg&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=e80e1c98f43447b98647e0ecd6204407&item_id=7639090537349270797&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmFhZTU2NTJmNzBjNGQxYzVhZWJkNTY4N2RlNTU1YmI1&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 55284661,
                                  "file_cs": "c:0-194432-fb88",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1957998,
                                    "play_addr": {
                                      "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/3493b0eb43efdcdcf679233a7d26bd57/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/oEcIEG8biiA5vAQgERhBSBIQ3bj3f5qDrDxfBU/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1912&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aWk6NDo1OTtlPDU0aGY8ZEBpanU0dnM5cjNxOzMzZzczNEBiYGE0XjVeNTMxLl42Xl5fYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/ddc9c17a8c893285aec92090542974bd/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/oEcIEG8biiA5vAQgERhBSBIQ3bj3f5qDrDxfBU/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1912&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aWk6NDo1OTtlPDU0aGY8ZEBpanU0dnM5cjNxOzMzZzczNEBiYGE0XjVeNTMxLl42Xl5fYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=baa9ac9ea112496b88a682a771d7cfef&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmZlOGY5ZWY4ZWU4ZmY1MjlmNzFkYTlmMDM3NWYwMDYx&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc1_1080p_1957998",
                                      "data_size": 57777351,
                                      "file_hash": "69c610ebf06f1ca54edba0515d1898ea",
                                      "file_cs": "c:0-195650-dd1a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 555035}, {\\\"time\\\": 2, \\\"offset\\\": 710076}, {\\\"time\\\": 3, \\\"offset\\\": 910378}, {\\\"time\\\": 4, \\\"offset\\\": 1120280}, {\\\"time\\\": 5, \\\"offset\\\": 1310222}, {\\\"time\\\": 10, \\\"offset\\\": 2423697}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.056, \\\"v960\\\": 98.205, \\\"v864\\\": 98.757, \\\"v720\\\": 99.45}, \\\"ori\\\": {\\\"v1080\\\": 90.434, \\\"v960\\\": 92.408, \\\"v864\\\": 93.595, \\\"v720\\\": 95.539}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96056,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 1043066,
                                    "play_addr": {
                                      "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/b69487f4c6a1b247c733e2048670bbce/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c003-tx/oMfjQIez2zDeI6iH2JCbIjQGAgFUHUAvBgDktE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1018&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzU5PDNoOWQ8NWQzNzw5ZkBpanU0dnM5cjNxOzMzZzczNEBgYl80YjE0NTQxLjI2MDVgYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/7e48e162d7d21c299aabc4ce03d060f4/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c003-tx/oMfjQIez2zDeI6iH2JCbIjQGAgFUHUAvBgDktE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1018&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzU5PDNoOWQ8NWQzNzw5ZkBpanU0dnM5cjNxOzMzZzczNEBgYl80YjE0NTQxLjI2MDVgYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=cc863994501a42798a764ee079b6e2cd&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM5ODc1NjczZjJmNWJmNzI1NTQ5NWM5MTFlYjljY2Y1&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc1_720p_1043066",
                                      "data_size": 30779197,
                                      "file_hash": "ce8a6f0842f8741f6d01ce27313e2b24",
                                      "file_cs": "c:0-195661-921d",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 390875}, {\\\"time\\\": 2, \\\"offset\\\": 453376}, {\\\"time\\\": 3, \\\"offset\\\": 554680}, {\\\"time\\\": 4, \\\"offset\\\": 661493}, {\\\"time\\\": 5, \\\"offset\\\": 752827}, {\\\"time\\\": 10, \\\"offset\\\": 1310263}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 90.519, \\\"v960\\\": 93.215, \\\"v864\\\": 94.754, \\\"v720\\\": 97.222}, \\\"ori\\\": {\\\"v1080\\\": 80.109, \\\"v960\\\": 83.85, \\\"v864\\\": 86.487, \\\"v720\\\": 90.672}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.187, \\\"sr20\\\": 94.071}}\",\"audio_bit_rate\":96056,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":21.4,\\\"RCD\\\":[-2.3],\\\"MP\\\":-5.68,\\\"BE\\\":[59.2,10470.5],\\\"OCF\\\":[-21.0808,-14.584,-6.8801,-3.6539,-5.6327,-14.7321,-19.1163,-27.8631,-35.6601,-51.9599],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-23.1}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 697944,
                                    "play_addr": {
                                      "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/90d78a65f2445f3d1870c5074e21fd44/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/okDHEzfBAezjAQQlUnIAigF7IgHHkvftC2g2DS/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=681&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGZoNzM4O2loNTk7ZTg7aUBpanU0dnM5cjNxOzMzZzczNEAyXl9jNGJiNTIxLjY2X2IvYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/15bc26b23517df27b4e9a4522a103b50/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/okDHEzfBAezjAQQlUnIAigF7IgHHkvftC2g2DS/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=681&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGZoNzM4O2loNTk7ZTg7aUBpanU0dnM5cjNxOzMzZzczNEAyXl9jNGJiNTIxLjY2X2IvYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2fe8b59b9816425e8fe8e570f4beac51&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjBmZGVkNWZjZjI1NjBlNzljNmNkMjc4Yjg2MWE4MjU1&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc2_540p_697944",
                                      "data_size": 20595221,
                                      "file_hash": "b96c2b5eb3c0c5de6f7cfe28a866a6ae",
                                      "file_cs": "c:0-196139-c5e1",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 366008}, {\\\"time\\\": 2, \\\"offset\\\": 425370}, {\\\"time\\\": 3, \\\"offset\\\": 479399}, {\\\"time\\\": 4, \\\"offset\\\": 564403}, {\\\"time\\\": 5, \\\"offset\\\": 638462}, {\\\"time\\\": 10, \\\"offset\\\": 1065738}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 87.687, \\\"v960\\\": 91.393, \\\"v864\\\": 93.597, \\\"v720\\\": 96.439}, \\\"ori\\\": {\\\"v1080\\\": 74.509, \\\"v960\\\": 79.054, \\\"v864\\\": 82.449, \\\"v720\\\": 87.016}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 0, 17, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.0, 0.508, 1.788, 0.511, 0.759, 1.786, 0.508, 0.747, 1.747, 0.467, 0.805, 1.806, 1.788], \\\"dec2play\\\": [83534, 83534, 83534, 82109, 75177, 82398, 81494, 75504, 82109, 81323, 74261, 82036, 80944, 73902, 71775]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 83.189, \\\"sr20\\\": 91.243}}\",\"audio_bit_rate\":64037}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":20.7,\\\"RCD\\\":[-2.2],\\\"MP\\\":-5,\\\"BE\\\":[59.2,10422.1],\\\"OCF\\\":[-20.6671,-14.5536,-7.0161,-3.632,-5.5913,-14.6708,-19.1113,-27.833,-35.7851,-51.7919],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-23.1}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 674275,
                                    "play_addr": {
                                      "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/094fb825407463b50850e925d61e90c6/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAQeDUgIbCvlhAjizQIAYFEHeiDz2Bghzf2DJk/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=658&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTg2OTZmOzNmZGloNDo1Z0BpanU0dnM5cjNxOzMzZzczNEBfMzAwNTFiXjAxXzFiYzMtYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/ec7bd48ec2ae8c3a8a2a812978f7d24c/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAQeDUgIbCvlhAjizQIAYFEHeiDz2Bghzf2DJk/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=658&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTg2OTZmOzNmZGloNDo1Z0BpanU0dnM5cjNxOzMzZzczNEBfMzAwNTFiXjAxXzFiYzMtYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=0d62f7e14ebf4a3ca0e84c83363365b2&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmMwNzExYTEwNzYyMTkxMjkwNTZjNTMwOTQwMDAxOTU5&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc1_540p_674275",
                                      "data_size": 19896768,
                                      "file_hash": "09d40001b31288ead75eabb46c264bc4",
                                      "file_cs": "c:0-195651-6651",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 332288}, {\\\"time\\\": 2, \\\"offset\\\": 382791}, {\\\"time\\\": 3, \\\"offset\\\": 454897}, {\\\"time\\\": 4, \\\"offset\\\": 527854}, {\\\"time\\\": 5, \\\"offset\\\": 593000}, {\\\"time\\\": 10, \\\"offset\\\": 981793}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 82.534, \\\"v960\\\": 86.454, \\\"v864\\\": 89.637, \\\"v720\\\": 93.268}, \\\"ori\\\": {\\\"v1080\\\": 70.914, \\\"v960\\\": 75.45, \\\"v864\\\": 78.763, \\\"v720\\\": 84.233}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 79.62, \\\"sr20\\\": 87.673}}\",\"audio_bit_rate\":64037,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\",\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":20.7,\\\"RCD\\\":[-2.2],\\\"MP\\\":-5,\\\"BE\\\":[59.2,10422.1],\\\"OCF\\\":[-20.6671,-14.5536,-7.0161,-3.632,-5.5913,-14.6708,-19.1113,-27.833,-35.7851,-51.7919],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-23.1}}\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 413233,
                                    "play_addr": {
                                      "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/47de45e81e995c88d341a2bd277e94e2/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/okIDBbgAfAICgfQIQBRqxJBbiiDSiEoQ53LEB5/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=403&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzZlaWg2aDk4ODdoZmQ2PEBpanU0dnM5cjNxOzMzZzczNEBeYi00YmM2Xi0xNDQ1MF5jYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/b6d8d155c60ae242d4edab613a898211/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/okIDBbgAfAICgfQIQBRqxJBbiiDSiEoQ53LEB5/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=403&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzZlaWg2aDk4ODdoZmQ2PEBpanU0dnM5cjNxOzMzZzczNEBeYi00YmM2Xi0xNDQ1MF5jYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f9a33a8c7e744505a69ef3ee7f0be3a8&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjA1N2QwOTUxZGU3NWFmYmUxMDljYTk5MDgyMWYwODA2&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc1_540p_413233",
                                      "data_size": 12193862,
                                      "file_hash": "35ba6e53a39f81cd1a2b904172911820",
                                      "file_cs": "c:0-195667-7c81",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 286054}, {\\\"time\\\": 2, \\\"offset\\\": 312455}, {\\\"time\\\": 3, \\\"offset\\\": 356870}, {\\\"time\\\": 4, \\\"offset\\\": 399050}, {\\\"time\\\": 5, \\\"offset\\\": 436272}, {\\\"time\\\": 10, \\\"offset\\\": 673716}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 75.586, \\\"v960\\\": 79.923, \\\"v864\\\": 83.066, \\\"v720\\\": 87.649}, \\\"ori\\\": {\\\"v1080\\\": 63.798, \\\"v960\\\": 68.933, \\\"v864\\\": 72.676, \\\"v720\\\": 78.869}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24022,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"0\",\"srqa3_0_ori\":\"0\"}"
                                  }
                                ],
                                "duration": 236067,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/5b69eaab10f9e49e0b8ecf3ad67c8b78/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/14187b638f859fca4f5232017b884189/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a4df85d7f0d42f09d9877b0256301e6&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI3ZDUxYmJiMjdjNDc3ODU0OWQyNmExZDczNmVkMTQz&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d81nv0vog65pss910rdg_h264_720p_2037352",
                                  "data_size": 60118953,
                                  "file_hash": "16822a0606ae2642ae79ed318700a33d",
                                  "file_cs": "c:0-194432-fb88",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=bf2b0a97&x-expires=1779087600&x-signature=YzaS%2FupL0l%2BqNtvrVI01%2B3Wv8d4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6ad3268e&x-expires=1779087600&x-signature=ilS7Z7HQNNvcBW32ylaNkuJfWac%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=538f58e6&x-expires=1779087600&x-signature=OQnVg6EDL6zLEhdscAmrGaQD04E%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 2,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 236,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 236.06667,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/o4ifOxnqAA4QDbBDi5x3kRgBSbDfImI7E5bgIB",
                                      "tos-useast5-p-0068-tx/os1DbIgIiBBAASai3zBxEqgf5o5DREDPIMObfQ",
                                      "tos-useast5-p-0068-tx/oYIDIDDVRgIAAaBq5iA0fbCxbf5EBibgSQ3OBv",
                                      "tos-useast5-p-0068-tx/o8xDbDfi6gAOqBbS5IBfRQAVpxIZiIE6B5Y3gD",
                                      "tos-useast5-p-0068-tx/owsISIgcgAfvD55bRifx3qBBb2ADbiEQO4IBDD",
                                      "tos-useast5-p-0068-tx/okIEDiq53BqbDIBbIfxRTSDgi6gxbA5BQ4fARO",
                                      "tos-useast5-p-0068-tx/oEkgB23j2QzQIAiHEUvASeDzFDfHACcCoQeHNL",
                                      "tos-useast5-p-0068-tx/oASQAbbRbI5IEgxDiq3gFfB5iBfDABOt0I2D58",
                                      "tos-useast5-p-0068-tx/oEvCeBHeIHeULHAng8csjAtGAI8Ik2OEnhBdg8",
                                      "tos-useast5-p-0068-tx/oEBbxBbfRqiRcSD4BIBDQfi3sOkAgA5I5ZgkIE"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4ifOxnqAA4QDbBDi5x3kRgBSbDfImI7E5bgIB~tplv-noop.image?dr=12525&refresh_token=dd486f58&x-expires=1779024060&x-signature=ATTwJVNrddFaWMHKC6%2BhzPaTQxI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/os1DbIgIiBBAASai3zBxEqgf5o5DREDPIMObfQ~tplv-noop.image?dr=12525&refresh_token=d6f2df3f&x-expires=1779024060&x-signature=6KM%2FJh374PFR1Po1Dsqix0RHC00%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYIDIDDVRgIAAaBq5iA0fbCxbf5EBibgSQ3OBv~tplv-noop.image?dr=12525&refresh_token=1282e3af&x-expires=1779024060&x-signature=diFnPQjR1TWyAQDclzcjX4e2KLU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8xDbDfi6gAOqBbS5IBfRQAVpxIZiIE6B5Y3gD~tplv-noop.image?dr=12525&refresh_token=06cb2f12&x-expires=1779024060&x-signature=Nt7GZoasKR%2B%2FooirmFqe8zRvtC8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owsISIgcgAfvD55bRifx3qBBb2ADbiEQO4IBDD~tplv-noop.image?dr=12525&refresh_token=ca4d30aa&x-expires=1779024060&x-signature=Hpz08VRfkzUfIkQdXcdjg973xW8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okIEDiq53BqbDIBbIfxRTSDgi6gxbA5BQ4fARO~tplv-noop.image?dr=12525&refresh_token=42b1b9fa&x-expires=1779024060&x-signature=hVMF9vEuvUVPonA2BmlYeIKPfQ8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEkgB23j2QzQIAiHEUvASeDzFDfHACcCoQeHNL~tplv-noop.image?dr=12525&refresh_token=88cd924e&x-expires=1779024060&x-signature=Ab9GiADQWT248d%2BizT1Tl0RKDL4%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oASQAbbRbI5IEgxDiq3gFfB5iBfDABOt0I2D58~tplv-noop.image?dr=12525&refresh_token=37b72509&x-expires=1779024060&x-signature=yzEvjgpU6IIhEhBnxzlR6BPy8cI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEvCeBHeIHeULHAng8csjAtGAI8Ik2OEnhBdg8~tplv-noop.image?dr=12525&refresh_token=0d8bf01f&x-expires=1779024060&x-signature=86lweyoDzOonEdg85F4OjG%2B4f7g%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEBbxBbfRqiRcSD4BIBDQfi3sOkAgA5I5ZgkIE~tplv-noop.image?dr=12525&refresh_token=a4242a61&x-expires=1779024060&x-signature=cGqK67NDgW%2FPiqMeQHyniWbq5qI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d81nv0vog65pss910rdg"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/cf164c1dc254780e906f4e6998cc6fe4/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/oELiHQfDkQzZjgUIzFn2QB2vHCJAfEeXFgrDIA/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=752&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDloOmdoZWY0Zmk7N2VoOkBpanU0dnM5cjNxOzMzZzczNEA0LWBjM15gNTIxNjFgM2A0YSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/9801f4d572b73f1b84b56a24c779e11d/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c004-tx/oELiHQfDkQzZjgUIzFn2QB2vHCJAfEeXFgrDIA/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=752&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDloOmdoZWY0Zmk7N2VoOkBpanU0dnM5cjNxOzMzZzczNEA0LWBjM15gNTIxNjFgM2A0YSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=77ce6bc4489f4c518ccbae6df7ce067a&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjdiMzhjOWI5ODkwNTY4MTk2MjQzNjZhM2MwMjEyYmUw&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d81nv0vog65pss910rdg_bytevc1_540p_770472",
                                  "data_size": 22735391,
                                  "file_hash": "8d5228625beb1c42e4e95de85ebaf429",
                                  "file_cs": "c:0-195661-d9b5",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"4.5\",\"LoudnessRangeEnd\":\"-21.1\",\"LoudnessRangeStart\":\"-25.6\",\"MaximumMomentaryLoudness\":\"-16.1\",\"MaximumShortTermLoudness\":\"-20.3\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"LoudnessRange\\\":4.5,\\\"LoudnessRangeEnd\\\":-21.1,\\\"MaximumShortTermLoudness\\\":-20.3,\\\"Metrics\\\":{\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.291},\\\"RMSStats\\\":{\\\"LRDiff\\\":3.522,\\\"LTotal\\\":-24.701,\\\"Peak\\\":-5.671,\\\"RTotal\\\":-28.223},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0,\\\"SingingRatio\\\":0.17,\\\"SpeechRatio\\\":0.81},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"LoudRE\\\":-21.1,\\\"LoudRS\\\":-25.6,\\\"MaxMomLoud\\\":-16.12,\\\"MaxSTLoud\\\":-20.21,\\\"Loud\\\":-22.95,\\\"LoudR\\\":4.5}},\\\"Cutoff\\\":{\\\"FCenL\\\":2375.31,\\\"FCenR\\\":2828.48,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.08,\\\"Spkr200G\\\":0.19},\\\"Loudness\\\":{\\\"Integrated\\\":-22.971}},\\\"Peak\\\":0.5188,\\\"Loudness\\\":-23,\\\"LoudnessRangeStart\\\":-25.6,\\\"MaximumMomentaryLoudness\\\":-16.1,\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.0508\",\"brightness_mean\":\"149.4726\",\"diff_overexposure_ratio\":\"0.0126\",\"loudness\":\"-23\",\"overexposure_ratio_mean\":\"0.0135\",\"peak\":\"0.5188\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778614402}\",\"sr_score\":\"1.000\",\"std_brightness\":\"7.4162\",\"vq_score\":\"64.62\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=bf2b0a97&x-expires=1779087600&x-signature=YzaS%2FupL0l%2BqNtvrVI01%2B3Wv8d4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6ad3268e&x-expires=1779087600&x-signature=ilS7Z7HQNNvcBW32ylaNkuJfWac%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=538f58e6&x-expires=1779087600&x-signature=OQnVg6EDL6zLEhdscAmrGaQD04E%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=bf2b0a97&x-expires=1779087600&x-signature=YzaS%2FupL0l%2BqNtvrVI01%2B3Wv8d4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6ad3268e&x-expires=1779087600&x-signature=ilS7Z7HQNNvcBW32ylaNkuJfWac%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4AAbBi3MAB3Rcgbf5TQikDDf5SBYqIEgIIBx0~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=538f58e6&x-expires=1779087600&x-signature=OQnVg6EDL6zLEhdscAmrGaQD04E%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 340
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/20c62c3c50d1464ff30c1580c73d12bf/6a30f95c/video/tos/useast5/tos-useast5-v-0068-tx/0816507ad6c24abe8c9a97ea5ba4b256/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=7866&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anU0dnM5cjNxOzMzZzczNEBpanU0dnM5cjNxOzMzZzczNEBhLTZwMmRzcy5hLS1kMS9zYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594460,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7639090956184243000,
                                      "is_auto_generated": true,
                                      "sub_id": 1838772711,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7639090956184243000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/20c62c3c50d1464ff30c1580c73d12bf/6a30f95c/video/tos/useast5/tos-useast5-v-0068-tx/0816507ad6c24abe8c9a97ea5ba4b256/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=7866&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anU0dnM5cjNxOzMzZzczNEBpanU0dnM5cjNxOzMzZzczNEBhLTZwMmRzcy5hLS1kMS9zYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/2ea450ab49af839f3ff43898c267ff3b/6a30f95c/video/tos/useast5/tos-useast5-v-0068-tx/0816507ad6c24abe8c9a97ea5ba4b256/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=7866&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anU0dnM5cjNxOzMzZzczNEBpanU0dnM5cjNxOzMzZzczNEBhLTZwMmRzcy5hLS1kMS9zYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjdjYmNmOTQ4YjNjZDlhMDRmOTk5ZGIxMWFjZTc4M2U3&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                      ],
                                      "caption_length": 3936,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10049\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03010301\\\",\\\"tag_01010226\\\"],\\\"TRS\\\":[0.79,0.08,0.08,0.07,0.06],\\\"TACM\\\":[0.86],\\\"DRR\\\":20.7,\\\"RCD\\\":[-2.3],\\\"MP\\\":-5.67,\\\"BE\\\":[59.2,10572.8],\\\"OCF\\\":[-21.1867,-14.7231,-7.0355,-3.5942,-5.5891,-14.7069,-19.2417,-28.1162,-35.5534,-52.028],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-23}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d81nv0vog65pss910rdg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/5b69eaab10f9e49e0b8ecf3ad67c8b78/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/14187b638f859fca4f5232017b884189/6a09c0bc/video/tos/useast5/tos-useast5-ve-0068c001-tx/o0cfISb5BBAYgx5tV3i5DRqQUEQgbBDAEIfgDi/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1989&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTQ2ODM6O2czNWdpZztnZEBpanU0dnM5cjNxOzMzZzczNEBiLTMvXzQ2NmMxLTQyYzEwYSNhLTZwMmRzcy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a4df85d7f0d42f09d9877b0256301e6&is_play_url=1&item_id=7639090537349270797&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI3ZDUxYmJiMjdjNDc3ODU0OWQyNmExZDczNmVkMTQz&source=PUBLISH&video_id=v12044gd0000d81nv0vog65pss910rdg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d81nv0vog65pss910rdg_h264_720p_2037352",
                                  "data_size": 60118953,
                                  "file_hash": "16822a0606ae2642ae79ed318700a33d",
                                  "file_cs": "c:0-194432-fb88",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7639090537349270797",
                                "comment_count": 611,
                                "digg_count": 35755,
                                "download_count": 43,
                                "play_count": 782794,
                                "share_count": 1833,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 10,
                                "collect_count": 812,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7639090537349270797",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "2"
                                },
                                {
                                  "start": 40,
                                  "end": 49,
                                  "type": 1,
                                  "hashtag_name": "teamalix",
                                  "hashtag_id": "16554393",
                                  "is_commerce": false,
                                  "tag_id": "119"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7639090537349270797?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7639090537349270797&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7639090537349270797",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 30,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"#teabythesea\",\"\",\"I know all the girlies are #teamalix but I hate the way she’s handled this Alex Cooper controversy.   \"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 0,
                                  "tag_id": "2"
                                },
                                {
                                  "start": 27,
                                  "end": 36,
                                  "type": 1,
                                  "hashtag_name": "teamalix",
                                  "hashtag_id": "16554393",
                                  "is_commerce": false,
                                  "line_idx": 2,
                                  "tag_id": "119"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "Alex cooper",
                                        "word_id": "708130098903362975",
                                        "penetrate_info": "{\"recall_reason\":\"video_sar_top_counter_passive_recall,shortterm_manual_attribute_recall\",\"direct_to_tako\":\"\",\"word_type_version_map\":\"\",\"poi_card_id_list\":\"\",\"is_time_sensitive\":\"0\",\"is_ramandan_promotion\":\"\",\"visualize_sug_product_id\":\"\",\"sug_user_id\":\"\",\"ecom_intent\":\"0\",\"generate_time\":\"1760600209\",\"lvl1_category_id\":\"\",\"hot_level\":\"0\",\"ecom_trigger_info_map\":\"\",\"word_type_list\":\"\",\"video_id\":\"\",\"words_type_to_dmp_list\":\"\",\"lvl3_cate_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"predict_ctr_score\":0.0031775908119128114,\"ecom_trigger_info\":\"\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{\"is_sensitive_intent\":1}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7639090537349271000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 236033,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "<h id=\"2\">#teabythesea</h><br><br>I know all the girlies are <h id=\"119\">#teamalix</h> but I hate the way she’s handled this Alex Cooper controversy.   ",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "2"
                                  },
                                  {
                                    "type": 1,
                                    "hashtag_name": "teamalix",
                                    "hashtag_id": "16554393",
                                    "is_commerce": false,
                                    "tag_id": "119"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0007805374083092103}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "Alex cooper"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "708130098903362975"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7639090647165865000,
                                "id_str": "7639090647165864717",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639090699555965709.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7639090699555965709.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 236,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7639090537349270797,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d81o11nog65l3fd4cab0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7639090647165864717",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 236,
                                "shoot_duration": 236,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 236,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 236.09468,
                                  "shoot_duration_precision": 236.09468,
                                  "audition_duration_precision": 236.09468,
                                  "video_duration_precision": 236.09468
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778614407,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7639090647165865000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -0.00028850748316034937, \\\"2\\\": -0.0005930184877847872, \\\"-1\\\": -0.0003550595633908408}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003377291507931308, \\\"2\\\": 0.0006425247823437315, \\\"-1\\\": 3.550128669232681e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":21.4,\\\"rcd\\\":[-2.3],\\\"mp\\\":-5.68,\\\"be\\\":[59.2,10470.5],\\\"ocf\\\":[-21.0808,-14.584,-6.8801,-3.6539,-5.6327,-14.7321,-19.1163,-27.8631,-35.6601,-51.9599],\\\"il\\\":-23.1}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":20.7,\\\"rcd\\\":[-2.2],\\\"mp\\\":-5,\\\"be\\\":[59.2,10422.1],\\\"ocf\\\":[-20.6671,-14.5536,-7.0161,-3.632,-5.5913,-14.6708,-19.1113,-27.833,-35.7851,-51.7919],\\\"il\\\":-23.1}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":20.7,\\\"rcd\\\":[-2.3],\\\"mp\\\":-5.67,\\\"be\\\":[59.2,10572.8],\\\"ocf\\\":[-21.1867,-14.7231,-7.0355,-3.5942,-5.5891,-14.7069,-19.2417,-28.1162,-35.5534,-52.028],\\\"il\\\":-23},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03010301\\\",\\\"tag_01010226\\\"],\\\"trs\\\":[0.79,0.08,0.08,0.07,0.06]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10049\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7638689091881635085",
                            "caption": "Before this gets leaked to the national media I’d like to just say “Champions get up”",
                            "createdAt": "2026-05-11T17:35:35.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7638689091881635085",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=fd26d0ba&x-expires=1779087600&x-signature=ofSkXKlmpT3sLIss1eO2ZCDqruo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 21185,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 2278916,
                              "likes": 168864,
                              "comments": 1819,
                              "shares": 21535,
                              "saves": 2676
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/d8b175f3f72cd953781e5ed4f5921154/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c002-tx/oMKoCYzDBAgeQGvTAILmCEIGfeAes3EIORFwCE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=584&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ODozM2c7O2RnZWg8ZmlmNkBpM3g6ank5cmk0OzMzZzczNEA0LzMvYmIzX2IxYmBgMy4yYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/4acffede4d88ab637ed08d1ae84cd02f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7638689181434252000,
                                "id_str": "7638689181434252045",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638689269829094157.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638689269829094157.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 21,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7638689091881635085,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d8116qvog65ln64s1mr0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7638689181434252045",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 21,
                                "shoot_duration": 21,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "matched_pgc_sound": {
                                  "author": "Elliott's",
                                  "title": "Everyday",
                                  "mixed_title": "original sound - stoolpresidente (Contains music from: Everyday - Elliott's)",
                                  "mixed_author": "Contains music from: \"Everyday\"",
                                  "music_release_info": {
                                    "is_new_release_song": false,
                                    "group_release_date": 0
                                  },
                                  "artist_infos": [],
                                  "uncert_artists": null,
                                  "cover_medium": {
                                    "uri": "tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8",
                                      "https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8"
                                    ],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  }
                                },
                                "matched_song": {
                                  "id": "7193887418691356674",
                                  "author": "Elliott's",
                                  "title": "Everyday",
                                  "h5_url": "",
                                  "cover_medium": {
                                    "uri": "tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8",
                                      "https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8"
                                    ],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "performers": null,
                                  "chorus_info": {
                                    "start_ms": 77760,
                                    "duration_ms": 22079
                                  },
                                  "full_duration": 164212
                                },
                                "video_duration": 21,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 21.238,
                                  "shoot_duration_precision": 21.238,
                                  "audition_duration_precision": 21.238,
                                  "video_duration_precision": 21.238
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778520942,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": false,
                                "mute_type": 0,
                                "sim_group_id_v3": 7274123099224672000,
                                "music_ugid": 7638689181434252000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": null,
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/4acffede4d88ab637ed08d1ae84cd02f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                    "https://v19.tiktokcdn-us.com/837cb086a3b4dce6b3dc3aa2877198c8/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=e7576cd7312e464db55db3b5e6648636&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjdmYTQ4NTgwMjQxNzc2Zjg0NDE1ODdlMjlmODY1MjQ4&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d8116fvog65v2g07cuj0_h264_720p_634186",
                                  "data_size": 1679404,
                                  "file_hash": "162ea80fdf3c409eb5c18a7748e55672",
                                  "file_cs": "c:0-18852-64c5",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=fd26d0ba&x-expires=1779087600&x-signature=ofSkXKlmpT3sLIss1eO2ZCDqruo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=42865b51&x-expires=1779087600&x-signature=9wqaRaDUxDeCCfVLxWFoYjP25Hw%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=3c9b806c&x-expires=1779087600&x-signature=xsRnFJzilE%2Bxpms76UQICB4%2FaMI%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=7b85d711&x-expires=1779087600&x-signature=0OLuAAdWF%2BRobGBeOTyKuBnsGRg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4956dcdb&x-expires=1779087600&x-signature=q1WZRRHbg2%2BqSVh7iLok8Gnvmi0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=a89220d4&x-expires=1779087600&x-signature=zLGCkOTgaq5CRDeWQikSTLXMA7A%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ogGFzLOlAAfegeCK2oTgAmICOlIRIjsDGEEeIA",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogGFzLOlAAfegeCK2oTgAmICOlIRIjsDGEEeIA~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=64d9292d&x-expires=1779087600&x-signature=wcowCyO8cVLUUYF1T9tlpHzy%2F%2B8%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogGFzLOlAAfegeCK2oTgAmICOlIRIjsDGEEeIA~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=3105a4d5&x-expires=1779087600&x-signature=YWINDOXB35hOC0hTl0ropb2z60o%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogGFzLOlAAfegeCK2oTgAmICOlIRIjsDGEEeIA~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=157f00f3&x-expires=1779087600&x-signature=WCR6kAVzekGBrrQF%2B95lREGcN5s%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/d8b175f3f72cd953781e5ed4f5921154/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c002-tx/oMKoCYzDBAgeQGvTAILmCEIGfeAes3EIORFwCE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=584&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ODozM2c7O2RnZWg8ZmlmNkBpM3g6ank5cmk0OzMzZzczNEA0LzMvYmIzX2IxYmBgMy4yYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                    "https://v19.tiktokcdn-us.com/87851b32774713887dc558e42384db8f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c002-tx/oMKoCYzDBAgeQGvTAILmCEIGfeAes3EIORFwCE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=584&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ODozM2c7O2RnZWg8ZmlmNkBpM3g6ank5cmk0OzMzZzczNEA0LzMvYmIzX2IxYmBgMy4yYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d8116fvog65v2g07cuj0&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=531c6fccc9ee4bedba68e8ed20602775&item_id=7638689091881635085&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmViMjUyYjllZmYyZjg0NzI2Y2E3ODQwNGYwYjJlNTk0&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 1585583,
                                  "file_cs": "c:0-18852-64c5",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 429836,
                                    "play_addr": {
                                      "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/636340ff58a6bf9c298f778b33c8673d/6a09bfe5/video/tos/useast5/tos-useast5-pve-0068-tx/osfmIK4CAzeGAIDVoBEcAyLVRsOCIEeFFeQmGF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=419&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWk3ODxpOWY8ZDQ5aDM7O0BpM3g6ank5cmk0OzMzZzczNEBiXjAvYF4xX2MxL2I0NWNjYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                        "https://v19.tiktokcdn-us.com/aa0a845f425199300a39c0c5f6bc7bf3/6a09bfe5/video/tos/useast5/tos-useast5-pve-0068-tx/osfmIK4CAzeGAIDVoBEcAyLVRsOCIEeFFeQmGF/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=419&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWk3ODxpOWY8ZDQ5aDM7O0BpM3g6ank5cmk0OzMzZzczNEBiXjAvYF4xX2MxL2I0NWNjYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f8f8807ee6214af9bc46afc92534afe6&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjE0NjAwZjg0MTM4NTk2NDBmMDRkZjcwZDA2NzlmOTVj&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d8116fvog65v2g07cuj0_bytevc1_720p_429836",
                                      "data_size": 1138261,
                                      "file_hash": "330ce2b0a8e70fcf80391803f2144629",
                                      "file_cs": "c:0-19193-3c26",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 92516}, {\\\"time\\\": 2, \\\"offset\\\": 123641}, {\\\"time\\\": 3, \\\"offset\\\": 176724}, {\\\"time\\\": 4, \\\"offset\\\": 248642}, {\\\"time\\\": 5, \\\"offset\\\": 292343}, {\\\"time\\\": 10, \\\"offset\\\": 533328}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 98.46, \\\"v960\\\": 98.667, \\\"v864\\\": 99.125, \\\"v720\\\": 99.352}, \\\"ori\\\": {\\\"v1080\\\": 91.282, \\\"v960\\\": 91.937, \\\"v864\\\": 92.865, \\\"v720\\\": 94.673}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"8bec57a6bf992b960a2117044811f27f\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 104.92, \\\"sr20\\\": 111.962}}\",\"audio_bit_rate\":96649,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": ""
                                  },
                                  {
                                    "gear_name": "adapt_540_1",
                                    "quality_type": 28,
                                    "bit_rate": 336392,
                                    "play_addr": {
                                      "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/ff183b8f6021df8998b0b70f4caf356c/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMeCGEm3oIIlR7OeFFCLEkzIEDGNKkAsfAeWTA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=328&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aThkaTk5OmRoZzw6Zzo4OEBpM3g6ank5cmk0OzMzZzczNEAvNGBgMmJgNV8xLmEyMmE1YSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                        "https://v19.tiktokcdn-us.com/22806fed3a06628a31c85d082be217f4/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMeCGEm3oIIlR7OeFFCLEkzIEDGNKkAsfAeWTA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=328&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aThkaTk5OmRoZzw6Zzo4OEBpM3g6ank5cmk0OzMzZzczNEAvNGBgMmJgNV8xLmEyMmE1YSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=85d5575dd7194dbe8ac7e656cfca752f&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI0ZWMyNjQxZTEzOTg5MmY1MzhiYTg2ZTNlMzA2MGFh&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d8116fvog65v2g07cuj0_bytevc1_540p_336392",
                                      "data_size": 890809,
                                      "file_hash": "f5b766a2097f5ab4eed84f15e03cd08e",
                                      "file_cs": "c:0-19193-4065",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 79351}, {\\\"time\\\": 2, \\\"offset\\\": 103456}, {\\\"time\\\": 3, \\\"offset\\\": 145726}, {\\\"time\\\": 4, \\\"offset\\\": 198850}, {\\\"time\\\": 5, \\\"offset\\\": 232424}, {\\\"time\\\": 10, \\\"offset\\\": 418883}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.407, \\\"v960\\\": 98.394, \\\"v864\\\": 99.106, \\\"v720\\\": 99.21}, \\\"ori\\\": {\\\"v1080\\\": 90.22, \\\"v960\\\": 91.194, \\\"v864\\\": 92.33, \\\"v720\\\": 92.748}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"8f00c8afb6a7869351c28d3b83f12ad5\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 106.17, \\\"sr20\\\": 114.946}}\",\"audio_bit_rate\":64490,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBIIAQBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.63],\\\"DRR\\\":10.3,\\\"RCD\\\":[0.3],\\\"MP\\\":0.93,\\\"BE\\\":[10.8,1534.2],\\\"OCF\\\":[-1.0757,-7.3893,-15.1837,-23.2133,-28.233,-34.7321,-43.6235,-51.2476,-60,-60],\\\"DO\\\":-0.0004,\\\"CTPS\\\":4,\\\"IL\\\":-12.8}}\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 318868,
                                    "play_addr": {
                                      "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/1d5015cce7434608ee9f79ef083e3099/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c003-tx/oEERACMQKLsmAFInDoefGgA4zIIneOeGECFPrj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=311&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWQzZ2c0PDY2ZTVmaThlM0BpM3g6ank5cmk0OzMzZzczNEBiYGAxNC9hXjExYS9jYy0wYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                        "https://v19.tiktokcdn-us.com/76913a584fad34a66e5383b75b420d4f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c003-tx/oEERACMQKLsmAFInDoefGgA4zIIneOeGECFPrj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=311&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWQzZ2c0PDY2ZTVmaThlM0BpM3g6ank5cmk0OzMzZzczNEBiYGAxNC9hXjExYS9jYy0wYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=300bf5ff2cd24b43a3d9217d4dc0cae6&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNlMWE4MDAxMzhlMjNmM2E5MTM5N2UxYWJlNzVkMGNk&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d8116fvog65v2g07cuj0_bytevc1_540p_318868",
                                      "data_size": 844404,
                                      "file_hash": "36f4d431182e89da442916770a4d145f",
                                      "file_cs": "c:0-19179-d9d3",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 70491}, {\\\"time\\\": 2, \\\"offset\\\": 96591}, {\\\"time\\\": 3, \\\"offset\\\": 132818}, {\\\"time\\\": 4, \\\"offset\\\": 177503}, {\\\"time\\\": 5, \\\"offset\\\": 211914}, {\\\"time\\\": 10, \\\"offset\\\": 388419}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 96.427, \\\"v960\\\": 98.145, \\\"v864\\\": 98.41, \\\"v720\\\": 99.09}, \\\"ori\\\": {\\\"v1080\\\": 89.316, \\\"v960\\\": 90.275, \\\"v864\\\": 91.242, \\\"v720\\\": 92.543}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"3a7fbed315b1fd3a3183370cd2c4ddaf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 104.69, \\\"sr20\\\": 113.467}}\",\"audio_bit_rate\":64490,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.63],\\\"DRR\\\":10.3,\\\"RCD\\\":[0.3],\\\"MP\\\":0.93,\\\"BE\\\":[10.8,1534.2],\\\"OCF\\\":[-1.0757,-7.3893,-15.1837,-23.2133,-28.233,-34.7321,-43.6235,-51.2476,-60,-60],\\\"DO\\\":-0.0004,\\\"CTPS\\\":4,\\\"IL\\\":-12.8}}\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 181984,
                                    "play_addr": {
                                      "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/ae98f4217cc480367f9bc6f32ff1d292/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c002-tx/oceCfKzInAGDHE7IgFLoAF8GAmITWOWPeECRse/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=177&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ozw5OTs1M2loZ2c2O2dlNEBpM3g6ank5cmk0OzMzZzczNEBhY2E1LS1hNmMxMjViMS1jYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                        "https://v19.tiktokcdn-us.com/a687e124d6a731e3bf266cb5be2cb5d6/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c002-tx/oceCfKzInAGDHE7IgFLoAF8GAmITWOWPeECRse/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=177&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Ozw5OTs1M2loZ2c2O2dlNEBpM3g6ank5cmk0OzMzZzczNEBhY2E1LS1hNmMxMjViMS1jYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f10b4de8835d4dfe9fd0020886d6f9d8&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjgwMmZlMmFiOGExMzBkOTdhMTBmMTM5ODkwZWQwMTlh&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d8116fvog65v2g07cuj0_bytevc1_540p_181984",
                                      "data_size": 481919,
                                      "file_hash": "fe8c454415e477d0d2396fbf55303580",
                                      "file_cs": "c:0-19195-ecbb",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 47893}, {\\\"time\\\": 2, \\\"offset\\\": 61005}, {\\\"time\\\": 3, \\\"offset\\\": 81362}, {\\\"time\\\": 4, \\\"offset\\\": 105308}, {\\\"time\\\": 5, \\\"offset\\\": 122763}, {\\\"time\\\": 10, \\\"offset\\\": 219772}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 91.15, \\\"v960\\\": 93.197, \\\"v864\\\": 94.369, \\\"v720\\\": 95.923}, \\\"ori\\\": {\\\"v1080\\\": 82.41, \\\"v960\\\": 84.225, \\\"v864\\\": 86.21, \\\"v720\\\": 88.04}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"a132049a6b98a3ec15f3060fcfb50392\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24280,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": ""
                                  }
                                ],
                                "duration": 21185,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/4acffede4d88ab637ed08d1ae84cd02f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                    "https://v19.tiktokcdn-us.com/837cb086a3b4dce6b3dc3aa2877198c8/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=e7576cd7312e464db55db3b5e6648636&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjdmYTQ4NTgwMjQxNzc2Zjg0NDE1ODdlMjlmODY1MjQ4&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d8116fvog65v2g07cuj0_h264_720p_634186",
                                  "data_size": 1679404,
                                  "file_hash": "162ea80fdf3c409eb5c18a7748e55672",
                                  "file_cs": "c:0-18852-64c5",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4956dcdb&x-expires=1779087600&x-signature=q1WZRRHbg2%2BqSVh7iLok8Gnvmi0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=7b85d711&x-expires=1779087600&x-signature=0OLuAAdWF%2BRobGBeOTyKuBnsGRg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0d176352&x-expires=1779087600&x-signature=jl14dD6QX3Vvjle%2FYvhruPiPCUw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 12.71919839002267,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "tags": null,
                                "big_thumbs": [],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/ff183b8f6021df8998b0b70f4caf356c/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMeCGEm3oIIlR7OeFFCLEkzIEDGNKkAsfAeWTA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=328&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aThkaTk5OmRoZzw6Zzo4OEBpM3g6ank5cmk0OzMzZzczNEAvNGBgMmJgNV8xLmEyMmE1YSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                    "https://v19.tiktokcdn-us.com/22806fed3a06628a31c85d082be217f4/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMeCGEm3oIIlR7OeFFCLEkzIEDGNKkAsfAeWTA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=328&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aThkaTk5OmRoZzw6Zzo4OEBpM3g6ank5cmk0OzMzZzczNEAvNGBgMmJgNV8xLmEyMmE1YSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=85d5575dd7194dbe8ac7e656cfca752f&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI0ZWMyNjQxZTEzOTg5MmY1MzhiYTg2ZTNlMzA2MGFh&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d8116fvog65v2g07cuj0_bytevc1_540p_336392",
                                  "data_size": 890809,
                                  "file_hash": "f5b766a2097f5ab4eed84f15e03cd08e",
                                  "file_cs": "c:0-19193-4065",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"2.9\",\"LoudnessRangeEnd\":\"-12\",\"LoudnessRangeStart\":\"-14.9\",\"MaximumMomentaryLoudness\":\"-7.5\",\"MaximumShortTermLoudness\":\"-11.6\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Peak\\\":1,\\\"Loudness\\\":-12.6,\\\"LoudnessRange\\\":2.9,\\\"LoudnessRangeStart\\\":-14.9,\\\"MaximumMomentaryLoudness\\\":-7.5,\\\"LoudnessRangeEnd\\\":-12,\\\"MaximumShortTermLoudness\\\":-11.6,\\\"Metrics\\\":{\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.52,\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0},\\\"Cutoff\\\":{\\\"Spkr150G\\\":10.16,\\\"Spkr200G\\\":11.23,\\\"FCenL\\\":1516.85,\\\"FCenR\\\":1765.21,\\\"Spkr100G\\\":7.96},\\\"Loudness\\\":{\\\"Integrated\\\":-12.582},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.236},\\\"RMSStats\\\":{\\\"LRDiff\\\":-0.444,\\\"LTotal\\\":-10.825,\\\"Peak\\\":0.146,\\\"RTotal\\\":-10.381},\\\"Version\\\":\\\"1.4.2\\\"},\\\"Version\\\":2}\",\"bright_ratio_mean\":\"0.0065\",\"brightness_mean\":\"138.171\",\"diff_overexposure_ratio\":\"0.0018\",\"loudness\":\"-12.6\",\"overexposure_ratio_mean\":\"0.0008\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.7332,3347.9019]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778520938}\",\"sr_score\":\"1.000\",\"std_brightness\":\"10.9794\",\"vq_score\":\"52.29\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4956dcdb&x-expires=1779087600&x-signature=q1WZRRHbg2%2BqSVh7iLok8Gnvmi0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=7b85d711&x-expires=1779087600&x-signature=0OLuAAdWF%2BRobGBeOTyKuBnsGRg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0d176352&x-expires=1779087600&x-signature=jl14dD6QX3Vvjle%2FYvhruPiPCUw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4956dcdb&x-expires=1779087600&x-signature=q1WZRRHbg2%2BqSVh7iLok8Gnvmi0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=7b85d711&x-expires=1779087600&x-signature=0OLuAAdWF%2BRobGBeOTyKuBnsGRg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocZvkAI2uB4gCVTTiI4AJ1aEBEEAog83ZiAAI~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0d176352&x-expires=1779087600&x-signature=jl14dD6QX3Vvjle%2FYvhruPiPCUw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 0,
                                  "enable_auto_caption": 0,
                                  "caption_infos": null,
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": false,
                                  "captions_type": 0,
                                  "no_caption_reason": 3,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 3
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10002\",\"rec_audio_effect\":\"5\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_01010226\\\",\\\"tag_02010317\\\",\\\"tag_02010322\\\",\\\"tag_01000104\\\",\\\"tag_01010211\\\"],\\\"TRS\\\":[0.61,0.21,0.19,0.15,0.15],\\\"TACM\\\":[0.63],\\\"DRR\\\":9.7,\\\"RCD\\\":[0.2],\\\"MP\\\":0.16,\\\"BE\\\":[10.8,1491.2],\\\"OCF\\\":[-1.1515,-7.1541,-14.7792,-22.908,-28.0554,-34.7078,-43.937,-51.4179,-60,-60],\\\"DO\\\":-0.0004,\\\"CTPS\\\":4,\\\"IL\\\":-12.6}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d8116fvog65v2g07cuj0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/4acffede4d88ab637ed08d1ae84cd02f/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000bd000",
                                    "https://v19.tiktokcdn-us.com/837cb086a3b4dce6b3dc3aa2877198c8/6a09bfe5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oQQeAfmeGoI1gIOYFDGCszLEm3BCAAeIKLEBER/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=619&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTk3OTg2ZzhnOWg0OmY6OkBpM3g6ank5cmk0OzMzZzczNEAwNTNiX18yXzExLzBhMzJiYSNnYC0vMmRzMy5hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e000b8000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=e7576cd7312e464db55db3b5e6648636&is_play_url=1&item_id=7638689091881635085&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjdmYTQ4NTgwMjQxNzc2Zjg0NDE1ODdlMjlmODY1MjQ4&source=PUBLISH&video_id=v12044gd0000d8116fvog65v2g07cuj0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d8116fvog65v2g07cuj0_h264_720p_634186",
                                  "data_size": 1679404,
                                  "file_hash": "162ea80fdf3c409eb5c18a7748e55672",
                                  "file_cs": "c:0-18852-64c5",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7638689091881635085",
                                "comment_count": 1819,
                                "digg_count": 168864,
                                "download_count": 403,
                                "play_count": 2278916,
                                "share_count": 21535,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 36,
                                "collect_count": 2676,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7638689091881635085",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7638689091881635085?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7638689091881635085&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7638689091881635085",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 1,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "",
                              "content_desc_extra": [],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "brianna chicken fry response",
                                        "word_id": "3729066766657317041",
                                        "penetrate_info": "{\"video_id\":\"\",\"poi_card_id_list\":\"\",\"recall_reason\":\"video_sar_top_counter_passive_recall,shortterm_manual_attribute_recall,bert_viking_two_hop_recall\",\"words_type_to_dmp_list\":\"\",\"word_type_list\":\"\",\"lvl1_category_id\":\"\",\"visualize_sug_product_id\":\"\",\"generate_time\":\"1743159162\",\"ecom_trigger_info\":\"\",\"is_time_sensitive\":\"0\",\"ecom_trigger_info_map\":\"\",\"predict_ctr_score\":0.023481106366375872,\"hot_level\":\"0\",\"lvl3_cate_list\":\"\",\"ecom_intent\":\"2\",\"word_type_version_map\":\"\",\"is_ramandan_promotion\":\"\",\"sug_user_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"direct_to_tako\":\"\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{\"is_sensitive_intent\":1}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "feed_bar",
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7638689091881635000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 21166,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "Before this gets leaked to the national media I’d like to just say “Champions get up”",
                                "text_extra": null
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0007981865062161133}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7638689181434252000,
                                "id_str": "7638689181434252045",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638689269829094157.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638689269829094157.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 21,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7638689091881635085,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d8116qvog65ln64s1mr0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7638689181434252045",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 21,
                                "shoot_duration": 21,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "matched_pgc_sound": {
                                  "author": "Elliott's",
                                  "title": "Everyday",
                                  "mixed_title": "original sound - stoolpresidente (Contains music from: Everyday - Elliott's)",
                                  "mixed_author": "Contains music from: \"Everyday\"",
                                  "music_release_info": {
                                    "is_new_release_song": false,
                                    "group_release_date": 0
                                  },
                                  "artist_infos": [],
                                  "uncert_artists": null,
                                  "cover_medium": {
                                    "uri": "tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8",
                                      "https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8"
                                    ],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  }
                                },
                                "matched_song": {
                                  "id": "7193887418691356674",
                                  "author": "Elliott's",
                                  "title": "Everyday",
                                  "h5_url": "",
                                  "cover_medium": {
                                    "uri": "tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8",
                                      "https://p19-common.tiktokcdn-us.com/tos-alisg-v-2774/1bb49eecf81b4d0784b352b744a3e190~tplv-tiktokx-cropcenter:200:200.jpeg?dr=9584&t=4d5b0474&ps=933b5bde&shp=08d74b56&shcp=d05b14bd&idc=useast8"
                                    ],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "performers": null,
                                  "chorus_info": {
                                    "start_ms": 77760,
                                    "duration_ms": 22079
                                  },
                                  "full_duration": 164212
                                },
                                "video_duration": 21,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 21.238,
                                  "shoot_duration_precision": 21.238,
                                  "audition_duration_precision": 21.238,
                                  "video_duration_precision": 21.238
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778520942,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": false,
                                "sim_group_id_v3": 7274123099224672000,
                                "music_ugid": 7638689181434252000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.5012152948973165, \\\"1\\\": 4.501205681854565, \\\"0\\\": 4.5011565150750315}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": 3.683281497350474e-05, \\\"2\\\": -8.443260930370494e-05, \\\"-1\\\": -5.3441344392362725e-06}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": -8.390262258325891e-05, \\\"2\\\": 0.00020863870034537805, \\\"-1\\\": -0.00048465274774666994}\",\"PACK_VOD:audio_meta\":\"{\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.63],\\\"drr\\\":10.3,\\\"rcd\\\":[0.3],\\\"mp\\\":0.93,\\\"be\\\":[10.8,1534.2],\\\"ocf\\\":[-1.0757,-7.3893,-15.1837,-23.2133,-28.233,-34.7321,-43.6235,-51.2476,-60,-60],\\\"do\\\":-0.0004,\\\"ctps\\\":4,\\\"il\\\":-12.8}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.63],\\\"drr\\\":9.7,\\\"rcd\\\":[0.2],\\\"mp\\\":0.16,\\\"be\\\":[10.8,1491.2],\\\"ocf\\\":[-1.1515,-7.1541,-14.7792,-22.908,-28.0554,-34.7078,-43.937,-51.4179,-60,-60],\\\"do\\\":-0.0004,\\\"ctps\\\":4,\\\"il\\\":-12.6},\\\"ts\\\":[\\\"tag_01010226\\\",\\\"tag_02010317\\\",\\\"tag_02010322\\\",\\\"tag_01000104\\\",\\\"tag_01010211\\\"],\\\"trs\\\":[0.61,0.21,0.19,0.15,0.15]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10002\",\"play_time_prob_dist\":\"[800,0.7332,3347.9019]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7638053516149378317",
                            "caption": "#teabythesea Jen Fistler threatens legal action against Ciara for saying she fucked West.  Ciara not impressed.",
                            "createdAt": "2026-05-10T00:29:02.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7638053516149378317",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEVicf3QogAz7eN3KI0efeJEcAIoMKGnPg3N2L~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=a9c1f482&x-expires=1779087600&x-signature=kEnLAkAV4H1azyBzTMA4QXB73UY%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 251610,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 388451,
                              "likes": 24248,
                              "comments": 482,
                              "shares": 3401,
                              "saves": 520
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/ad653847636bed4c19fca1c1b9030987/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/ogJINi3BAunC9fyifETjHQA6IDANvfEn8tZM1k/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1271&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=N2U4N2Q1NTg4ZmZmZmY0ZkBpamhxbXQ5cnB2OjMzZzczNEAyYi5fYS4uXzYxLzQtNWJfYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/b26f52b906debc89a7812ff28f788c52/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7638053620180913000,
                                "id_str": "7638053620180912909",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638053646744144653.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638053646744144653.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 251,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7638053516149378317,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7vt2l7og65m4kitq0pg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7638053620180912909",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 251,
                                "shoot_duration": 251,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 251,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 251.6375,
                                  "shoot_duration_precision": 251.6375,
                                  "audition_duration_precision": 251.6375,
                                  "video_duration_precision": 251.6375
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778372950,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7638053620180913000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/b26f52b906debc89a7812ff28f788c52/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/37ca4357a8f94f29e70f9e019744db15/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3578a153f57d46b9aed10356a027a05a&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZiZjZjOTJlYzIwM2E5NmVjNGZlNjM0YzE5ZDJmMmI1&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_h264_720p_1413591",
                                  "data_size": 44459206,
                                  "file_hash": "8405722408d0db7b3b8f6bb980044fcf",
                                  "file_cs": "c:0-207076-551c",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEVicf3QogAz7eN3KI0efeJEcAIoMKGnPg3N2L",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEVicf3QogAz7eN3KI0efeJEcAIoMKGnPg3N2L~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=a9c1f482&x-expires=1779087600&x-signature=kEnLAkAV4H1azyBzTMA4QXB73UY%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEVicf3QogAz7eN3KI0efeJEcAIoMKGnPg3N2L~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=e9d10f2c&x-expires=1779087600&x-signature=GGppKNjH1TvMiC8bRnGJvr3dutQ%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEVicf3QogAz7eN3KI0efeJEcAIoMKGnPg3N2L~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=d9a9f310&x-expires=1779087600&x-signature=alQRJHCpRmrVVUWXRnVcr9lAzUI%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ooFfYdynfAhlOdbDE0b5HG0FIMffQK7gRGuAQD",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ooFfYdynfAhlOdbDE0b5HG0FIMffQK7gRGuAQD~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=bbf48bf7&x-expires=1779087600&x-signature=lCxJyRI73aeoGLcs3WEXJRJhJYA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ooFfYdynfAhlOdbDE0b5HG0FIMffQK7gRGuAQD~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b608b051&x-expires=1779087600&x-signature=dIsswoGc8M3Xj7iwGBeLK1r0bOQ%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ooFfYdynfAhlOdbDE0b5HG0FIMffQK7gRGuAQD~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=20c04509&x-expires=1779087600&x-signature=%2FU0469mC8ZpW6V6ZhIoPijuDERU%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oAfn1lGHRtDf7fBEN0FfbQuYOujbQAF05dCIGA",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oAfn1lGHRtDf7fBEN0FfbQuYOujbQAF05dCIGA~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=629ff106&x-expires=1779087600&x-signature=8rh5z8FCiJ1916TNxDOlOz4VoD8%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oAfn1lGHRtDf7fBEN0FfbQuYOujbQAF05dCIGA~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=8b37aecb&x-expires=1779087600&x-signature=PaWpuhPJmdt3tdb5CAZ0o1%2BrtVw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oAfn1lGHRtDf7fBEN0FfbQuYOujbQAF05dCIGA~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=0bf17925&x-expires=1779087600&x-signature=ju0P22%2FbY72kNMIyuKUNk4KaRKM%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/ad653847636bed4c19fca1c1b9030987/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/ogJINi3BAunC9fyifETjHQA6IDANvfEn8tZM1k/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1271&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=N2U4N2Q1NTg4ZmZmZmY0ZkBpamhxbXQ5cnB2OjMzZzczNEAyYi5fYS4uXzYxLzQtNWJfYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/fdcf6a557676ccffc8d33a6c5eb94229/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/ogJINi3BAunC9fyifETjHQA6IDANvfEn8tZM1k/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1271&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=N2U4N2Q1NTg4ZmZmZmY0ZkBpamhxbXQ5cnB2OjMzZzczNEAyYi5fYS4uXzYxLzQtNWJfYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7vsvmvog65q1jfn5erg&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=bce18c0c7c2c4c95b51212dab415eb54&item_id=7638053516149378317&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmIzNDMyYjRhNGI3NTgyNzRiNTZkYWUzNGZjZGI1NmY2&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 40963757,
                                  "file_cs": "c:0-207076-551c",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1555322,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/be11414bcfe46efa3184c8a56d25d103/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oEm3tzGMGRv9cfoeAKLCQeN37KeTP6cgIsA3if/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1518&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGY1ZjllOzo6aTo2OzdkOUBpamhxbXQ5cnB2OjMzZzczNEBhYWNgLjMuNi0xX2BiNTBjYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/71d937f22e9b6b9c47a0df5ca5250f53/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oEm3tzGMGRv9cfoeAKLCQeN37KeTP6cgIsA3if/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1518&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGY1ZjllOzo6aTo2OzdkOUBpamhxbXQ5cnB2OjMzZzczNEBhYWNgLjMuNi0xX2BiNTBjYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f63a84e8c3b74f0797186b16ccf2dcd1&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjRlODZiMzYyNDRiNTA1ZDBiM2NhYWRmYzFlOTNmMjVl&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc1_1080p_1555322",
                                      "data_size": 48917237,
                                      "file_hash": "81accb8ebde0ece3eb8193762415a5e8",
                                      "file_cs": "c:0-208430-9f3a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 511963}, {\\\"time\\\": 2, \\\"offset\\\": 690948}, {\\\"time\\\": 3, \\\"offset\\\": 888981}, {\\\"time\\\": 4, \\\"offset\\\": 1051652}, {\\\"time\\\": 5, \\\"offset\\\": 1250563}, {\\\"time\\\": 10, \\\"offset\\\": 2239424}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.909, \\\"v960\\\": 98.579, \\\"v864\\\": 98.965, \\\"v720\\\": 99.426}, \\\"ori\\\": {\\\"v1080\\\": 92.885, \\\"v960\\\": 94.355, \\\"v864\\\": 95.57, \\\"v720\\\": 96.944}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96053,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 776813,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/d316186f401aa1a5b3ddeabc262cbc33/6a09c0cb/video/tos/useast5/tos-useast5-pve-0068-tx/oIMZfe8eCu2zPX6i4XQKA3Q5QficuAvANVfZ72/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=758&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTM5NDgzOjxlZDZkaDw6N0BpamhxbXQ5cnB2OjMzZzczNEAyMV5jXjQyXl8xYjMtMzNiYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/d3fbdb479e81cd4417e4eda745cb5c10/6a09c0cb/video/tos/useast5/tos-useast5-pve-0068-tx/oIMZfe8eCu2zPX6i4XQKA3Q5QficuAvANVfZ72/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=758&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTM5NDgzOjxlZDZkaDw6N0BpamhxbXQ5cnB2OjMzZzczNEAyMV5jXjQyXl8xYjMtMzNiYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=e467690e6ae34abba95770a5f1a6405b&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjhhZmJlNWQ2OTU0ZDgzYTAwY2I3NGI1Zjk0YzBjYTZl&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc1_720p_776813",
                                      "data_size": 24431944,
                                      "file_hash": "d05ff94fc169a59be147d67949e687cc",
                                      "file_cs": "c:0-208445-7793",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 373345}, {\\\"time\\\": 2, \\\"offset\\\": 448991}, {\\\"time\\\": 3, \\\"offset\\\": 547092}, {\\\"time\\\": 4, \\\"offset\\\": 635822}, {\\\"time\\\": 5, \\\"offset\\\": 746137}, {\\\"time\\\": 10, \\\"offset\\\": 1230834}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.775, \\\"v960\\\": 94.685, \\\"v864\\\": 95.9, \\\"v720\\\": 97.695}, \\\"ori\\\": {\\\"v1080\\\": 82.85, \\\"v960\\\": 85.937, \\\"v864\\\": 88.329, \\\"v720\\\": 91.867}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 91.649, \\\"sr20\\\": 97.62}}\",\"audio_bit_rate\":96053,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":20.6,\\\"RCD\\\":[-3.8],\\\"MP\\\":-5.78,\\\"BE\\\":[59.2,10346.7],\\\"OCF\\\":[-21.1618,-14.2901,-6.9411,-4.0597,-5.0266,-15.2282,-18.6142,-27.2745,-36.0999,-51.6586],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 576820,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/98b1a218e134cc756ffd6568d8a90683/6a09c0cb/video/tos/useast5/tos-useast5-pve-0068-tx/ogPgiNxcILAMCfBARNmGQ33Kz72FeoPfVc3eKe/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=563&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OjtkMzs7aWY4NmZkZDhnPEBpamhxbXQ5cnB2OjMzZzczNEBgMWE1MDI0Xy8xY15gNi8tYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/867e3b7dec7699be9e9bbb78d6ea691b/6a09c0cb/video/tos/useast5/tos-useast5-pve-0068-tx/ogPgiNxcILAMCfBARNmGQ33Kz72FeoPfVc3eKe/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=563&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OjtkMzs7aWY4NmZkZDhnPEBpamhxbXQ5cnB2OjMzZzczNEBgMWE1MDI0Xy8xY15gNi8tYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=092d95caaafc4325bc7f583880da48c7&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjcxYzViYmZkNmVhYzI5ZTVlNmVmMDNkNmUzZjAwZGQ4&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc2_540p_576820",
                                      "data_size": 18141857,
                                      "file_hash": "bf091ddce1e47d740bbe7b7c646196af",
                                      "file_cs": "c:0-208911-404a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 343295}, {\\\"time\\\": 2, \\\"offset\\\": 407565}, {\\\"time\\\": 3, \\\"offset\\\": 458756}, {\\\"time\\\": 4, \\\"offset\\\": 528544}, {\\\"time\\\": 5, \\\"offset\\\": 609715}, {\\\"time\\\": 10, \\\"offset\\\": 979804}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 91.737, \\\"v960\\\": 94.392, \\\"v864\\\": 96.289, \\\"v720\\\": 97.848}, \\\"ori\\\": {\\\"v1080\\\": 79.537, \\\"v960\\\": 81.727, \\\"v864\\\": 85.715, \\\"v720\\\": 89.668}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 17, 18, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.362, 0.597, 1.451, 0.394, 0.626, 1.543, 0.362, 0.597, 1.457, 0.441, 0.659, 1.503, 1.514], \\\"dec2play\\\": [72925, 72925, 71957, 71415, 67277, 72582, 71588, 66983, 71957, 71415, 66269, 71923, 71030, 66546, 64619]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 89.222, \\\"sr20\\\": 97.318}}\",\"audio_bit_rate\":64035}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"0\",\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":20.8,\\\"RCD\\\":[-3.8],\\\"MP\\\":-5.11,\\\"BE\\\":[59.2,10330.6],\\\"OCF\\\":[-20.8793,-14.1997,-6.846,-4.1063,-5.0649,-15.1418,-18.4493,-27.1607,-36.2006,-51.5969],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 551747,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/1e45df257096c40d439d4696c8ce2da3/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYFlQuFTGbIbOd1fOgDAIff0GGnA2FXRh5E7fj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=538&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NDlmOTg3OzZlaDszaWdoOUBpamhxbXQ5cnB2OjMzZzczNEBfXzItM2A1Nl4xNjI2MzYtYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/7e782a3db44debfe9db402be8db38d50/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYFlQuFTGbIbOd1fOgDAIff0GGnA2FXRh5E7fj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=538&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NDlmOTg3OzZlaDszaWdoOUBpamhxbXQ5cnB2OjMzZzczNEBfXzItM2A1Nl4xNjI2MzYtYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=069e6d9f50984eab9388c465065cb6b1&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmFkNzdkNmRiZTAyM2I3OTJhZjYwZTcxMDkxM2NhNzVl&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc1_540p_551747",
                                      "data_size": 17353278,
                                      "file_hash": "934c6397ca48953c2f439462ef6436d5",
                                      "file_cs": "c:0-208431-6122",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 321382}, {\\\"time\\\": 2, \\\"offset\\\": 383407}, {\\\"time\\\": 3, \\\"offset\\\": 452945}, {\\\"time\\\": 4, \\\"offset\\\": 514893}, {\\\"time\\\": 5, \\\"offset\\\": 588966}, {\\\"time\\\": 10, \\\"offset\\\": 930907}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 86.794, \\\"v960\\\": 89.865, \\\"v864\\\": 92.117, \\\"v720\\\": 94.957}, \\\"ori\\\": {\\\"v1080\\\": 74.644, \\\"v960\\\": 78.603, \\\"v864\\\": 81.54, \\\"v720\\\": 86.358}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 84.02, \\\"sr20\\\": 92.117}}\",\"audio_bit_rate\":64035,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.58],\\\"DRR\\\":20.8,\\\"RCD\\\":[-3.8],\\\"MP\\\":-5.11,\\\"BE\\\":[59.2,10330.6],\\\"OCF\\\":[-20.8793,-14.1997,-6.846,-4.1063,-5.0649,-15.1418,-18.4493,-27.1607,-36.2006,-51.5969],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 337558,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/864124206f49b1618c04fa90d5056a27/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/oo5ejBQMPK2Q2IVXQQfzIAAZicuf8fGAvNiBf3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=329&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDs7Zmg1ZGQ7ZzpmaDU0Z0BpamhxbXQ5cnB2OjMzZzczNEBgLTYwYTIxNTMxMWFeMmNiYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/a213905b42361141730afcc92de8bff5/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/oo5ejBQMPK2Q2IVXQQfzIAAZicuf8fGAvNiBf3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=329&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDs7Zmg1ZGQ7ZzpmaDU0Z0BpamhxbXQ5cnB2OjMzZzczNEBgLTYwYTIxNTMxMWFeMmNiYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=edf152aedc474d688a4a52de3c9808ce&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQwYjM2MmFjMjYzY2U5MmU1ZjlmNzM5ZmQwNWE1NTYw&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc1_540p_337558",
                                      "data_size": 10616721,
                                      "file_hash": "065bd2ca021b2d6fc38e1fa5333c9543",
                                      "file_cs": "c:0-208447-0165",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 276307}, {\\\"time\\\": 2, \\\"offset\\\": 309790}, {\\\"time\\\": 3, \\\"offset\\\": 348084}, {\\\"time\\\": 4, \\\"offset\\\": 382382}, {\\\"time\\\": 5, \\\"offset\\\": 423107}, {\\\"time\\\": 10, \\\"offset\\\": 621421}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 79.778, \\\"v960\\\": 83.12, \\\"v864\\\": 85.794, \\\"v720\\\": 89.446}, \\\"ori\\\": {\\\"v1080\\\": 67.467, \\\"v960\\\": 71.945, \\\"v864\\\": 75.047, \\\"v720\\\": 80.471}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24023,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  }
                                ],
                                "duration": 251610,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/b26f52b906debc89a7812ff28f788c52/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/37ca4357a8f94f29e70f9e019744db15/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3578a153f57d46b9aed10356a027a05a&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZiZjZjOTJlYzIwM2E5NmVjNGZlNjM0YzE5ZDJmMmI1&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_h264_720p_1413591",
                                  "data_size": 44459206,
                                  "file_hash": "8405722408d0db7b3b8f6bb980044fcf",
                                  "file_cs": "c:0-207076-551c",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22512e1c&x-expires=1779087600&x-signature=pwE%2F5ktsLAr6yoXiwroa%2FY9pZDo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b324f949&x-expires=1779087600&x-signature=d6WzMwqlsYoOvh7rQUFxiOKLm2U%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=945ae254&x-expires=1779087600&x-signature=zerra4l4o0J7Z2EEuOLGO7Y2YWg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 2,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 252,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 251.6,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/o0fnZlGPRBDf7fvEn0FfbQPaOu6bQAF05dFIGA",
                                      "tos-useast5-p-0068-tx/oknYIwfGbFdQ5AFG0OlQbamGSfR7Aaf34f0DEu",
                                      "tos-useast5-p-0068-tx/oQ3afAKrzQLn3IgPffLecKAJ7065ecgMNSGoi3",
                                      "tos-useast5-p-0068-tx/okefGeo3iIoQga07MMPALK3fgrNzAcKcHcme3d",
                                      "tos-useast5-p-0068-tx/oQfBiAh5QXAZIfWAANeMQ3uVz2oOeQPfWcv8K1",
                                      "tos-useast5-p-0068-tx/oE3kQZtfAeQNABu1PKAfvOXfiVcfQz8oK2h5MW",
                                      "tos-useast5-p-0068-tx/oI6egQcM3GAa03omezLocNPMPiKA7KOfg3e1fI",
                                      "tos-useast5-p-0068-tx/o4KaA02f3XfgZizaBPQMQa85AflTAeuvcQf3VN",
                                      "tos-useast5-p-0068-tx/okeIeAGfcovc1LN3PM73eMQiAgPfK3NgT1ozIK",
                                      "tos-useast5-p-0068-tx/ooAMfLK3efMaG0WlNe3KzmioAQI0cfUg7PP3gc",
                                      "tos-useast5-p-0068-tx/oM5GIFDhGROlQQsbbfEQbfFA0AlAa0m7fnfudH"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0fnZlGPRBDf7fvEn0FfbQPaOu6bQAF05dFIGA~tplv-noop.image?dr=12525&refresh_token=b84f0525&x-expires=1779024075&x-signature=P7TYJdF9BVa0vasSMhIsSTqZeHY%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oknYIwfGbFdQ5AFG0OlQbamGSfR7Aaf34f0DEu~tplv-noop.image?dr=12525&refresh_token=bd3a40d9&x-expires=1779024075&x-signature=LGG2I1ceJSNZvbXgeLYb65Z2ceQ%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQ3afAKrzQLn3IgPffLecKAJ7065ecgMNSGoi3~tplv-noop.image?dr=12525&refresh_token=4c6c1bdf&x-expires=1779024075&x-signature=z84voGsVt7OOrE0wLqESC2G27wU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okefGeo3iIoQga07MMPALK3fgrNzAcKcHcme3d~tplv-noop.image?dr=12525&refresh_token=ecc11d86&x-expires=1779024075&x-signature=R%2BJRIn6P71mN%2Fc%2Fnxal9w7xZkwc%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQfBiAh5QXAZIfWAANeMQ3uVz2oOeQPfWcv8K1~tplv-noop.image?dr=12525&refresh_token=8fda62f5&x-expires=1779024075&x-signature=QpOu%2B5%2FhrAYHWIBp06VufhygzDM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oE3kQZtfAeQNABu1PKAfvOXfiVcfQz8oK2h5MW~tplv-noop.image?dr=12525&refresh_token=d4731fdb&x-expires=1779024075&x-signature=zaV%2BRHQjrt3h%2F%2FzZ4tukE1EWAjA%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oI6egQcM3GAa03omezLocNPMPiKA7KOfg3e1fI~tplv-noop.image?dr=12525&refresh_token=8e6bfdfa&x-expires=1779024075&x-signature=W6orU3TG98j1USeuqDBT5ig84iU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4KaA02f3XfgZizaBPQMQa85AflTAeuvcQf3VN~tplv-noop.image?dr=12525&refresh_token=dea21373&x-expires=1779024075&x-signature=H7vlC3IPh0eJHeb5uZGBvcLOz6I%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okeIeAGfcovc1LN3PM73eMQiAgPfK3NgT1ozIK~tplv-noop.image?dr=12525&refresh_token=5efdc8fe&x-expires=1779024075&x-signature=ReN9P6cCy8MhEaiqZPj1OA4lO54%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ooAMfLK3efMaG0WlNe3KzmioAQI0cfUg7PP3gc~tplv-noop.image?dr=12525&refresh_token=1967850d&x-expires=1779024075&x-signature=fA6l0bxiqUC3qzeXpOxVgUgTpYY%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oM5GIFDhGROlQQsbbfEQbfFA0AlAa0m7fnfudH~tplv-noop.image?dr=12525&refresh_token=41c7bfe3&x-expires=1779024075&x-signature=7bZV6Rb2MvYFcjcju9z9zMxCzSU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7vsvmvog65q1jfn5erg"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/69dbfe8b5936030cab39202f155fbddb/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/ogUPC82vMcfPXvui3fQtzQAhfKQiZ5VAQBNeeA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=605&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTxkOjQ3O2hlZmRpZjhlNkBpamhxbXQ5cnB2OjMzZzczNEAyYl9jL2EvNjExX2FgMTEyYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/c75b9867f1583cf68a17d59c6198e967/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c004-tx/ogUPC82vMcfPXvui3fQtzQAhfKQiZ5VAQBNeeA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=605&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTxkOjQ3O2hlZmRpZjhlNkBpamhxbXQ5cnB2OjMzZzczNEAyYl9jL2EvNjExX2FgMTEyYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=534b45ccdfba4c4b9e28d421f7bae95b&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmJmZTkxZjRiMTBkNWY2MTQyNDczM2U1MDA1NDQ5N2Fk&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_bytevc1_540p_619905",
                                  "data_size": 19496956,
                                  "file_hash": "a8220337cfa70ff52afa6ed8da7ab872",
                                  "file_cs": "c:0-208445-f3e9",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"5.3\",\"LoudnessRangeEnd\":\"-20.5\",\"LoudnessRangeStart\":\"-25.8\",\"MaximumMomentaryLoudness\":\"-12.3\",\"MaximumShortTermLoudness\":\"-15.2\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Version\\\":2,\\\"Loudness\\\":-22.5,\\\"LoudnessRangeEnd\\\":-20.5,\\\"LoudnessRangeStart\\\":-25.8,\\\"MaximumShortTermLoudness\\\":-15.2,\\\"LoudnessRange\\\":5.3,\\\"MaximumMomentaryLoudness\\\":-12.3,\\\"Metrics\\\":{\\\"Cutoff\\\":{\\\"FCenL\\\":2299.54,\\\"FCenR\\\":3001.95,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.07,\\\"Spkr200G\\\":0.15},\\\"Loudness\\\":{\\\"Integrated\\\":-22.477},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-1.19},\\\"RMSStats\\\":{\\\"RTotal\\\":-29.188,\\\"LRDiff\\\":5.28,\\\"LTotal\\\":-23.908,\\\"Peak\\\":-5.798},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.14,\\\"SingingRatio\\\":0.19,\\\"SpeechRatio\\\":0.75},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"LoudRE\\\":-20.7,\\\"LoudRS\\\":-25.3,\\\"MaxMomLoud\\\":-14.4,\\\"MaxSTLoud\\\":-17.99,\\\"Loud\\\":-22.5,\\\"LoudR\\\":4.6}}},\\\"Peak\\\":0.51286}\",\"bright_ratio_mean\":\"0.0497\",\"brightness_mean\":\"147.4154\",\"diff_overexposure_ratio\":\"0.0059\",\"loudness\":\"-22.5\",\"overexposure_ratio_mean\":\"0.017\",\"peak\":\"0.51286\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778372945}\",\"sr_score\":\"1.000\",\"std_brightness\":\"12.7093\",\"vq_score\":\"61.56\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22512e1c&x-expires=1779087600&x-signature=pwE%2F5ktsLAr6yoXiwroa%2FY9pZDo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b324f949&x-expires=1779087600&x-signature=d6WzMwqlsYoOvh7rQUFxiOKLm2U%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=945ae254&x-expires=1779087600&x-signature=zerra4l4o0J7Z2EEuOLGO7Y2YWg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22512e1c&x-expires=1779087600&x-signature=pwE%2F5ktsLAr6yoXiwroa%2FY9pZDo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=b324f949&x-expires=1779087600&x-signature=d6WzMwqlsYoOvh7rQUFxiOKLm2U%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIQQAE0CGf7QnA0ffrufX5YLbdEDRFFbIGJOpl~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=945ae254&x-expires=1779087600&x-signature=zerra4l4o0J7Z2EEuOLGO7Y2YWg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 940
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/b83a65ce77912f80456d44525be50934/6a30f96b/video/tos/useast5/tos-useast5-v-0068-tx/73289657459d43f19d66df41960ecff5/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=5906&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=amhxbXQ5cnB2OjMzZzczNEBpamhxbXQ5cnB2OjMzZzczNEBvMmMuMmRzc3NhLS1kMS9zYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594475,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7638053812636470000,
                                      "is_auto_generated": true,
                                      "sub_id": -614269216,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7638053812636470000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/b83a65ce77912f80456d44525be50934/6a30f96b/video/tos/useast5/tos-useast5-v-0068-tx/73289657459d43f19d66df41960ecff5/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=5906&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=amhxbXQ5cnB2OjMzZzczNEBpamhxbXQ5cnB2OjMzZzczNEBvMmMuMmRzc3NhLS1kMS9zYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/54d6f8dfc9f1b65df6388fcd01525351/6a30f96b/video/tos/useast5/tos-useast5-v-0068-tx/73289657459d43f19d66df41960ecff5/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=5906&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=amhxbXQ5cnB2OjMzZzczNEBpamhxbXQ5cnB2OjMzZzczNEBvMmMuMmRzc3NhLS1kMS9zYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmRkMWFhODNmNzYwZDJiNTIxNGJhNmMyNDIyZTE5YWU0&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                      ],
                                      "caption_length": 4028,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_01010226\\\",\\\"tag_02000300\\\",\\\"tag_03010301\\\",\\\"tag_03010308\\\"],\\\"TRS\\\":[0.76,0.13,0.07,0.07,0.06],\\\"TACM\\\":[0.58],\\\"DRR\\\":20.6,\\\"RCD\\\":[-3.9],\\\"MP\\\":-5.8,\\\"BE\\\":[59.2,10788.1],\\\"OCF\\\":[-21.7998,-14.5984,-6.9344,-3.9617,-5.0904,-15.3975,-18.6,-27.2705,-35.9332,-51.0391],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}\",\"tier3\":\"10087\",\"rec_audio_effect\":\"1\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7vsvmvog65q1jfn5erg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/b26f52b906debc89a7812ff28f788c52/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/37ca4357a8f94f29e70f9e019744db15/6a09c0cb/video/tos/useast5/tos-useast5-ve-0068c001-tx/oM5bf0huQEd7JVUO50nRfDkFfIAbIlzfAAGFPG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDM6Mzk2NGg8OWc4NjQ7OEBpamhxbXQ5cnB2OjMzZzczNEAyXi9eMi1hXl8xNGMyXjQwYSNvMmMuMmRzc3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3578a153f57d46b9aed10356a027a05a&is_play_url=1&item_id=7638053516149378317&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZiZjZjOTJlYzIwM2E5NmVjNGZlNjM0YzE5ZDJmMmI1&source=PUBLISH&video_id=v12044gd0000d7vsvmvog65q1jfn5erg"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7vsvmvog65q1jfn5erg_h264_720p_1413591",
                                  "data_size": 44459206,
                                  "file_hash": "8405722408d0db7b3b8f6bb980044fcf",
                                  "file_cs": "c:0-207076-551c",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7638053516149378317",
                                "comment_count": 482,
                                "digg_count": 24248,
                                "download_count": 95,
                                "play_count": 388451,
                                "share_count": 3401,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 12,
                                "collect_count": 520,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7638053516149378317",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "10630"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7638053516149378317?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7638053516149378317&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7638053516149378317",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 29,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"#teabythesea\",\"\",\"Jen Fistler threatens legal action against Ciara for saying she fucked West.  Ciara not impressed.   \"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 0,
                                  "tag_id": "10630"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "jen fessler and west",
                                        "word_id": "2776047416673149968",
                                        "penetrate_info": "{\"video_id\":\"\",\"hot_level\":\"0\",\"is_ramandan_promotion\":\"\",\"poi_card_id_list\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info_map\":\"\",\"recall_reason\":\"video_top_counter_recall,global_video_top_counter_recall,v2q_two_tower_recall,shortterm_manual_attribute_recall,video_sar_top_counter_passive_recall,search_result_darwin_recall\",\"direct_to_tako\":\"\",\"visualize_sug_product_id\":\"\",\"generate_time\":\"0\",\"lvl3_cate_list\":\"\",\"word_type_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"word_type_version_map\":\"\",\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"predict_ctr_score\":0.020622168214328895,\"ecom_intent\":\"0\",\"ecom_trigger_info\":\"\",\"is_time_sensitive\":\"0\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "feed_bar",
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": ""
                                  },
                                  {
                                    "words": [
                                      {
                                        "word": "ciara miller jen fessler",
                                        "word_id": "482026488158740957",
                                        "penetrate_info": "{\"ecom_trigger_info\":\"\",\"video_id\":\"\",\"generate_time\":\"0\",\"visualize_sug_product_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"direct_to_tako\":\"\",\"words_type_to_dmp_list\":\"\",\"word_type_list\":\"\",\"poi_card_id_list\":\"\",\"sug_user_id\":\"\",\"hot_level\":\"0\",\"is_ramandan_promotion\":\"\",\"ecom_trigger_info_map\":\"\",\"lvl1_category_id\":\"\",\"word_type_version_map\":\"\",\"is_time_sensitive\":\"0\",\"predict_ctr_score\":0.024985134349631004,\"recall_reason\":\"global_video_top_counter_recall,video_top_counter_recall,video_sar_top_counter_passive_recall,shortterm_manual_attribute_recall,v2q_two_tower_recall\",\"ecom_intent\":\"0\",\"lvl3_cate_list\":\"\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{\"is_sensitive_intent\":1}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7638053516149378000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 251600,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "<h id=\"10630\">#teabythesea</h><br><br>Jen Fistler threatens legal action against Ciara for saying she fucked West.  Ciara not impressed.   ",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "10630"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0012408257412131775}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "ciara miller jen fessler"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "482026488158740957"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7638053620180913000,
                                "id_str": "7638053620180912909",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638053646744144653.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7638053646744144653.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 251,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7638053516149378317,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7vt2l7og65m4kitq0pg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7638053620180912909",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 251,
                                "shoot_duration": 251,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 251,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 251.6375,
                                  "shoot_duration_precision": 251.6375,
                                  "audition_duration_precision": 251.6375,
                                  "video_duration_precision": 251.6375
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778372950,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7638053620180913000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                },
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 2,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.50126024498604, \\\"1\\\": 4.501272531717212, \\\"0\\\": 4.5012360968933}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -0.00012202501981641524, \\\"2\\\": -0.0004163886879911884, \\\"-1\\\": -0.00026140912922503843}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.00021501281779595733, \\\"2\\\": 0.000547982844298269, \\\"-1\\\": -9.191792621378138e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"5a5b8d83ca26180d6aed655d795d36fd\\\":{\\\"Md5\\\":\\\"5a5b8d83ca26180d6aed655d795d36fd\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":20.8,\\\"rcd\\\":[-2.8],\\\"mp\\\":-6.11,\\\"be\\\":[59.2,10454.4],\\\"ocf\\\":[-21.1706,-14.2546,-6.8391,-4.0997,-5.0525,-15.1973,-18.5723,-27.2167,-36.1357,-50.6055],\\\"il\\\":-22.6}}},\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":20.6,\\\"rcd\\\":[-3.8],\\\"mp\\\":-5.78,\\\"be\\\":[59.2,10346.7],\\\"ocf\\\":[-21.1618,-14.2901,-6.9411,-4.0597,-5.0266,-15.2282,-18.6142,-27.2745,-36.0999,-51.6586],\\\"il\\\":-22.6}}},\\\"7ae7274e0b648da6ade67bd575f6fc81\\\":{\\\"Md5\\\":\\\"7ae7274e0b648da6ade67bd575f6fc81\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":20.8,\\\"rcd\\\":[-2.8],\\\"mp\\\":-5.65,\\\"be\\\":[59.2,10368.2],\\\"ocf\\\":[-20.9616,-14.2401,-6.8463,-4.115,-5.0537,-15.0963,-18.4046,-27.1275,-36.2428,-50.6594],\\\"il\\\":-22.7}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":20.8,\\\"rcd\\\":[-3.8],\\\"mp\\\":-5.11,\\\"be\\\":[59.2,10330.6],\\\"ocf\\\":[-20.8793,-14.1997,-6.846,-4.1063,-5.0649,-15.1418,-18.4493,-27.1607,-36.2006,-51.5969],\\\"il\\\":-22.6}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.58],\\\"drr\\\":20.6,\\\"rcd\\\":[-3.9],\\\"mp\\\":-5.8,\\\"be\\\":[59.2,10788.1],\\\"ocf\\\":[-21.7998,-14.5984,-6.9344,-3.9617,-5.0904,-15.3975,-18.6,-27.2705,-35.9332,-51.0391],\\\"il\\\":-22.5},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_01010226\\\",\\\"tag_02000300\\\",\\\"tag_03010301\\\",\\\"tag_03010308\\\"],\\\"trs\\\":[0.76,0.13,0.07,0.07,0.06]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10087\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7637689056901483789",
                            "caption": "#teabythesea According to Ciara West apparently slept with some old bag of nails from Real Housewives and everybody is losing their mind.",
                            "createdAt": "2026-05-09T00:54:40.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7637689056901483789",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8vBoQwE98TA0mGC5eE5CFfIjH6D4AWk5IfvMC~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=c2ede7d9&x-expires=1779087600&x-signature=D21EFgDy1l%2F4CFaLdjuS7Wg7ILo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 153181,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 392280,
                              "likes": 24307,
                              "comments": 601,
                              "shares": 6082,
                              "saves": 633
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/b0924bc4e09b780520080872516c2185/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/ocHsgIIG1xeOY55AhnQeRFoRgfLazGAfyJFTcA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=851&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTQ7OGdmaWU4PGY6NGk0aUBpMzRsOng5cjQ7OjMzZzczNEBiYWEtNS8xNmAxYzYzLjEzYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/3f472ce076c484a08741a622e7f39d21/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7637689112880811000,
                                "id_str": "7637689112880810766",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637689154322664205.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637689154322664205.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 153,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7637689056901483789,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7v8bl7og65n3hdcesl0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7637689112880810766",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 153,
                                "shoot_duration": 153,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 153,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 153.20813,
                                  "shoot_duration_precision": 153.20813,
                                  "audition_duration_precision": 153.20813,
                                  "video_duration_precision": 153.20813
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778288086,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7637689112880811000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3f472ce076c484a08741a622e7f39d21/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/a21517b027e038efdc8256ee22f2eb60/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=9f2349e5ebd1446d85eeae42ad3da26d&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjkyMzEwZDY2MjI3MjE2ZmIzZjRiOTA2M2MzNjUyNjBm&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_h264_720p_938806",
                                  "data_size": 17975916,
                                  "file_hash": "36e6c59405e161933f6deab9c63b2166",
                                  "file_cs": "c:0-126384-8f52",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/o8vBoQwE98TA0mGC5eE5CFfIjH6D4AWk5IfvMC",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8vBoQwE98TA0mGC5eE5CFfIjH6D4AWk5IfvMC~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=c2ede7d9&x-expires=1779087600&x-signature=D21EFgDy1l%2F4CFaLdjuS7Wg7ILo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8vBoQwE98TA0mGC5eE5CFfIjH6D4AWk5IfvMC~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=70a3f453&x-expires=1779087600&x-signature=DyPQxUyAiPDotwBl49%2FGk8YR8U4%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8vBoQwE98TA0mGC5eE5CFfIjH6D4AWk5IfvMC~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=197bd8c7&x-expires=1779087600&x-signature=dQNGaBvWeipvjETfn0sdQbQAgys%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o88EW8C0QEC5K2GHohTIeDdCfQo5kMEfAA4FHj",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o88EW8C0QEC5K2GHohTIeDdCfQo5kMEfAA4FHj~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22fa808c&x-expires=1779087600&x-signature=JsPFn7NYZn3BmW9o82figTFu2p4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o88EW8C0QEC5K2GHohTIeDdCfQo5kMEfAA4FHj~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=616e5f0a&x-expires=1779087600&x-signature=qS0JMK3m8bvWS7%2BI4zp8Od3jS4I%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o88EW8C0QEC5K2GHohTIeDdCfQo5kMEfAA4FHj~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=ccf8a3c5&x-expires=1779087600&x-signature=6Y%2FVfzPHUNZQUkcIcI8LhOryNN0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/okK5hoN4DQXd0e8WAMFBk8jECCfzTgHQEIA5If",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okK5hoN4DQXd0e8WAMFBk8jECCfzTgHQEIA5If~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=d4363a6c&x-expires=1779087600&x-signature=E9RkMfzPF7K5aINomb%2B2pJB58eM%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okK5hoN4DQXd0e8WAMFBk8jECCfzTgHQEIA5If~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=4885c890&x-expires=1779087600&x-signature=CDisvQPmFWrg6PL4jM0ha%2BaeR4g%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okK5hoN4DQXd0e8WAMFBk8jECCfzTgHQEIA5If~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=fa65e045&x-expires=1779087600&x-signature=90iaM0R94qFd3yaTbAa%2FfTSwErk%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/b0924bc4e09b780520080872516c2185/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/ocHsgIIG1xeOY55AhnQeRFoRgfLazGAfyJFTcA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=851&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTQ7OGdmaWU4PGY6NGk0aUBpMzRsOng5cjQ7OjMzZzczNEBiYWEtNS8xNmAxYzYzLjEzYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/ebcbc3664bbd2b424d8bae053cbf29b3/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/ocHsgIIG1xeOY55AhnQeRFoRgfLazGAfyJFTcA/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=851&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTQ7OGdmaWU4PGY6NGk0aUBpMzRsOng5cjQ7OjMzZzczNEBiYWEtNS8xNmAxYzYzLjEzYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7v8b17og65ue77ic1d0&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=6f411f6197fc49c59b4f2c8d05d8d1e2&item_id=7637689056901483789&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNmMDdjMGJiODBjYmIzNzYzOGE1ZTc1ZjBmYTcwMTkw&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 16687833,
                                  "file_cs": "c:0-126384-8f52",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1211485,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/15ee3fcfa5be7e40ee661c399fe3cff0/6a09c069/video/tos/useast5/tos-useast5-ve-0068c001-tx/oYQIeFT4oCsCH5DUIfWdPkgAEAi50f8EMvWAjl/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1183&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NWRkPGgzaGk7NTQ6Zjo4ZkBpMzRsOng5cjQ7OjMzZzczNEBfMy1eM2MuXmAxNmM0YWExYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/2a59ed5dc7d3af487a3e1c3b05609761/6a09c069/video/tos/useast5/tos-useast5-ve-0068c001-tx/oYQIeFT4oCsCH5DUIfWdPkgAEAi50f8EMvWAjl/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1183&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NWRkPGgzaGk7NTQ6Zjo4ZkBpMzRsOng5cjQ7OjMzZzczNEBfMy1eM2MuXmAxNmM0YWExYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4cd5d77cf79142c8af1ef06ea90a6ab2&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjJhYTQ2ZDM5NTA0ODMxYWNiMjdjNDA1ZjgzMmNhYmMx&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc1_1080p_1211485",
                                      "data_size": 23197078,
                                      "file_hash": "3b170734a71208342b35c8cf388c134b",
                                      "file_cs": "c:0-127602-9773",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 402574}, {\\\"time\\\": 2, \\\"offset\\\": 526387}, {\\\"time\\\": 3, \\\"offset\\\": 733683}, {\\\"time\\\": 4, \\\"offset\\\": 943410}, {\\\"time\\\": 5, \\\"offset\\\": 1073852}, {\\\"time\\\": 10, \\\"offset\\\": 1833123}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.267, \\\"v960\\\": 97.765, \\\"v864\\\": 98.284, \\\"v720\\\": 98.796}, \\\"ori\\\": {\\\"v1080\\\": 91.9, \\\"v960\\\": 93.028, \\\"v864\\\": 94.138, \\\"v720\\\": 95.167}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"718123573b18c7b87c2da0cff22eed31\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96073,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 730820,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/55b6412526354992a43332631304d96d/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/oofTPMjPIPDf5enEzjFWEQsWH0a5IAC8oCgk4A/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=713&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzY0NDRnaDk8PGc1NjY3ZkBpMzRsOng5cjQ7OjMzZzczNEBjMzYuMl8tXzYxYzQ0YzUvYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/d70d6cdee687ce0a9198cd86daebe1ca/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/oofTPMjPIPDf5enEzjFWEQsWH0a5IAC8oCgk4A/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=713&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzY0NDRnaDk8PGc1NjY3ZkBpMzRsOng5cjQ7OjMzZzczNEBjMzYuMl8tXzYxYzQ0YzUvYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=2c84f37372fd4999b60ebd51119163fd&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjkzMzIzN2E0ZTk4ZmVhOTczZDE5N2NjNzI1Y2VjYThl&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc1_720p_730820",
                                      "data_size": 13993652,
                                      "file_hash": "008b18f0c5c0d377cbd07252f1b018ca",
                                      "file_cs": "c:0-127621-34d4",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 274947}, {\\\"time\\\": 2, \\\"offset\\\": 328997}, {\\\"time\\\": 3, \\\"offset\\\": 436136}, {\\\"time\\\": 4, \\\"offset\\\": 546502}, {\\\"time\\\": 5, \\\"offset\\\": 615363}, {\\\"time\\\": 10, \\\"offset\\\": 1035935}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.874, \\\"v960\\\": 94.559, \\\"v864\\\": 95.514, \\\"v720\\\": 96.957}, \\\"ori\\\": {\\\"v1080\\\": 83.81, \\\"v960\\\": 86.255, \\\"v864\\\": 88.284, \\\"v720\\\": 91.062}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 93.847, \\\"sr20\\\": 99.696}}\",\"audio_bit_rate\":96072,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.83],\\\"DRR\\\":23.6,\\\"RCD\\\":[-1.4],\\\"MP\\\":-5.77,\\\"BE\\\":[59.2,10443.6],\\\"OCF\\\":[-20.7315,-14.0177,-7.9078,-4.1843,-4.518,-14.998,-16.6829,-27.6021,-35.9255,-50.3944],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 577303,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/b2c6398f878fd11a6e5574807d00f483/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/ogAAeLYJsfx2GjKqGezFQyR5AIIAOfKRFncygo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=563&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDUzOztnZzw3ZjloNzgzOUBpMzRsOng5cjQ7OjMzZzczNEBhYDQxLmEwNjYxYmNgYDVgYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/0173691e8bb43ecfe8c4e25f5b963eed/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/ogAAeLYJsfx2GjKqGezFQyR5AIIAOfKRFncygo/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=563&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZDUzOztnZzw3ZjloNzgzOUBpMzRsOng5cjQ7OjMzZzczNEBhYDQxLmEwNjYxYmNgYDVgYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c680c5c4fee64c94993ddd184870c2da&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjVkZGJiNWRhMjFkZDRkYWQzNjExMTU4OTNkNGM1YTU4&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc2_540p_577303",
                                      "data_size": 11054132,
                                      "file_hash": "2f43af78bf3d0ef26ea4f9b71e33066c",
                                      "file_cs": "c:0-127977-c64a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 258028}, {\\\"time\\\": 2, \\\"offset\\\": 308490}, {\\\"time\\\": 3, \\\"offset\\\": 387148}, {\\\"time\\\": 4, \\\"offset\\\": 481260}, {\\\"time\\\": 5, \\\"offset\\\": 532483}, {\\\"time\\\": 10, \\\"offset\\\": 857164}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.73, \\\"v960\\\": 94.855, \\\"v864\\\": 95.965, \\\"v720\\\": 97.33}, \\\"ori\\\": {\\\"v1080\\\": 83.093, \\\"v960\\\": 84.635, \\\"v864\\\": 86.76, \\\"v720\\\": 89.87}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 18, 26, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.378, 0.391, 0.786, 0.314, 0.405, 0.888, 0.327, 0.378, 0.865, 0.31, 0.391, 0.87, 0.869], \\\"dec2play\\\": [56773, 56773, 55278, 54958, 53055, 56179, 55719, 53227, 55823, 55278, 52869, 55788, 54958, 52578, 51704]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 94.847, \\\"sr20\\\": 102.744}}\",\"audio_bit_rate\":64048}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.83],\\\"DRR\\\":23.5,\\\"RCD\\\":[-1.3],\\\"MP\\\":-5.69,\\\"BE\\\":[59.2,10395.2],\\\"OCF\\\":[-20.7223,-14.1056,-7.9557,-4.1827,-4.5255,-14.7389,-16.4781,-27.5062,-35.9892,-50.5953],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 494032,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/8df3916375d3a6a79da26a9db4e825b2/6a09c069/video/tos/useast5/tos-useast5-ve-0068c003-tx/o0oMQ0FlC5kEmCWeHgDAIWf8j4TAiCvISoE5fv/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=482&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZGhpMzVmOTNlZzo8OzZoOUBpMzRsOng5cjQ7OjMzZzczNEAzNjBiLTZjNV8xYi1hNi0xYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/ca2052f6b3b16c94f3136d3495955d8c/6a09c069/video/tos/useast5/tos-useast5-ve-0068c003-tx/o0oMQ0FlC5kEmCWeHgDAIWf8j4TAiCvISoE5fv/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=482&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZGhpMzVmOTNlZzo8OzZoOUBpMzRsOng5cjQ7OjMzZzczNEAzNjBiLTZjNV8xYi1hNi0xYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=460e93d809e74dbb80f69c02e03f9e6a&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjViNzQ3YjdjMTIzMDBjOGUxYTI2ODI2MjNhMzFjZWNk&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc1_540p_494032",
                                      "data_size": 9459668,
                                      "file_hash": "6f552cd568049ec7b7676c2e77eef63a",
                                      "file_cs": "c:0-127603-7954",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 225957}, {\\\"time\\\": 2, \\\"offset\\\": 267609}, {\\\"time\\\": 3, \\\"offset\\\": 344555}, {\\\"time\\\": 4, \\\"offset\\\": 422455}, {\\\"time\\\": 5, \\\"offset\\\": 471275}, {\\\"time\\\": 10, \\\"offset\\\": 749764}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 88.904, \\\"v960\\\": 90.998, \\\"v864\\\": 92.764, \\\"v720\\\": 94.914}, \\\"ori\\\": {\\\"v1080\\\": 78.045, \\\"v960\\\": 80.927, \\\"v864\\\": 82.963, \\\"v720\\\": 86.645}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 89.345, \\\"sr20\\\": 97.241}}\",\"audio_bit_rate\":64048,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"0\",\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.83],\\\"DRR\\\":23.5,\\\"RCD\\\":[-1.3],\\\"MP\\\":-5.69,\\\"BE\\\":[59.2,10395.2],\\\"OCF\\\":[-20.7223,-14.1056,-7.9557,-4.1827,-4.5255,-14.7389,-16.4781,-27.5062,-35.9892,-50.5953],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.6}}\",\"srqa3_0_ori\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 306307,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/b1d1fa84dd52bc2e8e5a3fd8cbb5c98b/6a09c069/video/tos/useast5/tos-useast5-ve-0068c002-tx/oEF4AiFfELfWxRQAgnIG5neoRXS9AsyzOIeJYG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=299&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZWRkPDxpOmlpZWg1PDY7PEBpMzRsOng5cjQ7OjMzZzczNEA1YmEvXzA2X2AxNV4uYmIyYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/bf05a960f54505b4dbecafe1d8da0294/6a09c069/video/tos/useast5/tos-useast5-ve-0068c002-tx/oEF4AiFfELfWxRQAgnIG5neoRXS9AsyzOIeJYG/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=299&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZWRkPDxpOmlpZWg1PDY7PEBpMzRsOng5cjQ7OjMzZzczNEA1YmEvXzA2X2AxNV4uYmIyYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=59e8e319a28e4bcfbf973fb929daea8b&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjRjNzQ0OTQwZDg3YTMyNzhkMTExOTBiYTY0N2E0N2Y5&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc1_540p_306307",
                                      "data_size": 5865132,
                                      "file_hash": "c0c560d36bf2dcd0f0a755771689e05c",
                                      "file_cs": "c:0-127619-c984",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 189326}, {\\\"time\\\": 2, \\\"offset\\\": 212902}, {\\\"time\\\": 3, \\\"offset\\\": 259591}, {\\\"time\\\": 4, \\\"offset\\\": 301436}, {\\\"time\\\": 5, \\\"offset\\\": 329042}, {\\\"time\\\": 10, \\\"offset\\\": 496953}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 83.25, \\\"v960\\\": 85.3, \\\"v864\\\": 87.387, \\\"v720\\\": 90.012}, \\\"ori\\\": {\\\"v1080\\\": 71.884, \\\"v960\\\": 75.362, \\\"v864\\\": 77.283, \\\"v720\\\": 81.428}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24033,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  }
                                ],
                                "duration": 153181,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3f472ce076c484a08741a622e7f39d21/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/a21517b027e038efdc8256ee22f2eb60/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=9f2349e5ebd1446d85eeae42ad3da26d&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjkyMzEwZDY2MjI3MjE2ZmIzZjRiOTA2M2MzNjUyNjBm&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_h264_720p_938806",
                                  "data_size": 17975916,
                                  "file_hash": "36e6c59405e161933f6deab9c63b2166",
                                  "file_cs": "c:0-126384-8f52",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=338229f1&x-expires=1779087600&x-signature=4%2BbRfFz37UcEyiYBcOMlM9q7Ols%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=ceabddcf&x-expires=1779087600&x-signature=lLsY2eOhrcw44EpuXD4ozCd6ulo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0c648ce6&x-expires=1779087600&x-signature=Y9nH31yiEcLJOagMhRHgvXiptE0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 0,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 153,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 153.16667,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/oEC4gDWQ0LFoHJEfIA895kTeCnjMfA53EQ5CEi",
                                      "tos-useast5-p-0068-tx/oIeTLjQABOAnJ9f8nCXI9ifwReskPRAjMFQGQz",
                                      "tos-useast5-p-0068-tx/os9o5LFGIGnffyRsCAKzAteYgeFJxjOIcogaQJ",
                                      "tos-useast5-p-0068-tx/oYEhE4efAW8jAQ59T5Q35DFAIMH9kofCCCD0Dt",
                                      "tos-useast5-p-0068-tx/oATfv8CCQko0CM4IQEg9xHAvEjFejkf58A5DWE",
                                      "tos-useast5-p-0068-tx/ocfeCoEkfCHF5n0QEQM68oAGC4WA9T35DIj9Ev",
                                      "tos-useast5-p-0068-tx/ok5EW8A0QEC5EerHoCTI9D9CfQa5kMIfAA4FPj"
                                    ],
                                    "img_urls": [
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEC4gDWQ0LFoHJEfIA895kTeCnjMfA53EQ5CEi~tplv-noop.image?dr=12525&refresh_token=408dbca3&x-expires=1779023977&x-signature=hzhFC1E%2BTfCa3zNWuVRMQdlqtx8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIeTLjQABOAnJ9f8nCXI9ifwReskPRAjMFQGQz~tplv-noop.image?dr=12525&refresh_token=8e142a5b&x-expires=1779023977&x-signature=eQ7jp%2B7XlAAhLnCN0JzepkNGcKc%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/os9o5LFGIGnffyRsCAKzAteYgeFJxjOIcogaQJ~tplv-noop.image?dr=12525&refresh_token=4dc9fd7a&x-expires=1779023977&x-signature=nlhIH7kDsWBx5Hh%2FcLRz%2BfGCx44%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYEhE4efAW8jAQ59T5Q35DFAIMH9kofCCCD0Dt~tplv-noop.image?dr=12525&refresh_token=9e997a67&x-expires=1779023977&x-signature=ZL2s9x0AqcU7L8A9cEOg0QtdB3k%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oATfv8CCQko0CM4IQEg9xHAvEjFejkf58A5DWE~tplv-noop.image?dr=12525&refresh_token=8be9562c&x-expires=1779023977&x-signature=ScgOhpgP13YKiJg1ECcbhuRjDq0%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocfeCoEkfCHF5n0QEQM68oAGC4WA9T35DIj9Ev~tplv-noop.image?dr=12525&refresh_token=e0ecb845&x-expires=1779023977&x-signature=MqCPuW%2BZhd6z053QFlI7D6K012E%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ok5EW8A0QEC5EerHoCTI9D9CfQa5kMIfAA4FPj~tplv-noop.image?dr=12525&refresh_token=ba8e5558&x-expires=1779023977&x-signature=PW6DNivp9XSz3LxTCc39egyqn3Q%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7v8b17og65ue77ic1d0"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/23d8eb92b6398d4712a3a40717d6b7b9/6a09c069/video/tos/useast5/tos-useast5-ve-0068c004-tx/o8C8FTHHfACFg5DEI6h9W4IA5Fjfof9WMkEQH0/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=591&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NDk3NGY8NzVoZ2c2Nmc0NEBpMzRsOng5cjQ7OjMzZzczNEBfMl9eNGFeXzAxXy02NjNeYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/3f9c7cfc3fc23b20fd502e6e031847e9/6a09c069/video/tos/useast5/tos-useast5-ve-0068c004-tx/o8C8FTHHfACFg5DEI6h9W4IA5Fjfof9WMkEQH0/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=591&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NDk3NGY8NzVoZ2c2Nmc0NEBpMzRsOng5cjQ7OjMzZzczNEBfMl9eNGFeXzAxXy02NjNeYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=a1619d9303bd4d3eb2a4d97ca1b456b1&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmZjNzViMzMwZDY2YTllMDBhY2M1YzEzYWQ2YWY4N2Mz&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_bytevc1_540p_605379",
                                  "data_size": 11591723,
                                  "file_hash": "f71b15a34899170ee8192953ae7f64f7",
                                  "file_cs": "c:0-127621-5a47",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"4.6\",\"LoudnessRangeEnd\":\"-21.3\",\"LoudnessRangeStart\":\"-25.9\",\"MaximumMomentaryLoudness\":\"-15\",\"MaximumShortTermLoudness\":\"-20.3\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-22.5,\\\"LoudnessRange\\\":4.6,\\\"Metrics\\\":{\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.01,\\\"SingingRatio\\\":0.16,\\\"SpeechRatio\\\":0.8},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"MaxSTLoud\\\":-19.8,\\\"Loud\\\":-22.45,\\\"LoudR\\\":4.8,\\\"LoudRE\\\":-20.7,\\\"LoudRS\\\":-25.5,\\\"MaxMomLoud\\\":-15.03}},\\\"Cutoff\\\":{\\\"FCenL\\\":2291.28,\\\"FCenR\\\":2567.1,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0,\\\"Spkr200G\\\":0.08},\\\"Loudness\\\":{\\\"Integrated\\\":-22.485},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.272},\\\"RMSStats\\\":{\\\"RTotal\\\":-27.675,\\\"LRDiff\\\":2.399,\\\"LTotal\\\":-25.276,\\\"Peak\\\":-5.816},\\\"Version\\\":\\\"1.4.2\\\"},\\\"Peak\\\":0.51286,\\\"Version\\\":2,\\\"LoudnessRangeEnd\\\":-21.3,\\\"LoudnessRangeStart\\\":-25.9,\\\"MaximumMomentaryLoudness\\\":-15,\\\"MaximumShortTermLoudness\\\":-20.3}\",\"bright_ratio_mean\":\"0.0058\",\"brightness_mean\":\"50.4307\",\"diff_overexposure_ratio\":\"0.0034\",\"loudness\":\"-22.5\",\"overexposure_ratio_mean\":\"0.0053\",\"peak\":\"0.51286\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778288081}\",\"sr_score\":\"1.000\",\"std_brightness\":\"8.8208\",\"vq_score\":\"50.44\"}",
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=338229f1&x-expires=1779087600&x-signature=4%2BbRfFz37UcEyiYBcOMlM9q7Ols%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=ceabddcf&x-expires=1779087600&x-signature=lLsY2eOhrcw44EpuXD4ozCd6ulo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0c648ce6&x-expires=1779087600&x-signature=Y9nH31yiEcLJOagMhRHgvXiptE0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=338229f1&x-expires=1779087600&x-signature=4%2BbRfFz37UcEyiYBcOMlM9q7Ols%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=ceabddcf&x-expires=1779087600&x-signature=lLsY2eOhrcw44EpuXD4ozCd6ulo%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okkMf0LjCQ45Ih5HEToAYWD8FEfBACdYnQEeDM~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0c648ce6&x-expires=1779087600&x-signature=Y9nH31yiEcLJOagMhRHgvXiptE0%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 660
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/91511942a916748f773b95fdb2e761de/6a30f909/video/tos/useast5/tos-useast5-v-0068-tx/744078cb36fd40af9407689d1c7ea35e/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4881&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzRsOng5cjQ7OjMzZzczNEBpMzRsOng5cjQ7OjMzZzczNEBhYDRiMmQ0X3NhLS1kMS9zYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594377,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7637689491645500000,
                                      "is_auto_generated": true,
                                      "sub_id": -2029375694,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7637689491645500000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/91511942a916748f773b95fdb2e761de/6a30f909/video/tos/useast5/tos-useast5-v-0068-tx/744078cb36fd40af9407689d1c7ea35e/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4881&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzRsOng5cjQ7OjMzZzczNEBpMzRsOng5cjQ7OjMzZzczNEBhYDRiMmQ0X3NhLS1kMS9zYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/8f79b0009f1b09c12bcbdf07f590525d/6a30f909/video/tos/useast5/tos-useast5-v-0068-tx/744078cb36fd40af9407689d1c7ea35e/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4881&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzRsOng5cjQ7OjMzZzczNEBpMzRsOng5cjQ7OjMzZzczNEBhYDRiMmQ0X3NhLS1kMS9zYSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjEzZTRjNjI1NDNjNTIyNmVhNmEyZTJiMzFjMTRhZTdh&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                      ],
                                      "caption_length": 2035,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10049\",\"rec_audio_effect\":\"1\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03000002\\\",\\\"tag_03010301\\\"],\\\"TRS\\\":[0.8,0.1,0.1,0.06,0.06],\\\"TACM\\\":[0.83],\\\"DRR\\\":23.5,\\\"RCD\\\":[-1.5],\\\"MP\\\":-5.82,\\\"BE\\\":[59.2,10572.8],\\\"OCF\\\":[-21.0768,-14.1622,-7.739,-4.1444,-4.6165,-14.9172,-16.8118,-27.7278,-35.7753,-50.871],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7v8b17og65ue77ic1d0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3f472ce076c484a08741a622e7f39d21/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/a21517b027e038efdc8256ee22f2eb60/6a09c069/video/tos/useast5/tos-useast5-pve-0068-tx/okXHWDDeFiCEfD9pSjO0ACMI485QIkgfATo5aE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=916&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZzVnZzVoaDhnNzRlODw2aUBpMzRsOng5cjQ7OjMzZzczNEAzXjBeMV5iNTMxYWJiMS82YSNhYDRiMmQ0X3NhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=9f2349e5ebd1446d85eeae42ad3da26d&is_play_url=1&item_id=7637689056901483789&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjkyMzEwZDY2MjI3MjE2ZmIzZjRiOTA2M2MzNjUyNjBm&source=PUBLISH&video_id=v12044gd0000d7v8b17og65ue77ic1d0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7v8b17og65ue77ic1d0_h264_720p_938806",
                                  "data_size": 17975916,
                                  "file_hash": "36e6c59405e161933f6deab9c63b2166",
                                  "file_cs": "c:0-126384-8f52",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7637689056901483789",
                                "comment_count": 601,
                                "digg_count": 24307,
                                "download_count": 132,
                                "play_count": 392280,
                                "share_count": 6082,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 11,
                                "collect_count": 633,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7637689056901483789",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "1"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7637689056901483789?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7637689056901483789&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7637689056901483789",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 28,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"#teabythesea\",\"\",\"According to Ciara West apparently slept with some old bag of nails from Real Housewives and everybody is losing their mind.  \"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 0,
                                  "tag_id": "1"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "Jen fessler",
                                        "word_id": "5462314140025380743",
                                        "penetrate_info": "{\"direct_to_tako\":\"\",\"ecom_trigger_info\":\"\",\"words_type_to_dmp_list\":\"\",\"lvl1_category_id\":\"\",\"poi_card_id_list\":\"\",\"lvl3_cate_list\":\"\",\"word_type_list\":\"\",\"word_type_version_map\":\"\",\"recall_reason\":\"video_sar_top_counter_passive_recall,shortterm_manual_attribute_recall,v2q_two_tower_recall\",\"is_time_sensitive\":\"0\",\"visualize_sug_product_id\":\"\",\"hot_level\":\"0\",\"ecom_intent\":\"0\",\"ecom_trigger_info_map\":\"\",\"video_id\":\"\",\"is_ramandan_promotion\":\"\",\"words_type_to_voucher_ids\":\"\",\"generate_time\":\"0\",\"sug_user_id\":\"\",\"predict_ctr_score\":0.011478548041472504}",
                                        "word_record": {
                                          "words_lang": "fr",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7637689056901484000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 153161,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "<h id=\"1\">#teabythesea</h><br><br>According to Ciara West apparently slept with some old bag of nails from Real Housewives and everybody is losing their mind.  ",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "1"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0015320689303558682}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "Jen fessler"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "5462314140025380743"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7637689112880811000,
                                "id_str": "7637689112880810766",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637689154322664205.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637689154322664205.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 153,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7637689056901483789,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7v8bl7og65n3hdcesl0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7637689112880810766",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 153,
                                "shoot_duration": 153,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 153,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 153.20813,
                                  "shoot_duration_precision": 153.20813,
                                  "audition_duration_precision": 153.20813,
                                  "video_duration_precision": 153.20813
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778288086,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7637689112880811000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.5012907291383355, \\\"1\\\": 4.5013030158695075, \\\"0\\\": 4.501266581045596}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": 0.0003620727089588928, \\\"2\\\": 0.00016588177644930163, \\\"-1\\\": 0.00017732657429704585}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003663363707391018, \\\"2\\\": 0.0006588662181227777, \\\"-1\\\": 6.162066196895659e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.83],\\\"drr\\\":23.6,\\\"rcd\\\":[-1.4],\\\"mp\\\":-5.77,\\\"be\\\":[59.2,10443.6],\\\"ocf\\\":[-20.7315,-14.0177,-7.9078,-4.1843,-4.518,-14.998,-16.6829,-27.6021,-35.9255,-50.3944],\\\"il\\\":-22.6}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.83],\\\"drr\\\":23.5,\\\"rcd\\\":[-1.3],\\\"mp\\\":-5.69,\\\"be\\\":[59.2,10395.2],\\\"ocf\\\":[-20.7223,-14.1056,-7.9557,-4.1827,-4.5255,-14.7389,-16.4781,-27.5062,-35.9892,-50.5953],\\\"il\\\":-22.6}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.83],\\\"drr\\\":23.5,\\\"rcd\\\":[-1.5],\\\"mp\\\":-5.82,\\\"be\\\":[59.2,10572.8],\\\"ocf\\\":[-21.0768,-14.1622,-7.739,-4.1444,-4.6165,-14.9172,-16.8118,-27.7278,-35.7753,-50.871],\\\"il\\\":-22.5},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03000002\\\",\\\"tag_03010301\\\"],\\\"trs\\\":[0.8,0.1,0.1,0.06,0.06]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10049\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7637219990181055757",
                            "caption": "#teabythesea I would like to officially squash any beef I have with Bailey from Summer House.",
                            "createdAt": "2026-05-07T18:34:20.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7637219990181055757",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osW827gffAI8gxvkFBRpzyBx2iDSiE5MNmpIc9~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=b309febb&x-expires=1779087600&x-signature=375CEQv9m%2FmS%2FKv0tSm597GYA10%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 242267,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 291466,
                              "likes": 11678,
                              "comments": 382,
                              "shares": 1548,
                              "saves": 294
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/87d3e0e3db470d2a87c2ecd371c25301/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c003-tx/ooxx1QSBpB297IMiiuvmIAINEDW8ff4gzRE5P2/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1580&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTxkZGQ5NWhkOTo0Zzs1Z0BpanVydnc5cnVnOjMzZzczNEBjYjIwL19gX14xLTVfMC9fYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/89d219cb487eb53ecd0d3dd87d3bf5a6/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7637219980420845000,
                                "id_str": "7637219980420844302",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637220059189906189.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637220059189906189.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 242,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7637219990181055757,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7udmcvog65o214to38g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7637219980420844302",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 242,
                                "shoot_duration": 242,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 242,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 242.28569,
                                  "shoot_duration_precision": 242.28569,
                                  "audition_duration_precision": 242.28569,
                                  "video_duration_precision": 242.28569
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778178868,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7637219980420845000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/89d219cb487eb53ecd0d3dd87d3bf5a6/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/cda07d94a4eb389cb0acc1c7f4997113/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=cb617061247d41ccbde30254551073b9&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM3YjZjYjYxZDFiOGRlZjdhYjk5MWVlMjU1MjEwZTky&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7udhrfog65t6sqoprog_h264_720p_1777259",
                                  "data_size": 53821431,
                                  "file_hash": "8395502bd41d24067acb1928612928eb",
                                  "file_cs": "c:0-200020-fab8",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/osW827gffAI8gxvkFBRpzyBx2iDSiE5MNmpIc9",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osW827gffAI8gxvkFBRpzyBx2iDSiE5MNmpIc9~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=b309febb&x-expires=1779087600&x-signature=375CEQv9m%2FmS%2FKv0tSm597GYA10%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osW827gffAI8gxvkFBRpzyBx2iDSiE5MNmpIc9~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=470403cd&x-expires=1779087600&x-signature=XL9nkOxfNl0HSZ3AmC70WnZEUIk%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osW827gffAI8gxvkFBRpzyBx2iDSiE5MNmpIc9~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=a163584f&x-expires=1779087600&x-signature=x%2B5ajdS3%2FlFZ1Nhxq9RBr2wf%2BnA%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/owQjjkTANSObAti8DHQZ3fFbDeECsAf6E2IFmz",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owQjjkTANSObAti8DHQZ3fFbDeECsAf6E2IFmz~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=6224e964&x-expires=1779087600&x-signature=psWiWqWhr%2F8SljTCUZS2m47LHqA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owQjjkTANSObAti8DHQZ3fFbDeECsAf6E2IFmz~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=ae420902&x-expires=1779087600&x-signature=yhoebjVdsioPLDCxXvG%2FRKBCaZs%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owQjjkTANSObAti8DHQZ3fFbDeECsAf6E2IFmz~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=67bd73a4&x-expires=1779087600&x-signature=VEFknFmUsIlNyPMaBsMWwru3Yy4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oI7ixEBMIbRS3x42Jf9N8ImWpyd2zB5zfBigAD",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oI7ixEBMIbRS3x42Jf9N8ImWpyd2zB5zfBigAD~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=f39bf529&x-expires=1779087600&x-signature=V7%2BqG97aySZOq1Mae8mGZ8lHQ9w%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oI7ixEBMIbRS3x42Jf9N8ImWpyd2zB5zfBigAD~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=aadc58dd&x-expires=1779087600&x-signature=poYo3wAa0PiZ0KoiFO5tyAbqrcs%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oI7ixEBMIbRS3x42Jf9N8ImWpyd2zB5zfBigAD~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=81b05cf0&x-expires=1779087600&x-signature=4wJxbE56nxm%2B%2FFlxRvzX5GCPIFE%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/87d3e0e3db470d2a87c2ecd371c25301/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c003-tx/ooxx1QSBpB297IMiiuvmIAINEDW8ff4gzRE5P2/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1580&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTxkZGQ5NWhkOTo0Zzs1Z0BpanVydnc5cnVnOjMzZzczNEBjYjIwL19gX14xLTVfMC9fYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/0c5cad80de6f917e47b2600d5f0c5ccf/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c003-tx/ooxx1QSBpB297IMiiuvmIAINEDW8ff4gzRE5P2/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1580&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTxkZGQ5NWhkOTo0Zzs1Z0BpanVydnc5cnVnOjMzZzczNEBjYjIwL19gX14xLTVfMC9fYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7udhrfog65t6sqoprog&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=bd2238bd810746aabec2b62a3a5ae9f6&item_id=7637219990181055757&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNhY2Q2MTJlYTk1OTJlNGZjMGFmYWYxYmM2MWVhMzdk&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 49008374,
                                  "file_cs": "c:0-200020-fab8",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1671277,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/d0848b6758255887cd38385c0e8c2192/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c002-tx/oQ8M7wuERENApSpf9HIQzWBpRDxiiD2mBgFx5f/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTw4OTc6Nzs8ZWdpNTY4O0BpanVydnc5cnVnOjMzZzczNEBjLmAtYC5gXjExLTUuLzVjYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/9b1bcc226731d1f5bd8bbfc64ed00ecd/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c002-tx/oQ8M7wuERENApSpf9HIQzWBpRDxiiD2mBgFx5f/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OTw4OTc6Nzs8ZWdpNTY4O0BpanVydnc5cnVnOjMzZzczNEBjLmAtYC5gXjExLTUuLzVjYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=f88523128f0d4b49a8c417c406c519f6&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjZjZWU0YmQ5MjY1NTMxOTdmNjlhM2Q1YmYyZDY5YmRl&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc1_1080p_1671277",
                                      "data_size": 50611915,
                                      "file_hash": "d88021c907dfd1369427aeb76f88df66",
                                      "file_cs": "c:0-200774-4188",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 568063}, {\\\"time\\\": 2, \\\"offset\\\": 756341}, {\\\"time\\\": 3, \\\"offset\\\": 960308}, {\\\"time\\\": 4, \\\"offset\\\": 1162574}, {\\\"time\\\": 5, \\\"offset\\\": 1402578}, {\\\"time\\\": 10, \\\"offset\\\": 2703811}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.246, \\\"v960\\\": 98.27, \\\"v864\\\": 98.807, \\\"v720\\\": 99.542}, \\\"ori\\\": {\\\"v1080\\\": 90.928, \\\"v960\\\": 92.9, \\\"v864\\\": 94.148, \\\"v720\\\": 95.919}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96046,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"55\",\"srqa3_0_ori\":\"50\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 882779,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/5b94d4a74ede4ddfca4f3193fe4418e6/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/oIyf33EIQHATt8ffm5Fk8YrZipjsNIAbDCNjg6/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=862&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTloNjY8Njc0NTtkOjlnNEBpanVydnc5cnVnOjMzZzczNEAxNC8uYV4uNTMxXl5eLi8wYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/d41d687efe3544cd588f9f00612a9ea8/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/oIyf33EIQHATt8ffm5Fk8YrZipjsNIAbDCNjg6/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=862&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTloNjY8Njc0NTtkOjlnNEBpanVydnc5cnVnOjMzZzczNEAxNC8uYV4uNTMxXl5eLi8wYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=312d16a7aaa842618413a9d3132e7642&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmE5YjZiN2JkZTJhMTU0YTY2OTAwMjlmYjA1ZjEwODMz&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc1_720p_882779",
                                      "data_size": 26733543,
                                      "file_hash": "c27216d11f8fc6ba4f19b135e9e7203c",
                                      "file_cs": "c:0-200789-fb62",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 414836}, {\\\"time\\\": 2, \\\"offset\\\": 496393}, {\\\"time\\\": 3, \\\"offset\\\": 597372}, {\\\"time\\\": 4, \\\"offset\\\": 700926}, {\\\"time\\\": 5, \\\"offset\\\": 834886}, {\\\"time\\\": 10, \\\"offset\\\": 1543488}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 91.643, \\\"v960\\\": 93.942, \\\"v864\\\": 95.61, \\\"v720\\\": 97.726}, \\\"ori\\\": {\\\"v1080\\\": 80.667, \\\"v960\\\": 84.373, \\\"v864\\\": 87.206, \\\"v720\\\": 91.432}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.498, \\\"sr20\\\": 94.975}}\",\"audio_bit_rate\":96046,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.69],\\\"DRR\\\":22.2,\\\"RCD\\\":[-3.2],\\\"MP\\\":-5.78,\\\"BE\\\":[59.2,9372.3],\\\"OCF\\\":[-20.4741,-14.5315,-7.7338,-3.9034,-4.8036,-15.5763,-17.1713,-26.396,-36.8072,-52.2191],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.7}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 642583,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/2e611cf6c6acd083f9cb1c56323eb326/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAjW8mRNBEv2x89xAMiQShR27BfIpSDIiUgzEf/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=627&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDU0ZTY2Ojw8OWY5OjxnZkBpanVydnc5cnVnOjMzZzczNEA2YDA0M2BhNV4xYGBjNjE1YSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/9a07d2b053cb5fe4a45bd14afdde88f2/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAjW8mRNBEv2x89xAMiQShR27BfIpSDIiUgzEf/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=627&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDU0ZTY2Ojw8OWY5OjxnZkBpanVydnc5cnVnOjMzZzczNEA2YDA0M2BhNV4xYGBjNjE1YSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=8c4d99f7c6cc46a989d7c3637b31c29e&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNjNWQ4ZTBhOTg1ZjNmMzIwZDQ1NTM1MGI5MWU4NmE5&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc2_540p_642583",
                                      "data_size": 19459612,
                                      "file_hash": "2cfb1f3dbce1e46ce21b27c14827bc62",
                                      "file_cs": "c:0-201231-bb9a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 371386}, {\\\"time\\\": 2, \\\"offset\\\": 425176}, {\\\"time\\\": 3, \\\"offset\\\": 471680}, {\\\"time\\\": 4, \\\"offset\\\": 541841}, {\\\"time\\\": 5, \\\"offset\\\": 629277}, {\\\"time\\\": 10, \\\"offset\\\": 1069711}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.613, \\\"v960\\\": 92.864, \\\"v864\\\": 94.987, \\\"v720\\\": 97.268}, \\\"ori\\\": {\\\"v1080\\\": 76.427, \\\"v960\\\": 80.467, \\\"v864\\\": 83.874, \\\"v720\\\": 88.266}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 0, 17, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.0, 0.52, 1.853, 0.535, 0.821, 1.857, 0.52, 0.829, 1.775, 0.557, 0.871, 1.886, 1.846], \\\"dec2play\\\": [79516, 79516, 79516, 78197, 71866, 78675, 77598, 72261, 78197, 77429, 71294, 78137, 77019, 70859, 69183]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 85.252, \\\"sr20\\\": 93.902}}\",\"audio_bit_rate\":64030}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.68],\\\"DRR\\\":22.2,\\\"RCD\\\":[-3.1],\\\"MP\\\":-5.56,\\\"BE\\\":[53.8,9286.2],\\\"OCF\\\":[-20.1582,-14.5241,-7.75,-3.9141,-4.8079,-15.4822,-17.0326,-26.3902,-36.9735,-52.3523],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.7}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 594459,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/e677caff147c8812ea056bf9610b6bb2/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c002-tx/ocpKSL8N2B7ImAiR9DMEzmPQRfEWg5fzCx4Bix/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=580&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTY6ZWU6ZDgzNGdkNGk2PEBpanVydnc5cnVnOjMzZzczNEAuNGMvNF5fXjIxMzJgYWNiYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/8d33a8d0f33672c79706904fccad97d6/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c002-tx/ocpKSL8N2B7ImAiR9DMEzmPQRfEWg5fzCx4Bix/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=580&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTY6ZWU6ZDgzNGdkNGk2PEBpanVydnc5cnVnOjMzZzczNEAuNGMvNF5fXjIxMzJgYWNiYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=e9f3dfc15a6d4150a5baa77b2bf7731f&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmYwYjVlNDlmMjcyNmFiYjc5YmJiMmVlMGVjMGM5ZWM5&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc1_540p_594459",
                                      "data_size": 18002236,
                                      "file_hash": "fab47e7d789d7544f2c69faf0e1b82ca",
                                      "file_cs": "c:0-200775-d35d",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 336315}, {\\\"time\\\": 2, \\\"offset\\\": 396470}, {\\\"time\\\": 3, \\\"offset\\\": 460781}, {\\\"time\\\": 4, \\\"offset\\\": 525960}, {\\\"time\\\": 5, \\\"offset\\\": 605606}, {\\\"time\\\": 10, \\\"offset\\\": 1053777}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 84.193, \\\"v960\\\": 88.145, \\\"v864\\\": 90.788, \\\"v720\\\": 94.202}, \\\"ori\\\": {\\\"v1080\\\": 71.73, \\\"v960\\\": 76.298, \\\"v864\\\": 79.773, \\\"v720\\\": 85.228}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 80.158, \\\"sr20\\\": 88.808}}\",\"audio_bit_rate\":64030,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"0\",\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.68],\\\"DRR\\\":22.2,\\\"RCD\\\":[-3.1],\\\"MP\\\":-5.56,\\\"BE\\\":[53.8,9286.2],\\\"OCF\\\":[-20.1582,-14.5241,-7.75,-3.9141,-4.8079,-15.4822,-17.0326,-26.3902,-36.9735,-52.3523],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.7}}\",\"srqa3_0_ori\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 389765,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/9062d937a5518a4d5cfdb45a31612adf/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/o0iRWCE89b8zQzBMBgfxiNASQxI7lLd2Dmfp4E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Zjg4MzM6Ojw2M2VkZjNmOkBpanVydnc5cnVnOjMzZzczNEAuMGEvYTRgNWMxLS5fYTEzYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/699e63e810098d3f105974f9752e7973/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/o0iRWCE89b8zQzBMBgfxiNASQxI7lLd2Dmfp4E/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=380&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Zjg4MzM6Ojw2M2VkZjNmOkBpanVydnc5cnVnOjMzZzczNEAuMGEvYTRgNWMxLS5fYTEzYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=674cd0bc1a0b40f389c777d020d5351c&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjJhOTQyNThhZmVhZTZjZmY0YTc3YzIyMGIzYjdiYjNk&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc1_540p_389765",
                                      "data_size": 11803428,
                                      "file_hash": "ac8caa7b548f69de5737422afcd73726",
                                      "file_cs": "c:0-200791-6ba6",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 291458}, {\\\"time\\\": 2, \\\"offset\\\": 328865}, {\\\"time\\\": 3, \\\"offset\\\": 368606}, {\\\"time\\\": 4, \\\"offset\\\": 408977}, {\\\"time\\\": 5, \\\"offset\\\": 460262}, {\\\"time\\\": 10, \\\"offset\\\": 763029}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 77.594, \\\"v960\\\": 81.975, \\\"v864\\\": 84.893, \\\"v720\\\": 89.299}, \\\"ori\\\": {\\\"v1080\\\": 65.352, \\\"v960\\\": 70.154, \\\"v864\\\": 74.149, \\\"v720\\\": 80.009}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24021,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  }
                                ],
                                "duration": 242267,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/89d219cb487eb53ecd0d3dd87d3bf5a6/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/cda07d94a4eb389cb0acc1c7f4997113/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=cb617061247d41ccbde30254551073b9&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM3YjZjYjYxZDFiOGRlZjdhYjk5MWVlMjU1MjEwZTky&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7udhrfog65t6sqoprog_h264_720p_1777259",
                                  "data_size": 53821431,
                                  "file_hash": "8395502bd41d24067acb1928612928eb",
                                  "file_cs": "c:0-200020-fab8",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4f3e2912&x-expires=1779087600&x-signature=%2FzBuAmYsHwnaabX4DNftLv1hWr8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=9b80e9e9&x-expires=1779087600&x-signature=4I2dhrTyl9HpvtnEq6JTuuJDYws%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=65b406d8&x-expires=1779087600&x-signature=5nwfCso%2BrkBsMhZ6bXOKC7A8b4k%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 2,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 242,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 242.26666,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/oUAkDE0pSi2DqRMIxx8fBi2f7BmiNmI97CMWzg",
                                      "tos-useast5-p-0068-tx/oUjiW2M0IN9ESifB78iBfDxRx2AiDFmgXJGpIz",
                                      "tos-useast5-p-0068-tx/ow8M7LmERINA0Sif9vIDzWBp9TxiiD2mBgAx2f",
                                      "tos-useast5-p-0068-tx/ocpvI87EABijMgBjx2DBfi09xDS42IzNRmfWXD",
                                      "tos-useast5-p-0068-tx/oYwAIxSRBEgmNLBMDWgi7f0JIf2Wp2iBzDx98A",
                                      "tos-useast5-p-0068-tx/owfQIYqiEFAbjfFAQjRDktsZN32Qj6T8AHmfC0",
                                      "tos-useast5-p-0068-tx/osbfkQtQDsBjNC23AEf0AiFMZFbmeTHIj6ijJ8",
                                      "tos-useast5-p-0068-tx/o8bQp03mHDtfskZ5XiFvAjQEjA6BGetfI0CTBN",
                                      "tos-useast5-p-0068-tx/oAicISxfm07IWbER22fpNDixxQtBzbgDAM9j8B",
                                      "tos-useast5-p-0068-tx/o0QIZfFf3QDyt6EAjidAfmEbT8QhjhsHk90N2C"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUAkDE0pSi2DqRMIxx8fBi2f7BmiNmI97CMWzg~tplv-noop.image?dr=12525&refresh_token=6f887ff6&x-expires=1779024066&x-signature=Y9AZ8w8xjx3FUr3ZZPiBRydOf0E%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUjiW2M0IN9ESifB78iBfDxRx2AiDFmgXJGpIz~tplv-noop.image?dr=12525&refresh_token=1054a622&x-expires=1779024066&x-signature=1HgdDYiHpGYSvlXosSkQUiUkJI8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ow8M7LmERINA0Sif9vIDzWBp9TxiiD2mBgAx2f~tplv-noop.image?dr=12525&refresh_token=e9710f3e&x-expires=1779024066&x-signature=hR2ykLqDFK54d4q%2FdugikfjO%2FuI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocpvI87EABijMgBjx2DBfi09xDS42IzNRmfWXD~tplv-noop.image?dr=12525&refresh_token=1ef91c93&x-expires=1779024066&x-signature=dxRTRLy1c8qha5BXMrOis6NyHY8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYwAIxSRBEgmNLBMDWgi7f0JIf2Wp2iBzDx98A~tplv-noop.image?dr=12525&refresh_token=49a6e385&x-expires=1779024066&x-signature=NGHFfCF%2BcYAIPJ0OYMwAWkrOrjM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owfQIYqiEFAbjfFAQjRDktsZN32Qj6T8AHmfC0~tplv-noop.image?dr=12525&refresh_token=ded7c5ae&x-expires=1779024066&x-signature=XqGsHDs1R%2F4c0TyhoFWhCnhbKq8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osbfkQtQDsBjNC23AEf0AiFMZFbmeTHIj6ijJ8~tplv-noop.image?dr=12525&refresh_token=0dc9f7d5&x-expires=1779024066&x-signature=hfhyeDnI0vTRAreHRd9Q5PjiYCQ%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8bQp03mHDtfskZ5XiFvAjQEjA6BGetfI0CTBN~tplv-noop.image?dr=12525&refresh_token=d92225d0&x-expires=1779024066&x-signature=nvDwv7ECEkBPyt9hD1fau2B%2BOsQ%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oAicISxfm07IWbER22fpNDixxQtBzbgDAM9j8B~tplv-noop.image?dr=12525&refresh_token=e1334102&x-expires=1779024066&x-signature=ZXEnWrpsnrduLP2tl1LNY3AjgQE%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0QIZfFf3QDyt6EAjidAfmEbT8QhjhsHk90N2C~tplv-noop.image?dr=12525&refresh_token=48ad7766&x-expires=1779024066&x-signature=jKhsTveiYD1fO7NhJM4m0gihC5E%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7udhrfog65t6sqoprog"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/6d6a055098df447795f116c477f20369/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c004-tx/oADzTpmBNMxiEWiRa7EQZCASW5gfx2982rfITB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=671&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ODNkNWk2ZDw6ZGg5Njg7OUBpanVydnc5cnVnOjMzZzczNEAyMGI0L2IvNjIxXzRjXl8zYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/0e40c3212aa83108e1dc07be0bb64efd/6a09c0c2/video/tos/useast5/tos-useast5-ve-0068c004-tx/oADzTpmBNMxiEWiRa7EQZCASW5gfx2982rfITB/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=671&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ODNkNWk2ZDw6ZGg5Njg7OUBpanVydnc5cnVnOjMzZzczNEAyMGI0L2IvNjIxXzRjXl8zYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=66b8a5f376be4a57992ae32f72ea3055&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQxOTc5Njg4Yjc0NGM5ZTBmYjg5MzUzZjQwOTNiZWY4&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7udhrfog65t6sqoprog_bytevc1_540p_687440",
                                  "data_size": 20818019,
                                  "file_hash": "a894f79d7e3fb71baf6adae64c42103b",
                                  "file_cs": "c:0-200789-a5e8",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"4.8\",\"LoudnessRangeEnd\":\"-20.7\",\"LoudnessRangeStart\":\"-25.4\",\"MaximumMomentaryLoudness\":\"-14.3\",\"MaximumShortTermLoudness\":\"-17.4\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Peak\\\":0.51286,\\\"Version\\\":2,\\\"LoudnessRange\\\":4.8,\\\"MaximumMomentaryLoudness\\\":-14.3,\\\"LoudnessRangeStart\\\":-25.4,\\\"MaximumShortTermLoudness\\\":-17.4,\\\"Metrics\\\":{\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.745},\\\"RMSStats\\\":{\\\"Peak\\\":-5.777,\\\"RTotal\\\":-28.57,\\\"LRDiff\\\":4.375,\\\"LTotal\\\":-24.195},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0,\\\"SingingRatio\\\":0.21,\\\"SpeechRatio\\\":0.81},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"MaxMomLoud\\\":-14.3,\\\"MaxSTLoud\\\":-17.38,\\\"Loud\\\":-22.45,\\\"LoudR\\\":5.2,\\\"LoudRE\\\":-20.2,\\\"LoudRS\\\":-25.4}},\\\"Cutoff\\\":{\\\"FCenL\\\":2347.79,\\\"FCenR\\\":2937.01,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.03,\\\"Spkr200G\\\":0.13},\\\"Loudness\\\":{\\\"Integrated\\\":-22.548}},\\\"Loudness\\\":-22.6,\\\"LoudnessRangeEnd\\\":-20.7}\",\"bright_ratio_mean\":\"0.0633\",\"brightness_mean\":\"146.5259\",\"diff_overexposure_ratio\":\"0.0235\",\"loudness\":\"-22.6\",\"overexposure_ratio_mean\":\"0.0285\",\"peak\":\"0.51286\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778178862}\",\"sr_score\":\"1.000\",\"std_brightness\":\"6.9771\",\"vq_score\":\"63.09\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4f3e2912&x-expires=1779087600&x-signature=%2FzBuAmYsHwnaabX4DNftLv1hWr8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=9b80e9e9&x-expires=1779087600&x-signature=4I2dhrTyl9HpvtnEq6JTuuJDYws%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=65b406d8&x-expires=1779087600&x-signature=5nwfCso%2BrkBsMhZ6bXOKC7A8b4k%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=4f3e2912&x-expires=1779087600&x-signature=%2FzBuAmYsHwnaabX4DNftLv1hWr8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=9b80e9e9&x-expires=1779087600&x-signature=4I2dhrTyl9HpvtnEq6JTuuJDYws%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYT8kY5btC3QNAFj6HZQmmJDSfIsAffntjtDEi~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=65b406d8&x-expires=1779087600&x-signature=5nwfCso%2BrkBsMhZ6bXOKC7A8b4k%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 0,
                                  "enable_auto_caption": 0,
                                  "caption_infos": null,
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": false,
                                  "captions_type": 0,
                                  "no_caption_reason": 1,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 1
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10014\",\"rec_audio_effect\":\"1\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010301\\\",\\\"tag_03010308\\\",\\\"tag_02010001\\\"],\\\"TRS\\\":[0.8,0.11,0.11,0.1,0.05],\\\"TACM\\\":[0.69],\\\"DRR\\\":21.8,\\\"RCD\\\":[-3.3],\\\"MP\\\":-5.78,\\\"BE\\\":[59.2,9668.4],\\\"OCF\\\":[-20.824,-14.6748,-7.7547,-3.9183,-4.766,-15.4419,-17.1363,-26.1801,-36.4285,-51.7094],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7udhrfog65t6sqoprog",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/89d219cb487eb53ecd0d3dd87d3bf5a6/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/cda07d94a4eb389cb0acc1c7f4997113/6a09c0c2/video/tos/useast5/tos-useast5-pve-0068-tx/os5NAeGDTRnNLfzHeIeFG3bi50vWtbRYAIOEcg/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1735&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDYzODc1NmdmNGc3NDM0ZUBpanVydnc5cnVnOjMzZzczNEBfNC4yMi1iX2AxNC8zNDNgYSNsbW4zMmRjZXJhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=cb617061247d41ccbde30254551073b9&is_play_url=1&item_id=7637219990181055757&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM3YjZjYjYxZDFiOGRlZjdhYjk5MWVlMjU1MjEwZTky&source=PUBLISH&video_id=v12044gd0000d7udhrfog65t6sqoprog"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7udhrfog65t6sqoprog_h264_720p_1777259",
                                  "data_size": 53821431,
                                  "file_hash": "8395502bd41d24067acb1928612928eb",
                                  "file_cs": "c:0-200020-fab8",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7637219990181055757",
                                "comment_count": 382,
                                "digg_count": 11678,
                                "download_count": 24,
                                "play_count": 291466,
                                "share_count": 1548,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 5,
                                "collect_count": 294,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7637219990181055757",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "1"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7637219990181055757?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7637219990181055757&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7637219990181055757",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 27,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"#teabythesea\",\"\",\"I would like to officially squash any beef I have with Bailey from Summer House. \"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 0,
                                  "tag_id": "1"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "bailey summer house",
                                        "word_id": "3230209706336223648",
                                        "penetrate_info": "{\"sug_user_id\":\"\",\"lvl3_cate_list\":\"\",\"recall_reason\":\"video_top_counter_recall,global_video_top_counter_recall,shortterm_manual_attribute_recall,v2q_two_tower_recall,video_sar_top_counter_passive_recall\",\"direct_to_tako\":\"\",\"predict_ctr_score\":0.01731074231433809,\"word_type_version_map\":\"\",\"lvl1_category_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"poi_card_id_list\":\"\",\"ecom_intent\":\"0\",\"video_id\":\"\",\"visualize_sug_product_id\":\"\",\"words_type_to_dmp_list\":\"\",\"generate_time\":\"0\",\"ecom_trigger_info\":\"\",\"is_time_sensitive\":\"0\",\"hot_level\":\"0\",\"ecom_trigger_info_map\":\"\",\"word_type_list\":\"\",\"is_ramandan_promotion\":\"\"}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7637219990181055000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 242233,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "<h id=\"1\">#teabythesea</h><br><br>I would like to officially squash any beef I have with Bailey from Summer House. ",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "1"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.001310615989515072}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "bailey summer house"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "3230209706336223648"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7637219980420845000,
                                "id_str": "7637219980420844302",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637220059189906189.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7637220059189906189.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 242,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7637219990181055757,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7udmcvog65o214to38g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7637219980420844302",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 242,
                                "shoot_duration": 242,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 242,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 242.28569,
                                  "shoot_duration_precision": 242.28569,
                                  "audition_duration_precision": 242.28569,
                                  "video_duration_precision": 242.28569
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778178868,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7637219980420845000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.5012648134757525, \\\"1\\\": 4.5012771002069245, \\\"0\\\": 4.501240665383013}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": 3.683281497350474e-05, \\\"2\\\": -8.443260930370494e-05, \\\"-1\\\": -5.3441344392362725e-06}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 8.845343095009815e-06, \\\"2\\\": 0.0003223257590781456, \\\"-1\\\": -0.0003251763777214897}\",\"PACK_VOD:audio_meta\":\"{\\\"5a5b8d83ca26180d6aed655d795d36fd\\\":{\\\"Md5\\\":\\\"5a5b8d83ca26180d6aed655d795d36fd\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.69],\\\"drr\\\":21.9,\\\"rcd\\\":[-2.7],\\\"mp\\\":-5.95,\\\"be\\\":[59.2,9366.9],\\\"ocf\\\":[-20.5281,-14.5491,-7.7273,-3.9016,-4.8066,-15.5743,-17.159,-26.4022,-36.9032,-51.55],\\\"il\\\":-22.7}}},\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.69],\\\"drr\\\":22.2,\\\"rcd\\\":[-3.2],\\\"mp\\\":-5.78,\\\"be\\\":[59.2,9372.3],\\\"ocf\\\":[-20.4741,-14.5315,-7.7338,-3.9034,-4.8036,-15.5763,-17.1713,-26.396,-36.8072,-52.2191],\\\"il\\\":-22.7}}},\\\"7ae7274e0b648da6ade67bd575f6fc81\\\":{\\\"Md5\\\":\\\"7ae7274e0b648da6ade67bd575f6fc81\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.68],\\\"drr\\\":21.9,\\\"rcd\\\":[-2.7],\\\"mp\\\":-5.8,\\\"be\\\":[59.2,9280.8],\\\"ocf\\\":[-20.2152,-14.52,-7.7654,-3.9232,-4.7908,-15.47,-16.9999,-26.3883,-37.0563,-51.6905],\\\"il\\\":-22.7}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.68],\\\"drr\\\":22.2,\\\"rcd\\\":[-3.1],\\\"mp\\\":-5.56,\\\"be\\\":[53.8,9286.2],\\\"ocf\\\":[-20.1582,-14.5241,-7.75,-3.9141,-4.8079,-15.4822,-17.0326,-26.3902,-36.9735,-52.3523],\\\"il\\\":-22.7}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.69],\\\"drr\\\":21.8,\\\"rcd\\\":[-3.3],\\\"mp\\\":-5.78,\\\"be\\\":[59.2,9668.4],\\\"ocf\\\":[-20.824,-14.6748,-7.7547,-3.9183,-4.766,-15.4419,-17.1363,-26.1801,-36.4285,-51.7094],\\\"il\\\":-22.5},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010301\\\",\\\"tag_03010308\\\",\\\"tag_02010001\\\"],\\\"trs\\\":[0.8,0.11,0.11,0.1,0.05]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10014\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7636860434187947277",
                            "caption": "The tea is slow by the sea but felt like we needed something to chit chat about.    #teabythesea",
                            "createdAt": "2026-05-06T19:19:26.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7636860434187947277",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQivIkzf4ETIqUIjwleT2FifHdZBkTAHAE1K7C~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=f4a87f11&x-expires=1779087600&x-signature=LyyliUricVWFZiUennR8D82JCFk%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 146700,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 300047,
                              "likes": 14197,
                              "comments": 219,
                              "shares": 788,
                              "saves": 234
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/ab7ba01a484d383e463be2227c8d696b/6a09c062/video/tos/useast5/tos-useast5-ve-0068c003-tx/oAMEIHiumkkwzTi7HQBAEfe1j2TAlCPIg4iqfp/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1820&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWc0ZDczZGlkZDwzMzQ1OkBpam07PG85cnJyOjMzZzczNEAyYjU0YjYuNmExMy0zMTYyYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/399b1586ceb51155a88efcb5d7631055/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7636860539355942000,
                                "id_str": "7636860539355941646",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7636860585670691597.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7636860585670691597.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 146,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7636860434187947277,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7tp8gnog65qki6p7mag\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7636860539355941646",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 146,
                                "shoot_duration": 146,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 146,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 146.72975,
                                  "shoot_duration_precision": 146.72975,
                                  "audition_duration_precision": 146.72975,
                                  "video_duration_precision": 146.72975
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778095171,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7636860539355942000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": [
                                {
                                  "cid": "1671940928843781",
                                  "cha_name": "teabythesea",
                                  "desc": "",
                                  "schema": "aweme://aweme/challenge/detail?cid=1671940928843781",
                                  "author": {
                                    "followers_detail": null,
                                    "platform_sync_info": null,
                                    "geofencing": null,
                                    "cover_url": null,
                                    "item_list": null,
                                    "type_label": null,
                                    "ad_cover_url": null,
                                    "relative_users": null,
                                    "cha_list": null,
                                    "need_points": null,
                                    "homepage_bottom_toast": null,
                                    "can_set_geofencing": null,
                                    "white_cover_url": null,
                                    "user_tags": null,
                                    "bold_fields": null,
                                    "search_highlight": null,
                                    "mutual_relation_avatars": null,
                                    "events": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "user_profile_guide": null,
                                    "shield_edit_field_info": null,
                                    "can_message_follow_status_list": null,
                                    "account_labels": null
                                  },
                                  "user_count": 0,
                                  "share_info": {
                                    "share_url": "https://www.tiktok.com/tag/teabythesea?_r=1&name=teabythesea&u_code=ec83l71am96edh&_d=f3f19032i98f95&share_challenge_id=1671940928843781&sharer_language=en&source=h5_m",
                                    "share_desc": "Check out #teabythesea on TikTok!",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: teabythesea",
                                    "bool_persist": 0,
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_signature_url": "",
                                    "share_signature_desc": "",
                                    "share_quote": "",
                                    "share_desc_info": "Check out #teabythesea on TikTok!",
                                    "now_invitation_card_image_urls": null
                                  },
                                  "connect_music": [],
                                  "type": 1,
                                  "sub_type": 0,
                                  "is_pgcshow": false,
                                  "collect_stat": 0,
                                  "is_challenge": 0,
                                  "view_count": 0,
                                  "is_commerce": false,
                                  "hashtag_profile": "",
                                  "cha_attrs": null,
                                  "banner_list": null,
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "show_items": null,
                                  "search_highlight": null,
                                  "use_count": 0
                                }
                              ],
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/399b1586ceb51155a88efcb5d7631055/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/ac0b5ad2311d8665481f36afbcc69480/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=ee29e6d2aac7429ab185d0bca2092c6e&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjk5MWZhMzEwZmRjZTAzMGYyMzJkM2M4MmU4NmVjOWRj&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7tovofog65lr9588j3g_h264_720p_2053323",
                                  "data_size": 37652823,
                                  "file_hash": "1692b6f6930b6c66b22a0e15cdc02923",
                                  "file_cs": "c:0-121980-5311",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/oQivIkzf4ETIqUIjwleT2FifHdZBkTAHAE1K7C",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQivIkzf4ETIqUIjwleT2FifHdZBkTAHAE1K7C~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=f4a87f11&x-expires=1779087600&x-signature=LyyliUricVWFZiUennR8D82JCFk%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQivIkzf4ETIqUIjwleT2FifHdZBkTAHAE1K7C~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=7db36312&x-expires=1779087600&x-signature=oMLfAfRTlwC3MANKBQ9twqv9hY8%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQivIkzf4ETIqUIjwleT2FifHdZBkTAHAE1K7C~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=b60e114f&x-expires=1779087600&x-signature=NuMLKHyKfe0WDsCuOeFaaMpbWUs%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/osm3jxOjTQkPI1HrKC9FCXfEQUDFtsAIhAfeOJ",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osm3jxOjTQkPI1HrKC9FCXfEQUDFtsAIhAfeOJ~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=3ac16093&x-expires=1779087600&x-signature=vrJwW1Cck4wb5fcrjhldOxRYGIM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osm3jxOjTQkPI1HrKC9FCXfEQUDFtsAIhAfeOJ~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=0327e1a2&x-expires=1779087600&x-signature=MoSpyzrMPMrNDGD4e%2B40sj4b0Dc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osm3jxOjTQkPI1HrKC9FCXfEQUDFtsAIhAfeOJ~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=8b054d89&x-expires=1779087600&x-signature=Peqkkd5rOoZNEtgFxeUmIyolGWE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/okEIA0eI2q0lHHTHki4wIDiO7B1HfRATjCCfDk",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okEIA0eI2q0lHHTHki4wIDiO7B1HfRATjCCfDk~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=1f434bd7&x-expires=1779087600&x-signature=quk%2FnDX1A2%2BBA6S%2FccTlxPLRyFI%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okEIA0eI2q0lHHTHki4wIDiO7B1HfRATjCCfDk~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=0482581b&x-expires=1779087600&x-signature=Lob1nhrb4v0tpfNqZXiyYxhE7v8%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okEIA0eI2q0lHHTHki4wIDiO7B1HfRATjCCfDk~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=a1f88dc4&x-expires=1779087600&x-signature=3lqQj94ut52KkcAj2yxqLkULlVs%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/ab7ba01a484d383e463be2227c8d696b/6a09c062/video/tos/useast5/tos-useast5-ve-0068c003-tx/oAMEIHiumkkwzTi7HQBAEfe1j2TAlCPIg4iqfp/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1820&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWc0ZDczZGlkZDwzMzQ1OkBpam07PG85cnJyOjMzZzczNEAyYjU0YjYuNmExMy0zMTYyYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/c99953cf25301ef9a5e9bb1c62df5db0/6a09c062/video/tos/useast5/tos-useast5-ve-0068c003-tx/oAMEIHiumkkwzTi7HQBAEfe1j2TAlCPIg4iqfp/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1820&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OWc0ZDczZGlkZDwzMzQ1OkBpam07PG85cnJyOjMzZzczNEAyYjU0YjYuNmExMy0zMTYyYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7tovofog65lr9588j3g&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=5792416000694ada9f1a90e47a81ed56&item_id=7636860434187947277&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjI1ZmYyNmY0ZDE0NzU1MzUyNzllODJlNDQzOTQ2YzY4&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 34180172,
                                  "file_cs": "c:0-121980-5311",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_lowest_1080_1",
                                    "quality_type": 2,
                                    "bit_rate": 1754195,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/d0cd9fad830369f06d94254fcddc2ce1/6a09c062/video/tos/useast5/tos-useast5-ve-0068c001-tx/oE4Im95IjItA3k6frvQgJUDTWHOFEHhxCAff19/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1713&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OGRpZmQ1ODdkZDQ8OzQ4aEBpam07PG85cnJyOjMzZzczNEBhMi0vNi00NS4xMzYwNi1jYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/5e0adb2959bf13b47f5363dbee31eede/6a09c062/video/tos/useast5/tos-useast5-ve-0068c001-tx/oE4Im95IjItA3k6frvQgJUDTWHOFEHhxCAff19/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1713&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OGRpZmQ1ODdkZDQ8OzQ4aEBpam07PG85cnJyOjMzZzczNEBhMi0vNi00NS4xMzYwNi1jYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=fe05913899614a1a8475029a2c0f5ad5&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjFjMzM1NjQ3MzBhYzgyNjkwYWEzYzM5YWQ2NzYzMmY4&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "width": 1080,
                                      "height": 1920,
                                      "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc1_1080p_1754195",
                                      "data_size": 32167566,
                                      "file_hash": "fd2d33c723a909aec301f53d06e23254",
                                      "file_cs": "c:0-122266-fda2",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 517661}, {\\\"time\\\": 2, \\\"offset\\\": 686794}, {\\\"time\\\": 3, \\\"offset\\\": 926753}, {\\\"time\\\": 4, \\\"offset\\\": 1138085}, {\\\"time\\\": 5, \\\"offset\\\": 1414324}, {\\\"time\\\": 10, \\\"offset\\\": 2542370}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 97.208, \\\"v960\\\": 98.244, \\\"v864\\\": 98.882, \\\"v720\\\": 99.496}, \\\"ori\\\": {\\\"v1080\\\": 90.477, \\\"v960\\\": 92.145, \\\"v864\\\": 93.633, \\\"v720\\\": 95.605}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"11b0345f3bf185ddbe7c48bd7301980f\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":96076,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwCWAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwCWAACgAhyAHgWWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAAADAIAAAA8E\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"50\",\"srqa3_0_srv1\":\"55\"}"
                                  },
                                  {
                                    "gear_name": "adapt_lower_720_1",
                                    "quality_type": 14,
                                    "bit_rate": 876608,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/e23ab38faf0b815cd0c991fb30d496d3/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/ocG4qIXDRFR7ogIj4eG0RTXOmffcjAMSAaAeLn/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=856&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzZnaWQ8ZDY4NTc6NmVkPEBpam07PG85cnJyOjMzZzczNEAxYTUtYV80XmExLmBfLWAvYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/82b8e0eb6a89611b364dc8e521744e8f/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/ocG4qIXDRFR7ogIj4eG0RTXOmffcjAMSAaAeLn/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=856&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzZnaWQ8ZDY4NTc6NmVkPEBpam07PG85cnJyOjMzZzczNEAxYTUtYV80XmExLmBfLWAvYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=29ca0bb3c71442d5a37ab9da0f8dd348&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmRkMWQzYjcxNzA0OGNiNWE2YjAxN2ZlZjdhNTcwNzQz&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "width": 720,
                                      "height": 1280,
                                      "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc1_720p_876608",
                                      "data_size": 16074810,
                                      "file_hash": "36bc24cb05eb348619b9ba9effd3a0e1",
                                      "file_cs": "c:0-122277-c330",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 327835}, {\\\"time\\\": 2, \\\"offset\\\": 391219}, {\\\"time\\\": 3, \\\"offset\\\": 505942}, {\\\"time\\\": 4, \\\"offset\\\": 609476}, {\\\"time\\\": 5, \\\"offset\\\": 741231}, {\\\"time\\\": 10, \\\"offset\\\": 1305962}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 90.517, \\\"v960\\\": 93.653, \\\"v864\\\": 95.44, \\\"v720\\\": 97.484}, \\\"ori\\\": {\\\"v1080\\\": 79.44, \\\"v960\\\": 83.548, \\\"v864\\\": 86.408, \\\"v720\\\": 90.966}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"b8c989270607d5e62ead5df699944ebf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 86.798, \\\"sr20\\\": 93.267}}\",\"audio_bit_rate\":96076,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwC6AACIJEFgSA==\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwC6AACgBaIAUBZYgkQXJIkQTNCERERERhH8Thy/v/X82fl/6/mUPkv7/1/Nn5f+v4zhAIOagICAggAAAwACAAADADwQ\\\", \\\"pps\\\": \\\"AcElPA7J\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.87],\\\"DRR\\\":21.4,\\\"RCD\\\":[-2.6],\\\"MP\\\":-5.73,\\\"BE\\\":[48.4,10244.4],\\\"OCF\\\":[-18.4175,-11.146,-6.6115,-4.3673,-5.6285,-14.6281,-18.276,-27.9462,-36.5195,-51.565],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 605102,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/6858143e0ce3c38cd515c81f8fa3bd08/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/oYMDFCUtxIrKmnf3QgVeEfOhkS96TIAJZHIjA3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=590&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTw4Ojk0NDM6OTU4NmkzZUBpam07PG85cnJyOjMzZzczNEAtYWA0YGFhXy0xMmEwYDFeYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/bf07ad6a949280356d4c46091cc54671/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/oYMDFCUtxIrKmnf3QgVeEfOhkS96TIAJZHIjA3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=590&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTw4Ojk0NDM6OTU4NmkzZUBpam07PG85cnJyOjMzZzczNEAtYWA0YGFhXy0xMmEwYDFeYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=ab40cf33d5524607b0d1d1c677c5d90f&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjhjYWYxZDRjOWFiM2Q5ZDRhOTJhM2FiNzRkNDNkOTE4&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc2_540p_605102",
                                      "data_size": 11096066,
                                      "file_hash": "4034841c201b714b3a7e570b2c2ad7e6",
                                      "file_cs": "c:0-122655-4a15",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 289684}, {\\\"time\\\": 2, \\\"offset\\\": 348130}, {\\\"time\\\": 3, \\\"offset\\\": 410205}, {\\\"time\\\": 4, \\\"offset\\\": 485070}, {\\\"time\\\": 5, \\\"offset\\\": 581542}, {\\\"time\\\": 10, \\\"offset\\\": 963922}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 88.684, \\\"v960\\\": 91.985, \\\"v864\\\": 94.174, \\\"v720\\\": 96.944}, \\\"ori\\\": {\\\"v1080\\\": 73.114, \\\"v960\\\": 78.751, \\\"v864\\\": 82.841, \\\"v720\\\": 87.384}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 9, 17, 17, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.337, 0.371, 0.371, 1.769, 0.337, 0.729, 1.821, 0.371, 0.716, 1.832, 0.375, 0.767, 1.741, 1.813], \\\"dec2play\\\": [81859, 80201, 80116, 80116, 72084, 80201, 79621, 72552, 80116, 79383, 71430, 80207, 79149, 70753, 69837]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 80.485, \\\"sr20\\\": 89.207}}\",\"audio_bit_rate\":64050}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_srv1\":\"0\",\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":21.2,\\\"RCD\\\":[-2.5],\\\"MP\\\":-5.76,\\\"BE\\\":[48.4,10158.3],\\\"OCF\\\":[-18.1697,-11.0974,-6.6323,-4.3908,-5.626,-14.5526,-18.126,-27.8817,-36.6393,-51.6204],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}}\",\"srqa3_0_ori\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 546047,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/20f6d57711575b0f71224aade74928f0/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/ogOjr9EXUTt6a3kfIJfhM9AQDfASFHgmICGTxI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=533&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTg0aTs1OzQ1Mzc2ZGRkZUBpam07PG85cnJyOjMzZzczNEAtLjIwNGAuXzExMDFfYzIwYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/76b8fb7a76ac9749c60a27f4d0aa644f/6a09c062/video/tos/useast5/tos-useast5-pve-0068-tx/ogOjr9EXUTt6a3kfIJfhM9AQDfASFHgmICGTxI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=533&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTg0aTs1OzQ1Mzc2ZGRkZUBpam07PG85cnJyOjMzZzczNEAtLjIwNGAuXzExMDFfYzIwYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3b5afaba43344042b118c2783f51150b&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI3OWJlNzMzNmMyYjJkMmMyYzVjZGZlOTdhMDE5MGNi&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc1_540p_546047",
                                      "data_size": 10013145,
                                      "file_hash": "94722d331ff41203c75ac4d1ec460884",
                                      "file_cs": "c:0-122267-f8a2",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 262163}, {\\\"time\\\": 2, \\\"offset\\\": 317466}, {\\\"time\\\": 3, \\\"offset\\\": 394953}, {\\\"time\\\": 4, \\\"offset\\\": 464055}, {\\\"time\\\": 5, \\\"offset\\\": 551029}, {\\\"time\\\": 10, \\\"offset\\\": 910428}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 82.161, \\\"v960\\\": 86.255, \\\"v864\\\": 89.369, \\\"v720\\\": 93.047}, \\\"ori\\\": {\\\"v1080\\\": 68.76, \\\"v960\\\": 74.23, \\\"v864\\\": 78.431, \\\"v720\\\": 84.11}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 76.094, \\\"sr20\\\": 84.816}}\",\"audio_bit_rate\":64050,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":21.2,\\\"RCD\\\":[-2.5],\\\"MP\\\":-5.76,\\\"BE\\\":[48.4,10158.3],\\\"OCF\\\":[-18.1697,-11.0974,-6.6323,-4.3908,-5.626,-14.5526,-18.126,-27.8817,-36.6393,-51.6204],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.5}}\",\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 347436,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/323bdde15f6b5e9bb2ee83d9e400fcce/6a09c062/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAkDOMnJEvfgIwFAT0mAUMxftfrjChI93QHEJI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=339&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTdmNTdmZGY6M2g0OGZoPEBpam07PG85cnJyOjMzZzczNEAvLV41NjBeXjExM2AvM2FgYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/b2e44ae5385a0ba14c9fd94bef6ee88c/6a09c062/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAkDOMnJEvfgIwFAT0mAUMxftfrjChI93QHEJI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=339&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTdmNTdmZGY6M2g0OGZoPEBpam07PG85cnJyOjMzZzczNEAvLV41NjBeXjExM2AvM2FgYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c9de6c25c16e4047acaa3c9482ac0422&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmVjOWMzZTY4MjcyMGY1MjQ0YzM0YThkOGQzZTRjMDBj&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc1_540p_347436",
                                      "data_size": 6371114,
                                      "file_hash": "e3e988115c4baae5cc79352c31c22c78",
                                      "file_cs": "c:0-122283-92c4",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 216692}, {\\\"time\\\": 2, \\\"offset\\\": 248403}, {\\\"time\\\": 3, \\\"offset\\\": 293804}, {\\\"time\\\": 4, \\\"offset\\\": 335884}, {\\\"time\\\": 5, \\\"offset\\\": 390616}, {\\\"time\\\": 10, \\\"offset\\\": 617764}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 75.55, \\\"v960\\\": 80.16, \\\"v864\\\": 83.186, \\\"v720\\\": 87.824}, \\\"ori\\\": {\\\"v1080\\\": 62.598, \\\"v960\\\": 68.46, \\\"v864\\\": 72.44, \\\"v720\\\": 78.923}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24033,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmoCAgIIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 30,
                                    "fid_profile_labels": "{\"srqa3_0_ori\":\"0\",\"srqa3_0_srv1\":\"0\"}"
                                  }
                                ],
                                "duration": 146700,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/399b1586ceb51155a88efcb5d7631055/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/ac0b5ad2311d8665481f36afbcc69480/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=ee29e6d2aac7429ab185d0bca2092c6e&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjk5MWZhMzEwZmRjZTAzMGYyMzJkM2M4MmU4NmVjOWRj&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7tovofog65lr9588j3g_h264_720p_2053323",
                                  "data_size": 37652823,
                                  "file_hash": "1692b6f6930b6c66b22a0e15cdc02923",
                                  "file_cs": "c:0-121980-5311",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=671baad1&x-expires=1779087600&x-signature=bPtZ0Kl0xyXTdsMHQkrUR7towoA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a15c263e&x-expires=1779087600&x-signature=tDuLh6udlSJ1indg3KfENN8%2FBHw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=b7891d69&x-expires=1779087600&x-signature=KzfrBpiSGkfTq4rZ5aEbCQVzLNg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 2,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 147,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 146.7,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/oMYTI87ijkkfEfHHlAD4YIJeIA2Tq1BNvwJHiC",
                                      "tos-useast5-p-0068-tx/o4kJ7AE54kDZqiITzeifHCA3TlqOfHI2j2B1Iw",
                                      "tos-useast5-p-0068-tx/oEfjIIf2H1wp7rk7TCCaIyqlADiJHTA4eEBkti",
                                      "tos-useast5-p-0068-tx/ocklJD5HT7HFUTq7C1iiAfBwIeAjYaRII2fEk4",
                                      "tos-useast5-p-0068-tx/owBlfABeHlvHJijqT2TwfDkIAI27CkYI3p14iE",
                                      "tos-useast5-p-0068-tx/oAefQkOthDASKJ33JxFrHjTGnIIAmC99QUfL3E"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oMYTI87ijkkfEfHHlAD4YIJeIA2Tq1BNvwJHiC~tplv-noop.image?dr=12525&refresh_token=b18eeb8a&x-expires=1779023970&x-signature=XfaxeQYXpIlkxRp2RAIknl5SwtU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4kJ7AE54kDZqiITzeifHCA3TlqOfHI2j2B1Iw~tplv-noop.image?dr=12525&refresh_token=d436a6ad&x-expires=1779023970&x-signature=1tZ7QNzUNxqOpOFAHC1VlFVcV4I%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEfjIIf2H1wp7rk7TCCaIyqlADiJHTA4eEBkti~tplv-noop.image?dr=12525&refresh_token=c9e6a6d5&x-expires=1779023970&x-signature=wuOAKkbUyJ7OP%2B5okky7Nwz1i00%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocklJD5HT7HFUTq7C1iiAfBwIeAjYaRII2fEk4~tplv-noop.image?dr=12525&refresh_token=0a87af9d&x-expires=1779023970&x-signature=G4oQx5RKzgt5DwnZDhXmILIiReI%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owBlfABeHlvHJijqT2TwfDkIAI27CkYI3p14iE~tplv-noop.image?dr=12525&refresh_token=ca31bd81&x-expires=1779023970&x-signature=RvHnsHPE370i2m1Dy2SKqFFDi40%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oAefQkOthDASKJ33JxFrHjTGnIIAmC99QUfL3E~tplv-noop.image?dr=12525&refresh_token=8ae4c132&x-expires=1779023970&x-signature=Mwwf%2FXtqTbv4pLO1yBM98qqQivY%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7tovofog65lr9588j3g"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/41d5782b2d5b2c0081c7feec144a5b1c/6a09c062/video/tos/useast5/tos-useast5-ve-0068c003-tx/owfeBf1wIivkEumT2QTAiCk7IGj4AVEHbHlLqj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGU5NjQ8aGdkZDtpaGdpZUBpam07PG85cnJyOjMzZzczNEBgLzQuX182NTAxYDJgMV5hYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/e21dc43a7185c234d3b6232845e48f54/6a09c062/video/tos/useast5/tos-useast5-ve-0068c003-tx/owfeBf1wIivkEumT2QTAiCk7IGj4AVEHbHlLqj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGU5NjQ8aGdkZDtpaGdpZUBpam07PG85cnJyOjMzZzczNEBgLzQuX182NTAxYDJgMV5hYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=dbaf4dce5fc84a3a8d9eb9b113762bce&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjNmOTUwZjFjZmU3MDkzOWNmYTVhZDVhN2NkMTVmMTgy&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7tovofog65lr9588j3g_bytevc1_540p_648126",
                                  "data_size": 11885019,
                                  "file_hash": "f550758081e190ac22c0b5109278e0be",
                                  "file_cs": "c:0-122277-8c47",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"3.8\",\"LoudnessRangeEnd\":\"-20.9\",\"LoudnessRangeStart\":\"-24.7\",\"MaximumMomentaryLoudness\":\"-15.4\",\"MaximumShortTermLoudness\":\"-20.4\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Version\\\":2,\\\"LoudnessRange\\\":3.8,\\\"LoudnessRangeStart\\\":-24.7,\\\"MaximumMomentaryLoudness\\\":-15.4,\\\"Metrics\\\":{\\\"Loudness\\\":{\\\"Integrated\\\":-22.346},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.314},\\\"RMSStats\\\":{\\\"LRDiff\\\":4.199,\\\"LTotal\\\":-24.208,\\\"Peak\\\":-5.814,\\\"RTotal\\\":-28.407},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0,\\\"SingingRatio\\\":0.21,\\\"SpeechRatio\\\":0.79},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"LoudR\\\":3.9,\\\"LoudRE\\\":-20.6,\\\"LoudRS\\\":-24.5,\\\"MaxMomLoud\\\":-15.42,\\\"MaxSTLoud\\\":-19.5,\\\"Loud\\\":-22.14}},\\\"Cutoff\\\":{\\\"FCenL\\\":2120.27,\\\"FCenR\\\":2552.51,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.03,\\\"Spkr200G\\\":0.13}},\\\"Peak\\\":0.51286,\\\"Loudness\\\":-22.4,\\\"LoudnessRangeEnd\\\":-20.9,\\\"MaximumShortTermLoudness\\\":-20.4}\",\"bright_ratio_mean\":\"0.0418\",\"brightness_mean\":\"143.2671\",\"diff_overexposure_ratio\":\"0.017\",\"loudness\":\"-22.4\",\"overexposure_ratio_mean\":\"0.0304\",\"peak\":\"0.51286\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1778095167}\",\"sr_score\":\"1.000\",\"std_brightness\":\"8.9719\",\"vq_score\":\"66.49\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=671baad1&x-expires=1779087600&x-signature=bPtZ0Kl0xyXTdsMHQkrUR7towoA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a15c263e&x-expires=1779087600&x-signature=tDuLh6udlSJ1indg3KfENN8%2FBHw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=b7891d69&x-expires=1779087600&x-signature=KzfrBpiSGkfTq4rZ5aEbCQVzLNg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=671baad1&x-expires=1779087600&x-signature=bPtZ0Kl0xyXTdsMHQkrUR7towoA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a15c263e&x-expires=1779087600&x-signature=tDuLh6udlSJ1indg3KfENN8%2FBHw%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0B27HffBqT4TivIYp1CAwkHieIHlIkAjEj3WU~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=b7891d69&x-expires=1779087600&x-signature=KzfrBpiSGkfTq4rZ5aEbCQVzLNg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 1420
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/7cc14025f3aab1a77be83c8ca795ba37/6a30f902/video/tos/useast5/tos-useast5-v-0068-tx/af3786e2199248f7b9aff7e549431a05/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=8659&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=am07PG85cnJyOjMzZzczNEBpam07PG85cnJyOjMzZzczNEAwNTJvMmRjc3FhLS1kMS9zYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594370,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7636860739193867000,
                                      "is_auto_generated": true,
                                      "sub_id": -273765198,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7636860739193867000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/7cc14025f3aab1a77be83c8ca795ba37/6a30f902/video/tos/useast5/tos-useast5-v-0068-tx/af3786e2199248f7b9aff7e549431a05/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=8659&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=am07PG85cnJyOjMzZzczNEBpam07PG85cnJyOjMzZzczNEAwNTJvMmRjc3FhLS1kMS9zYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/6c44058dfbe87090cff32ec9f1188310/6a30f902/video/tos/useast5/tos-useast5-v-0068-tx/af3786e2199248f7b9aff7e549431a05/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=8659&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=am07PG85cnJyOjMzZzczNEBpam07PG85cnJyOjMzZzczNEAwNTJvMmRjc3FhLS1kMS9zYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjBhNTY5Yjg5MWI0Mzg3MjcyZDBmN2MwY2M0MTY4OWMw&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                      ],
                                      "caption_length": 2328,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03010301\\\",\\\"tag_01010226\\\"],\\\"TRS\\\":[0.83,0.16,0.15,0.07,0.04],\\\"TACM\\\":[0.87],\\\"DRR\\\":20.8,\\\"RCD\\\":[-2.7],\\\"MP\\\":-5.81,\\\"BE\\\":[48.4,10685.9],\\\"OCF\\\":[-18.1472,-10.8268,-6.6681,-4.4187,-5.6733,-14.3081,-18.1409,-27.8441,-36.3203,-51.2849],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-22.3}\",\"tier3\":\"10014\",\"rec_audio_effect\":\"1\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7tovofog65lr9588j3g",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/399b1586ceb51155a88efcb5d7631055/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/ac0b5ad2311d8665481f36afbcc69480/6a09c062/video/tos/useast5/tos-useast5-ve-0068c002-tx/o0T7w2fi6kjqQEPI2CiTAlLBAHkXjHrNf4eIE1/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=2005&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aGY8NWYzODRkNTpkNTk8aEBpam07PG85cnJyOjMzZzczNEAzLy1eX2E1XzYxYF5hYi9iYSMwNTJvMmRjc3FhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=ee29e6d2aac7429ab185d0bca2092c6e&is_play_url=1&item_id=7636860434187947277&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjk5MWZhMzEwZmRjZTAzMGYyMzJkM2M4MmU4NmVjOWRj&source=PUBLISH&video_id=v12044gd0000d7tovofog65lr9588j3g"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7tovofog65lr9588j3g_h264_720p_2053323",
                                  "data_size": 37652823,
                                  "file_hash": "1692b6f6930b6c66b22a0e15cdc02923",
                                  "file_cs": "c:0-121980-5311",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7636860434187947277",
                                "comment_count": 219,
                                "digg_count": 14197,
                                "download_count": 27,
                                "play_count": 300047,
                                "share_count": 788,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 1,
                                "collect_count": 234,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7636860434187947277",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [
                                {
                                  "start": 84,
                                  "end": 96,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "tag_id": "56"
                                }
                              ],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7636860434187947277?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7636860434187947277&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7636860434187947277",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "playlist_info": {
                                "mix_id": "7628274620319795982",
                                "name": "Tea By The Sea",
                                "index": 26,
                                "item_total": 32
                              },
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "[\"The tea is slow by the sea but felt like we needed something to chit chat about.   \",\"\",\"#teabythesea \"]",
                              "content_desc_extra": [
                                {
                                  "start": 0,
                                  "end": 12,
                                  "type": 1,
                                  "hashtag_name": "teabythesea",
                                  "hashtag_id": "1671940928843781",
                                  "is_commerce": false,
                                  "line_idx": 2,
                                  "tag_id": "56"
                                }
                              ],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "oliviaponton",
                                        "word_id": "5114798818000715812",
                                        "penetrate_info": "{\"recall_reason\":\"video_top_counter_recall,bert_viking_two_hop_recall,shortterm_manual_attribute_recall,global_video_top_counter_recall,video_sar_top_counter_passive_recall\",\"hot_level\":\"0\",\"ecom_trigger_info_map\":\"\",\"words_type_to_voucher_ids\":\"\",\"direct_to_tako\":\"\",\"is_ramandan_promotion\":\"\",\"is_time_sensitive\":\"0\",\"word_type_list\":\"\",\"poi_card_id_list\":\"\",\"ecom_trigger_info\":\"\",\"video_id\":\"\",\"ecom_intent\":\"0\",\"sug_user_id\":\"\",\"word_type_version_map\":\"\",\"lvl1_category_id\":\"\",\"visualize_sug_product_id\":\"\",\"lvl3_cate_list\":\"\",\"generate_time\":\"1738683519\",\"words_type_to_dmp_list\":\"\",\"predict_ctr_score\":0.007202682010256944}",
                                        "word_record": {
                                          "words_lang": "id",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7636860434187947000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 146666,
                              "retry_type": 1,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "The tea is slow by the sea but felt like we needed something to chit chat about.   <br><br><h id=\"56\">#teabythesea</h> ",
                                "text_extra": [
                                  {
                                    "type": 1,
                                    "hashtag_name": "teabythesea",
                                    "hashtag_id": "1671940928843781",
                                    "is_commerce": false,
                                    "tag_id": "56"
                                  }
                                ]
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0007298856512479711}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "oliviaponton"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "5114798818000715812"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7636860539355942000,
                                "id_str": "7636860539355941646",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7636860585670691597.mp3",
                                  "url_list": [
                                    "https://sf16.tiktokcdn-us.com/obj/ies-music-tx/7636860585670691597.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 146,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7636860434187947277,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7tp8gnog65qki6p7mag\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7636860539355941646",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 146,
                                "shoot_duration": 146,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 146,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 146.72975,
                                  "shoot_duration_precision": 146.72975,
                                  "audition_duration_precision": 146.72975,
                                  "video_duration_precision": 146.72975
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1778095171,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7636860539355942000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "picked_users": [],
                              "standard_component_info": {
                                "banner_enabled": true
                              },
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.5011970883945365, \\\"1\\\": 4.5012093751257085, \\\"0\\\": 4.501172940301797}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": 3.683281497350474e-05, \\\"2\\\": -8.443260930370494e-05, \\\"-1\\\": -5.3441344392362725e-06}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 8.845343095009815e-06, \\\"2\\\": 0.0003223257590781456, \\\"-1\\\": -0.0003251763777214897}\",\"PACK_VOD:audio_meta\":\"{\\\"5a5b8d83ca26180d6aed655d795d36fd\\\":{\\\"Md5\\\":\\\"5a5b8d83ca26180d6aed655d795d36fd\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":21.3,\\\"rcd\\\":[-2.5],\\\"mp\\\":-5.94,\\\"be\\\":[48.4,10292.9],\\\"ocf\\\":[-18.4157,-11.1146,-6.6093,-4.3755,-5.6303,-14.6202,-18.2549,-27.9627,-36.5655,-50.7685],\\\"il\\\":-22.5}}},\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.87],\\\"drr\\\":21.4,\\\"rcd\\\":[-2.6],\\\"mp\\\":-5.73,\\\"be\\\":[48.4,10244.4],\\\"ocf\\\":[-18.4175,-11.146,-6.6115,-4.3673,-5.6285,-14.6281,-18.276,-27.9462,-36.5195,-51.565],\\\"il\\\":-22.5}}},\\\"7ae7274e0b648da6ade67bd575f6fc81\\\":{\\\"Md5\\\":\\\"7ae7274e0b648da6ade67bd575f6fc81\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":21.2,\\\"rcd\\\":[-2.4],\\\"mp\\\":-5.55,\\\"be\\\":[48.4,10201.4],\\\"ocf\\\":[-18.1751,-11.0719,-6.6467,-4.388,-5.6273,-14.5421,-18.106,-27.9284,-36.7151,-50.8674],\\\"il\\\":-22.5}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":21.2,\\\"rcd\\\":[-2.5],\\\"mp\\\":-5.76,\\\"be\\\":[48.4,10158.3],\\\"ocf\\\":[-18.1697,-11.0974,-6.6323,-4.3908,-5.626,-14.5526,-18.126,-27.8817,-36.6393,-51.6204],\\\"il\\\":-22.5}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.87],\\\"drr\\\":20.8,\\\"rcd\\\":[-2.7],\\\"mp\\\":-5.81,\\\"be\\\":[48.4,10685.9],\\\"ocf\\\":[-18.1472,-10.8268,-6.6681,-4.4187,-5.6733,-14.3081,-18.1409,-27.8441,-36.3203,-51.2849],\\\"il\\\":-22.3},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_03010301\\\",\\\"tag_01010226\\\"],\\\"trs\\\":[0.83,0.16,0.15,0.07,0.04]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10014\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7636051412765461773",
                            "caption": "Have you heard the news?   The drink that redefined the game has redefined the game again.  Introducing High Noon Transfusions.   Don’t blink or else you’ll miss it",
                            "createdAt": "2026-05-04T15:00:06.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7636051412765461773",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=7ee8ac37&x-expires=1779087600&x-signature=5p2RyrDcs2c8aq09QgWHnRNXcKw%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=cover&biz_tag=tt_video",
                            "durationMs": 30080,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 250929,
                              "likes": 7454,
                              "comments": 111,
                              "shares": 896,
                              "saves": 104
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/1b67ef11e3b4051f37037a7f3f4fa5e5/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c003-tx/osDETtpIIceIk1eC34MDfHrjQLAFQELAE2TTEc/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1106&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDo8OjM2NmQ6ZzM8NDs2aUBpanFoOng5cjVlOjMzZzczNEBjYTQzXzExXjExL15fYWNhYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/d4e2c47dfcb0db6a7eabf9ec835df8b6/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7636051546928647000,
                                "id_str": "7636051546928646925",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7636051604919110413.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7636051604919110413.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 30,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7636051412765461773,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7sb8ufog65pssc3pe8g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7636051546928646925",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 30,
                                "shoot_duration": 30,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 30,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 30.145,
                                  "shoot_duration_precision": 30.145,
                                  "audition_duration_precision": 30.145,
                                  "video_duration_precision": 30.145
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777906813,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": null,
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/d4e2c47dfcb0db6a7eabf9ec835df8b6/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/336fd915772ff1b59a38b673e39f7f46/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c90e65ed48114f7999dcbf7436680fc3&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNjZmJhMzczYzU2OWFiZTk3MDU1MDhiMWU2ZDY2YjI0&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                  ],
                                  "width": 576,
                                  "height": 1026,
                                  "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_h264_540p_421821",
                                  "data_size": 1586047,
                                  "file_hash": "67eab8dd1a5ea827b34a37e001d26029",
                                  "file_cs": "c:0-19630-1c85",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=7ee8ac37&x-expires=1779087600&x-signature=5p2RyrDcs2c8aq09QgWHnRNXcKw%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=b40587d4&x-expires=1779087600&x-signature=mNNKqkOLRODWGQVR4iOj4lXTadg%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=e196c430&x-expires=1779087600&x-signature=D%2F1D8Rz%2Fcyss4aao4bocMWWac1Q%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=cover&biz_tag=tt_video"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1026,
                                "width": 576,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=e5869100&x-expires=1779087600&x-signature=4oCC2%2BZnQhtQCc41MxJv2Q4gtdk%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a54abd96&x-expires=1779087600&x-signature=3onguLJiYL4PiLFzNy27XtDfMHc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=b5ee3d42&x-expires=1779087600&x-signature=EWWD348rjrP56s%2FDrTMjCUs76BA%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oYaIAEeBjQTITAtf4VreXLHtc3aDICFLkcdHPp",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYaIAEeBjQTITAtf4VreXLHtc3aDICFLkcdHPp~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=bd443590&x-expires=1779087600&x-signature=zDbWhQ3wUNfxelc%2Be9dEObM5fPw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYaIAEeBjQTITAtf4VreXLHtc3aDICFLkcdHPp~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=e09ec025&x-expires=1779087600&x-signature=Ico1%2BYQOsZcaPVbpzqrqOrzwcsg%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYaIAEeBjQTITAtf4VreXLHtc3aDICFLkcdHPp~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=7fe355b5&x-expires=1779087600&x-signature=2llLwQrnmO4EuhTwCUWK88sykiY%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=feed_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "540p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/1b67ef11e3b4051f37037a7f3f4fa5e5/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c003-tx/osDETtpIIceIk1eC34MDfHrjQLAFQELAE2TTEc/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1106&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDo8OjM2NmQ6ZzM8NDs2aUBpanFoOng5cjVlOjMzZzczNEBjYTQzXzExXjExL15fYWNhYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/43cd849929739596fc3a57f9e9a58be5/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c003-tx/osDETtpIIceIk1eC34MDfHrjQLAFQELAE2TTEc/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1106&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aDo8OjM2NmQ6ZzM8NDs2aUBpanFoOng5cjVlOjMzZzczNEBjYTQzXzExXjExL15fYWNhYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7sb82vog65ue72ejnlg&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=dff3d8b1a9204d47aa4343b06779d7fe&item_id=7636051412765461773&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjQ2YmFiMjE4OTM1NjcwM2JhZjY0YTE2OTM5ODY5YTIx&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 4259959,
                                  "file_cs": "c:0-19630-1c85",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 463226,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/5c46d7d9b289e1936f31133f891608a3/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c004-tx/og4cAeDQqETBFTpQEkfCjcL71e3ctLITAEHraI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=452&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OGk4Nzs7ZDZnPGQ5Zzg0NkBpanFoOng5cjVlOjMzZzczNEBfMl4wMTM1NjQxMTEtMF4wYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/7089c572fdb65cc32494190d3988acce/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c004-tx/og4cAeDQqETBFTpQEkfCjcL71e3ctLITAEHraI/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=452&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OGk4Nzs7ZDZnPGQ5Zzg0NkBpanFoOng5cjVlOjMzZzczNEBfMl4wMTM1NjQxMTEtMF4wYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=33a1350d464a497d938a684834a55fb5&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmJlMmM2NzNkNzU4MWE0YmJkZmJiZTdkOTMzNTU0ZmQ1&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                      ],
                                      "width": 576,
                                      "height": 1026,
                                      "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_bytevc2_540p_463226",
                                      "data_size": 1741732,
                                      "file_hash": "e2d16bd4a0f3100190255268c9aa18d1",
                                      "file_cs": "c:0-20264-9c68",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 140857}, {\\\"time\\\": 2, \\\"offset\\\": 332547}, {\\\"time\\\": 3, \\\"offset\\\": 415222}, {\\\"time\\\": 4, \\\"offset\\\": 544230}, {\\\"time\\\": 5, \\\"offset\\\": 596572}, {\\\"time\\\": 10, \\\"offset\\\": 842067}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 93.315, \\\"v960\\\": 95.264, \\\"v864\\\": 95.634, \\\"v720\\\": 97.484}, \\\"ori\\\": {\\\"v1080\\\": 83.026, \\\"v960\\\": 85.393, \\\"v864\\\": 88.01, \\\"v720\\\": 90.948}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"a3b46c408e574e5999be4a0924ccd64b\",\"dec_info\":\"{\\\"simp\\\": [0, 17, 17, 26, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.317, 0.317, 0.534, 1.21, 0.351, 0.49, 1.238, 0.317, 0.485, 1.15, 0.404, 0.534, 1.189, 1.224], \\\"dec2play\\\": [54490, 53886, 53886, 53110, 50082, 53990, 53252, 49829, 53886, 53278, 49545, 53335, 53110, 49857, 48943]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 93.667, \\\"sr20\\\": 101.467}}\",\"audio_bit_rate\":48317}",
                                    "fps": 23,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":11.8,\\\"RCD\\\":[0.2],\\\"MP\\\":-8.62,\\\"BE\\\":[10.8,11267.2],\\\"OCF\\\":[-6.485,-5.2431,-6.6633,-7.3185,-12.1945,-19.9929,-24.1719,-30.3254,-36.8633,-54.6998],\\\"DO\\\":-0.0001,\\\"CTPS\\\":0,\\\"IL\\\":-21.7}}\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 442747,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/2fe5595fb45be58912191abb11362884/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYnIIlIrEFAc2eQAEjPDkLTpL3tBQeT4aHcfCk/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=432&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzQ2PGU5NGczOGQ8ZjVnPEBpanFoOng5cjVlOjMzZzczNEBeLy4uMTU0XzQxLS41MjUxYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/d9a8f16ff023c2670abf84c2481e5248/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYnIIlIrEFAc2eQAEjPDkLTpL3tBQeT4aHcfCk/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=432&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzQ2PGU5NGczOGQ8ZjVnPEBpanFoOng5cjVlOjMzZzczNEBeLy4uMTU0XzQxLS41MjUxYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=498d528c190a4570bd71864b191321a8&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmFkOTk4ZWFmOTA4NjZlNzI1Y2VhYTJkMTQyOTA1Yjhl&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                      ],
                                      "width": 576,
                                      "height": 1026,
                                      "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_bytevc1_540p_442747",
                                      "data_size": 1664729,
                                      "file_hash": "931778385d73d58a913c414aa998325f",
                                      "file_cs": "c:0-19988-a9fa",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 147784}, {\\\"time\\\": 2, \\\"offset\\\": 285804}, {\\\"time\\\": 3, \\\"offset\\\": 362476}, {\\\"time\\\": 4, \\\"offset\\\": 470731}, {\\\"time\\\": 5, \\\"offset\\\": 539959}, {\\\"time\\\": 10, \\\"offset\\\": 823651}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 89.027, \\\"v960\\\": 91.19, \\\"v864\\\": 93.113, \\\"v720\\\": 94.953}, \\\"ori\\\": {\\\"v1080\\\": 78.062, \\\"v960\\\": 81.572, \\\"v864\\\": 84.201, \\\"v720\\\": 87.574}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"cb4b6b26f5cd3ab5f982f7abda092810\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.403, \\\"sr20\\\": 96.203}}\",\"audio_bit_rate\":48317,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQJ8mWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAADAAIAAAMALhA=\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 23,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.86],\\\"DRR\\\":11.8,\\\"RCD\\\":[0.2],\\\"MP\\\":-8.62,\\\"BE\\\":[10.8,11267.2],\\\"OCF\\\":[-6.485,-5.2431,-6.6633,-7.3185,-12.1945,-19.9929,-24.1719,-30.3254,-36.8633,-54.6998],\\\"DO\\\":-0.0001,\\\"CTPS\\\":0,\\\"IL\\\":-21.7}}\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 300872,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/0ec998a76c117161bfe0c6076211aa8a/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/o4fjQIQ4W8LdHC4xvXC0IcnaAgFeHTALeTDkKE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=293&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NThmNTY6Zzo0ZDw8NTo8ZkBpanFoOng5cjVlOjMzZzczNEAvMzEyNjJeNi0xLy5iM2IxYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/7ffe85b5c9d25953362c7cf9002e8422/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/o4fjQIQ4W8LdHC4xvXC0IcnaAgFeHTALeTDkKE/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=293&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NThmNTY6Zzo0ZDw8NTo8ZkBpanFoOng5cjVlOjMzZzczNEAvMzEyNjJeNi0xLy5iM2IxYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4ce967e219294a0197ad5793524c6522&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjcxOTBmNWYwY2M1Y2FhMzAwOTNlMjEwZDZkYThhMjc0&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                      ],
                                      "width": 576,
                                      "height": 1026,
                                      "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_bytevc1_540p_300872",
                                      "data_size": 1131279,
                                      "file_hash": "ea289ca1bee2302e6c7796bcf5c4785b",
                                      "file_cs": "c:0-19988-6bed",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 119504}, {\\\"time\\\": 2, \\\"offset\\\": 229706}, {\\\"time\\\": 3, \\\"offset\\\": 287519}, {\\\"time\\\": 4, \\\"offset\\\": 366558}, {\\\"time\\\": 5, \\\"offset\\\": 418217}, {\\\"time\\\": 10, \\\"offset\\\": 610646}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 82.107, \\\"v960\\\": 84.948, \\\"v864\\\": 87.246, \\\"v720\\\": 90.122}, \\\"ori\\\": {\\\"v1080\\\": 71.96, \\\"v960\\\": 75.619, \\\"v864\\\": 78.325, \\\"v720\\\": 82.146}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"c75777d5d58ee6bfe20148b4f8856dd0\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24195,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQJ8mWdzkySUQs0RJJJJify4d/1+bPl/1+M4gQ5qAgICCAAADAAIAAAMALhA=\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 23,
                                    "fid_profile_labels": ""
                                  }
                                ],
                                "duration": 30080,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/d4e2c47dfcb0db6a7eabf9ec835df8b6/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/336fd915772ff1b59a38b673e39f7f46/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c90e65ed48114f7999dcbf7436680fc3&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNjZmJhMzczYzU2OWFiZTk3MDU1MDhiMWU2ZDY2YjI0&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                  ],
                                  "width": 576,
                                  "height": 1026,
                                  "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_h264_540p_421821",
                                  "data_size": 1586047,
                                  "file_hash": "67eab8dd1a5ea827b34a37e001d26029",
                                  "file_cs": "c:0-19630-1c85",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a54abd96&x-expires=1779087600&x-signature=3onguLJiYL4PiLFzNy27XtDfMHc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=e5869100&x-expires=1779087600&x-signature=4oCC2%2BZnQhtQCc41MxJv2Q4gtdk%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=26a1b921&x-expires=1779087600&x-signature=oHTOyeYq8RW214qiWy5kBlvIuYM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 18.37715611111111,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "tags": null,
                                "big_thumbs": [],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/1ba7464c0bd0ffdb6d320295d9b05313/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMkDrBS0EHnQEmFATR3ATtLfcQejCLIe4IHZcp/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=493&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDc4ZmQ1Omk8aGU2OzRkZEBpanFoOng5cjVlOjMzZzczNEA0MDAwNS4xXzExMzUyLmEtYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/f9160e64737d49eb2f76d9c0875616f0/6a09bfee/video/tos/useast5/tos-useast5-ve-0068c004-tx/oMkDrBS0EHnQEmFATR3ATtLfcQejCLIe4IHZcp/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=493&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=PDc4ZmQ1Omk8aGU2OzRkZEBpanFoOng5cjVlOjMzZzczNEA0MDAwNS4xXzExMzUyLmEtYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=0ada1158836b4e49bf47128a3c353479&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmZmZjFkZDgwMDRjNjIxZGFkZmU5Y2RhMTg1NzBiOWIz&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                  ],
                                  "width": 576,
                                  "height": 1026,
                                  "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_bytevc1_540p_505778",
                                  "data_size": 1901729,
                                  "file_hash": "25ae815f5ef5d8b578ff59692b6236f7",
                                  "file_cs": "c:0-20002-2cec",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"5.5\",\"LoudnessRangeEnd\":\"-19.5\",\"LoudnessRangeStart\":\"-25\",\"MaximumMomentaryLoudness\":\"-16.3\",\"MaximumShortTermLoudness\":\"-19\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-21.5,\\\"LoudnessRange\\\":5.5,\\\"LoudnessRangeStart\\\":-25,\\\"MaximumShortTermLoudness\\\":-19,\\\"Peak\\\":0.38019,\\\"Version\\\":2,\\\"LoudnessRangeEnd\\\":-19.5,\\\"MaximumMomentaryLoudness\\\":-16.3,\\\"Metrics\\\":{\\\"Loudness\\\":{\\\"Integrated\\\":-21.536},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.239},\\\"RMSStats\\\":{\\\"LTotal\\\":-24.726,\\\"Peak\\\":-8.409,\\\"RTotal\\\":-24.573,\\\"LRDiff\\\":-0.153},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0.7,\\\"MusicRatio\\\":0.8},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"MaxSTLoud\\\":-19.01,\\\"Loud\\\":-20.95,\\\"LoudR\\\":4.7,\\\"LoudRE\\\":-19.5,\\\"LoudRS\\\":-24.2,\\\"MaxMomLoud\\\":-16.25}},\\\"Cutoff\\\":{\\\"FCenL\\\":2992.6,\\\"FCenR\\\":2980.8,\\\"Spkr100G\\\":0.27,\\\"Spkr150G\\\":0.49,\\\"Spkr200G\\\":0.8}}}\",\"bright_ratio_mean\":\"0.0931\",\"brightness_mean\":\"130.2279\",\"diff_overexposure_ratio\":\"0.0529\",\"loudness\":\"-21.5\",\"overexposure_ratio_mean\":\"0.0486\",\"peak\":\"0.38019\",\"play_time_prob_dist\":\"[800,0.6141,3252.0233]\",\"sp_extra_info\":\"{\\\"origin_width\\\":606,\\\"origin_height\\\":1080,\\\"origin_create_at\\\":1777906811}\",\"sr_score\":\"1.000\",\"std_brightness\":\"34.2586\",\"vq_score\":\"62.02\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a54abd96&x-expires=1779087600&x-signature=3onguLJiYL4PiLFzNy27XtDfMHc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=e5869100&x-expires=1779087600&x-signature=4oCC2%2BZnQhtQCc41MxJv2Q4gtdk%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=26a1b921&x-expires=1779087600&x-signature=oHTOyeYq8RW214qiWy5kBlvIuYM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=a54abd96&x-expires=1779087600&x-signature=3onguLJiYL4PiLFzNy27XtDfMHc%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=e5869100&x-expires=1779087600&x-signature=4oCC2%2BZnQhtQCc41MxJv2Q4gtdk%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osHIIA6mILAlv8AAQjeGkrTqWeaAjBTxLH8eEO~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=26a1b921&x-expires=1779087600&x-signature=oHTOyeYq8RW214qiWy5kBlvIuYM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 2900
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/10902526f44be03723af3363d62614f7/6a30f88e/video/tos/useast5/tos-useast5-v-0068-tx/e67f5610d9cb4e1584e48e017ad3a2f6/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4891&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anFoOng5cjVlOjMzZzczNEBpanFoOng5cjVlOjMzZzczNEBpZy9iMmRzNXBhLS1kMS9zYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594254,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7636051720946175000,
                                      "is_auto_generated": true,
                                      "sub_id": -190988643,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7636051720946175000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/10902526f44be03723af3363d62614f7/6a30f88e/video/tos/useast5/tos-useast5-v-0068-tx/e67f5610d9cb4e1584e48e017ad3a2f6/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4891&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anFoOng5cjVlOjMzZzczNEBpanFoOng5cjVlOjMzZzczNEBpZy9iMmRzNXBhLS1kMS9zYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/2bf443f02b46e11570ae79be0871242a/6a30f88e/video/tos/useast5/tos-useast5-v-0068-tx/e67f5610d9cb4e1584e48e017ad3a2f6/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=4891&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=anFoOng5cjVlOjMzZzczNEBpanFoOng5cjVlOjMzZzczNEBpZy9iMmRzNXBhLS1kMS9zYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmM0NTg3MTMzMmMzNzE0NzM3MmM2ODU4YjNlMGI4Mzhl&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                      ],
                                      "caption_length": 330,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"tier3\":\"10042\",\"rec_audio_effect\":\"1\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_01010226\\\",\\\"tag_02000300\\\",\\\"tag_00010203\\\",\\\"tag_00010202\\\"],\\\"TRS\\\":[0.79,0.79,0.04,0.04,0.04],\\\"TACM\\\":[0.77],\\\"DRR\\\":11.5,\\\"RCD\\\":[0.2],\\\"MP\\\":-8.41,\\\"BE\\\":[10.8,11821.7],\\\"OCF\\\":[-6.4538,-5.6039,-6.4585,-7.1869,-11.8714,-19.5834,-23.8434,-29.9223,-35.7289,-52.846],\\\"DO\\\":-0.0001,\\\"CTPS\\\":0,\\\"IL\\\":-21.5}\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7sb82vog65ue72ejnlg",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/d4e2c47dfcb0db6a7eabf9ec835df8b6/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/336fd915772ff1b59a38b673e39f7f46/6a09bfee/video/tos/useast5/tos-useast5-pve-0068-tx/oMAHgQvxN4TIfCfD8nDLTQLokeajEQFABKnIW4/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=411&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7OTdpZjw8aTQ7ZzhoPEBpanFoOng5cjVlOjMzZzczNEBgLTMwNF9hNjQxLjFiMy1gYSNpZy9iMmRzNXBhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c90e65ed48114f7999dcbf7436680fc3&is_play_url=1&item_id=7636051412765461773&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNjZmJhMzczYzU2OWFiZTk3MDU1MDhiMWU2ZDY2YjI0&source=PUBLISH&video_id=v12044gd0000d7sb82vog65ue72ejnlg"
                                  ],
                                  "width": 576,
                                  "height": 1026,
                                  "url_key": "v12044gd0000d7sb82vog65ue72ejnlg_h264_540p_421821",
                                  "data_size": 1586047,
                                  "file_hash": "67eab8dd1a5ea827b34a37e001d26029",
                                  "file_cs": "c:0-19630-1c85",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7636051412765461773",
                                "comment_count": 111,
                                "digg_count": 7454,
                                "download_count": 34,
                                "play_count": 250929,
                                "share_count": 896,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 0,
                                "collect_count": 104,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7636051412765461773",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7636051412765461773?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7636051412765461773&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7636051412765461773",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 1,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": true,
                                "bc_label_test_text": "Paid partnership",
                                "branded_content_type": 9,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 2
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "",
                              "content_desc_extra": [],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "words": [
                                      {
                                        "word": "high noon transfution",
                                        "word_id": "3766949134231926815",
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"ecom_trigger_info_map\":\"\",\"recall_reason\":\"shortterm_manual_attribute_recall,video_sar_top_counter_passive_recall,video_top_counter_recall,global_video_top_counter_recall,tako_merge_feedbar_recall\",\"lvl1_category_id\":\"\",\"is_ramandan_promotion\":\"\",\"hot_level\":\"0\",\"ecom_trigger_info\":\"\",\"word_type_list\":\"\",\"sug_user_id\":\"\",\"ecom_intent\":\"0\",\"words_type_to_dmp_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"is_time_sensitive\":\"0\",\"generate_time\":\"0\",\"visualize_sug_product_id\":\"\",\"video_id\":\"\",\"direct_to_tako\":\"\",\"lvl3_cate_list\":\"\",\"word_type_version_map\":\"\",\"predict_ctr_score\":0.002520773098615621}",
                                        "word_record": {
                                          "words_lang": "en",
                                          "is_personalized": false,
                                          "words_label": "",
                                          "qrec_json_info": "{}"
                                        },
                                        "rich_sug_info": {
                                          "sug_reason": "",
                                          "sug_reason_type": "",
                                          "sug_icon_uri": "",
                                          "sug_icon_type": ""
                                        }
                                      }
                                    ],
                                    "scene": "comment_top",
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": ""
                                  }
                                ],
                                "feed_query_enable_videosug": false
                              },
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7636051412765462000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 30071,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "Have you heard the news?   The drink that redefined the game has redefined the game again.  Introducing High Noon Transfusions.   Don’t blink or else you’ll miss it",
                                "text_extra": null
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00044235620434465527}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "comment_top_bar_component": [
                                  {
                                    "template_type": 2,
                                    "biz_type": 10,
                                    "name": "search_keywords",
                                    "desc_prefix": {
                                      "content": "Search:"
                                    },
                                    "desc_suffix": {
                                      "content": "high noon transfution"
                                    },
                                    "tail_icon": {
                                      "is_local": true,
                                      "local_type": 1
                                    },
                                    "action": {
                                      "schema": "//search",
                                      "click_hot_area_type": 2
                                    },
                                    "extra": "",
                                    "tracer_info": "",
                                    "biz_id": "3766949134231926815"
                                  }
                                ],
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7636051546928647000,
                                "id_str": "7636051546928646925",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7636051604919110413.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7636051604919110413.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 30,
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7636051412765461773,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7sb8ufog65pssc3pe8g\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7636051546928646925",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 30,
                                "shoot_duration": 30,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 30,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 30.145,
                                  "shoot_duration_precision": 30.145,
                                  "audition_duration_precision": 30.145,
                                  "video_duration_precision": 30.145
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777906813,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": null,
                              "picked_users": [],
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": 3,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 2,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501231416907567, \\\"1\\\": 4.501243703638739, \\\"0\\\": 4.501224074630523}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -9.902415258198057e-05, \\\"2\\\": -0.00029706525658052213, \\\"-1\\\": -0.00010483149356507217}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003778119651611899, \\\"2\\\": 0.0006627468297919544, \\\"-1\\\": 8.552916873196022e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"19df3fc87eaf9166634f0331a579ca7f\\\":{\\\"Md5\\\":\\\"19df3fc87eaf9166634f0331a579ca7f\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":11.8,\\\"rcd\\\":[0.2],\\\"mp\\\":-8.62,\\\"be\\\":[10.8,11267.2],\\\"ocf\\\":[-6.485,-5.2431,-6.6633,-7.3185,-12.1945,-19.9929,-24.1719,-30.3254,-36.8633,-54.6998],\\\"do\\\":-0.0001,\\\"il\\\":-21.7}}},\\\"b3d19016e6465dcc7b2eb5cf1c934214\\\":{\\\"Md5\\\":\\\"b3d19016e6465dcc7b2eb5cf1c934214\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":11.8,\\\"rcd\\\":[0.2],\\\"mp\\\":-8.45,\\\"be\\\":[5.4,11278],\\\"ocf\\\":[-6.5236,-5.2487,-6.6482,-7.2909,-12.1616,-19.9864,-24.1824,-30.4277,-36.912,-54.5869],\\\"do\\\":-0.0001,\\\"il\\\":-21.7}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.77],\\\"drr\\\":11.5,\\\"rcd\\\":[0.2],\\\"mp\\\":-8.41,\\\"be\\\":[10.8,11821.7],\\\"ocf\\\":[-6.4538,-5.6039,-6.4585,-7.1869,-11.8714,-19.5834,-23.8434,-29.9223,-35.7289,-52.846],\\\"do\\\":-0.0001,\\\"il\\\":-21.5},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_01010226\\\",\\\"tag_02000300\\\",\\\"tag_00010203\\\",\\\"tag_00010202\\\"],\\\"trs\\\":[0.79,0.79,0.04,0.04,0.04]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10042\",\"play_time_prob_dist\":\"[800,0.6141,3252.0233]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": true,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7635763506351967502",
                            "caption": "I am so sick of all these delusional Sixers fans acting like they aren’t a bum franchise.  It’s round 1 of the playoffs guys.  You beat a bad Celtics team.  Relax.  If the Sixers win the title I’ll get a Sixers neck tattoo.",
                            "createdAt": "2026-05-03T20:22:39.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7635763506351967502",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=6054f461&x-expires=1779087600&x-signature=zq1W0IV1Du1gUjSfaSAWR%2B53z6w%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                            "durationMs": 229251,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 181942,
                              "likes": 3981,
                              "comments": 198,
                              "shares": 180,
                              "saves": 120
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/4386ea00e322cf3d950e5442cd15fa45/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oYzHT0TI3fUGpCcrATkw1eIBLIAjrg7y94SofQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1118&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTc4aGloaWY5ODRlZDlmM0BpM2RyNnY5cjV0OjMzZzczNEAwLzZjMjRfNi8xL142YGFiYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/0167cc9d2a4e6d477313ec8280c1e454/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7635763591634800000,
                                "id_str": "7635763591634799373",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635763631434599181.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635763631434599181.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 229,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7635763506351967502,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7rqt5fog65tm2aambeg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7635763591634799373",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 229,
                                "shoot_duration": 229,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 229,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 229.27669,
                                  "shoot_duration_precision": 229.27669,
                                  "audition_duration_precision": 229.27669,
                                  "video_duration_precision": 229.27669
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777839766,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7635763591634800000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": null,
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/0167cc9d2a4e6d477313ec8280c1e454/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/f8da8a58a584cdafd698527cc62d994c/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a3c557763c2482e9af1369eae10c872&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI2ZDcwNzkyZGU0NWVjMzNmMDVlYmY4NjBkZjNmNjdj&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_h264_720p_1228639",
                                  "data_size": 35208363,
                                  "file_hash": "7a31ca8fc0e082ed2ebb3d3bb4e3b46a",
                                  "file_cs": "c:0-189407-ef14",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=6054f461&x-expires=1779087600&x-signature=zq1W0IV1Du1gUjSfaSAWR%2B53z6w%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=0f6f92f3&x-expires=1779087600&x-signature=7BRuWcq8y%2Bpog3IRCaolwsMAbQQ%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=d4ba3946&x-expires=1779087600&x-signature=FsNcru%2Bu7AYrX%2BB2gWUirbw4F%2F8%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=1bc976b3&x-expires=1779087600&x-signature=DxZdMMQdXLPJKiUyIdlP9dckSUs%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=5497fa59&x-expires=1779087600&x-signature=zzh0xQT5%2FHOXoEur3d9zgOKBTCg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=17de98eb&x-expires=1779087600&x-signature=4qUDga6NDQOWWO42xER814ZSfqE%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/o0eAcBi9sYB8RtgKdqWJiC3Df8SAjpIEruIEP3",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0eAcBi9sYB8RtgKdqWJiC3Df8SAjpIEruIEP3~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=46d5a9f1&x-expires=1779087600&x-signature=VKHgJ%2FGrAlA51qKTYb4nhNPEGVU%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0eAcBi9sYB8RtgKdqWJiC3Df8SAjpIEruIEP3~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=5639bffa&x-expires=1779087600&x-signature=2ntwcCO76SRplt9H%2B9T0c7sTWuk%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o0eAcBi9sYB8RtgKdqWJiC3Df8SAjpIEruIEP3~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=e64c8a5d&x-expires=1779087600&x-signature=NQuPGYN2yGHD2zqBdctWm%2FCOhpw%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=feed_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/4386ea00e322cf3d950e5442cd15fa45/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oYzHT0TI3fUGpCcrATkw1eIBLIAjrg7y94SofQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1118&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTc4aGloaWY5ODRlZDlmM0BpM2RyNnY5cjV0OjMzZzczNEAwLzZjMjRfNi8xL142YGFiYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/de35c225d16c8b3652a55090a8bc18a0/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oYzHT0TI3fUGpCcrATkw1eIBLIAjrg7y94SofQ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1118&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=ZTc4aGloaWY5ODRlZDlmM0BpM2RyNnY5cjV0OjMzZzczNEAwLzZjMjRfNi8xL142YGFiYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7rqt2fog65sl3toiae0&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=e0dcc69aab2145269cbf7e5ffe95243b&item_id=7635763506351967502&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmRkZTNjZmJiYmU0ZDg2OTU0OTY0NDEzNDE1OWU2YzRk&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 32828195,
                                  "file_cs": "c:0-189407-ef14",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 610007,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/d187a9043be55af2765a9767ff0a60f0/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c002-tx/o4u3EKgefAIwEd7gQBRpPPBcyiDSiEqJq9QEy8/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=595&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nzc8ZWllNDk8Ozc5ZWZlZEBpM2RyNnY5cjV0OjMzZzczNEA1MjEyMi4wXl8xMjVgMl9fYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/f6f847fc797d33627e121e442783e968/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c002-tx/o4u3EKgefAIwEd7gQBRpPPBcyiDSiEqJq9QEy8/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=595&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nzc8ZWllNDk8Ozc5ZWZlZEBpM2RyNnY5cjV0OjMzZzczNEA1MjEyMi4wXl8xMjVgMl9fYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=babb5ccb865448b9a6311b5f5b495484&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjIwMmRkMDIwOThmZWFhOGE0M2ZjNmZhNzMzMjY4ZjRl&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_bytevc2_540p_610007",
                                      "data_size": 17480613,
                                      "file_hash": "b555d076b300610d61da18adc0f8a131",
                                      "file_cs": "c:0-190404-a4a2",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 309677}, {\\\"time\\\": 2, \\\"offset\\\": 370534}, {\\\"time\\\": 3, \\\"offset\\\": 433561}, {\\\"time\\\": 4, \\\"offset\\\": 508682}, {\\\"time\\\": 5, \\\"offset\\\": 575909}, {\\\"time\\\": 10, \\\"offset\\\": 867387}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.201, \\\"v960\\\": 94.439, \\\"v864\\\": 95.799, \\\"v720\\\": 97.94}, \\\"ori\\\": {\\\"v1080\\\": 78.683, \\\"v960\\\": 80.604, \\\"v864\\\": 84.495, \\\"v720\\\": 88.321}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"047f28ad589a4337bd6bdea721b86b8a\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 9, 17, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.442, 0.472, 1.698, 0.442, 0.802, 1.783, 0.472, 0.804, 1.769, 0.506, 0.87, 1.764, 1.808], \\\"dec2play\\\": [72574, 72574, 71822, 71642, 66792, 71822, 71406, 67480, 71642, 71220, 66590, 71804, 70873, 66950, 65598]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 88.334, \\\"sr20\\\": 96.97}}\",\"audio_bit_rate\":64034}",
                                    "fps": 29,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.8],\\\"DRR\\\":24.5,\\\"RCD\\\":[-2.6],\\\"MP\\\":0.4,\\\"BE\\\":[53.8,11229.6],\\\"OCF\\\":[-20.4799,-14.2027,-7.0207,-3.5337,-6.391,-12.4931,-16.45,-26.3057,-34.4453,-50.5488],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.6}}\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 562589,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/327b15c361594b42b5d9f6f26dce2e5d/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c003-tx/ok8bt1Tk7CHX43wgARkvleA1pR0AXT5eMIj3Qf/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=549&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzU4OjM7Zzk5PGllaDdlNkBpM2RyNnY5cjV0OjMzZzczNEAwYmAuMy8yNjIxNWEvYDZgYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/24c96a4fb9ebcc4dc5d9a230991b674a/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c003-tx/ok8bt1Tk7CHX43wgARkvleA1pR0AXT5eMIj3Qf/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=549&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzU4OjM7Zzk5PGllaDdlNkBpM2RyNnY5cjV0OjMzZzczNEAwYmAuMy8yNjIxNWEvYDZgYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c39bc42edb8f4956965d286017c5e238&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjFjYWFlNDIyY2JkZGJiOTc1Y2YzZThhYmE2NjM4Y2U2&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_bytevc1_540p_562589",
                                      "data_size": 16121789,
                                      "file_hash": "3dbc177265b80405003bbcf5ab7a2a83",
                                      "file_cs": "c:0-190105-7106",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 282575}, {\\\"time\\\": 2, \\\"offset\\\": 341046}, {\\\"time\\\": 3, \\\"offset\\\": 409408}, {\\\"time\\\": 4, \\\"offset\\\": 478350}, {\\\"time\\\": 5, \\\"offset\\\": 540441}, {\\\"time\\\": 10, \\\"offset\\\": 795042}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 87.206, \\\"v960\\\": 90.228, \\\"v864\\\": 91.82, \\\"v720\\\": 94.556}, \\\"ori\\\": {\\\"v1080\\\": 74.793, \\\"v960\\\": 78.281, \\\"v864\\\": 81.403, \\\"v720\\\": 85.403}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"e4f4259dbe7e15901bf22dfc96c56284\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 84.405, \\\"sr20\\\": 93.041}}\",\"audio_bit_rate\":64034,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmgIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 29,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.8],\\\"DRR\\\":24.5,\\\"RCD\\\":[-2.6],\\\"MP\\\":0.4,\\\"BE\\\":[53.8,11229.6],\\\"OCF\\\":[-20.4799,-14.2027,-7.0207,-3.5337,-6.391,-12.4931,-16.45,-26.3057,-34.4453,-50.5488],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.6}}\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 345936,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/63f40c25f42fcd8431f13d57ea57677d/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAeT0yg4QIUcOLSH1aTIvGdC7IpfkS6eAAoLHj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=337&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTQ5M2lkaWlnZjhmZDhpOkBpM2RyNnY5cjV0OjMzZzczNEA2YTBiY2MzXjIxYmI2NmIxYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/0a0cb1db008b516aa9baa12168918ab6/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c004-tx/oAeT0yg4QIUcOLSH1aTIvGdC7IpfkS6eAAoLHj/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=337&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=aTQ5M2lkaWlnZjhmZDhpOkBpM2RyNnY5cjV0OjMzZzczNEA2YTBiY2MzXjIxYmI2NmIxYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=47ef959aece54c5daf6ffaffe036d19f&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjAxMmMzMGUwMGI1YTkyNmE0YWFkODFiODIxMjc1MTU1&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_bytevc1_540p_345936",
                                      "data_size": 9913284,
                                      "file_hash": "c8f6ade2fb497a047cfa0f4377ad1c07",
                                      "file_cs": "c:0-190121-ef26",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 247266}, {\\\"time\\\": 2, \\\"offset\\\": 280963}, {\\\"time\\\": 3, \\\"offset\\\": 320002}, {\\\"time\\\": 4, \\\"offset\\\": 359390}, {\\\"time\\\": 5, \\\"offset\\\": 396184}, {\\\"time\\\": 10, \\\"offset\\\": 543346}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 80.171, \\\"v960\\\": 83.371, \\\"v864\\\": 85.468, \\\"v720\\\": 88.568}, \\\"ori\\\": {\\\"v1080\\\": 67.348, \\\"v960\\\": 71.425, \\\"v864\\\": 74.335, \\\"v720\\\": 79.364}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"6b08da6ac185a00ba2299bb5cbe92231\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24024,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmgIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 29,
                                    "fid_profile_labels": ""
                                  }
                                ],
                                "duration": 229251,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/0167cc9d2a4e6d477313ec8280c1e454/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/f8da8a58a584cdafd698527cc62d994c/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a3c557763c2482e9af1369eae10c872&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI2ZDcwNzkyZGU0NWVjMzNmMDVlYmY4NjBkZjNmNjdj&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_h264_720p_1228639",
                                  "data_size": 35208363,
                                  "file_hash": "7a31ca8fc0e082ed2ebb3d3bb4e3b46a",
                                  "file_cs": "c:0-189407-ef14",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=5497fa59&x-expires=1779087600&x-signature=zzh0xQT5%2FHOXoEur3d9zgOKBTCg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=1bc976b3&x-expires=1779087600&x-signature=DxZdMMQdXLPJKiUyIdlP9dckSUs%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0063bab2&x-expires=1779087600&x-signature=TLQhrxKm08q6x6FaTwBoQ00G%2Fo4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 229.088336,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 229,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 229.08833,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/ocIBpeC8huE9EBcquadDVJ5AijSt3KhIPgfiRr",
                                      "tos-useast5-p-0068-tx/oUcdDCSBpBr8KSJiigR9YAIqEDu3feZgPRIt3E",
                                      "tos-useast5-p-0068-tx/oIft3ASv1kEbcIQTf7LeHCAZUraB04Qoj9GyIT",
                                      "tos-useast5-p-0068-tx/oYcvTUA7eAQ3e03yFGjTfaC4XIHkLI5So1LQMy",
                                      "tos-useast5-p-0068-tx/o807GeyTIIokQaXUoFTALCfvQPj1AES43H2Ice",
                                      "tos-useast5-p-0068-tx/osdIgi8CRduIpArf3Oceb9t3PKcBEBiESqaDaJ",
                                      "tos-useast5-p-0068-tx/o8AsDEtpSiECgRnIdc3fBireXBXaq9I8K3JuPg",
                                      "tos-useast5-p-0068-tx/o4vRBiguIqpCJNEtIB3HKSimPecsrDf98nAbdE",
                                      "tos-useast5-p-0068-tx/okRgaepeHMX74kkvDwXfA0gQjAl2JDT8IuCTo1",
                                      "tos-useast5-p-0068-tx/okIfQkIe1tUQc6IjTr7ToAL04maGfXAHASyc3C"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocIBpeC8huE9EBcquadDVJ5AijSt3KhIPgfiRr~tplv-noop.image?dr=12525&refresh_token=75784bbe&x-expires=1779024053&x-signature=U9CECzb0saByWp9UiapWXqtvhAg%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUcdDCSBpBr8KSJiigR9YAIqEDu3feZgPRIt3E~tplv-noop.image?dr=12525&refresh_token=f7dc496a&x-expires=1779024053&x-signature=g56m6iLSuFuPHFMXreQpBpp6d0k%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIft3ASv1kEbcIQTf7LeHCAZUraB04Qoj9GyIT~tplv-noop.image?dr=12525&refresh_token=a2c41c1d&x-expires=1779024053&x-signature=1lZw5bUhSlPphmrK8xw4nL3iAlU%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oYcvTUA7eAQ3e03yFGjTfaC4XIHkLI5So1LQMy~tplv-noop.image?dr=12525&refresh_token=19ba1f8f&x-expires=1779024053&x-signature=SYRIylO3v160TUavthrPvpm2zMo%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o807GeyTIIokQaXUoFTALCfvQPj1AES43H2Ice~tplv-noop.image?dr=12525&refresh_token=0e9d489c&x-expires=1779024053&x-signature=bVM2kJ3ig37obhAXH92XvA599a8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/osdIgi8CRduIpArf3Oceb9t3PKcBEBiESqaDaJ~tplv-noop.image?dr=12525&refresh_token=7257d382&x-expires=1779024053&x-signature=aKlGRidU13eI%2FRJm9jz3ZStMtAM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o8AsDEtpSiECgRnIdc3fBireXBXaq9I8K3JuPg~tplv-noop.image?dr=12525&refresh_token=63faf49a&x-expires=1779024053&x-signature=9AXoFFjmVlI%2BSfb0PSpHDsYHEQc%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4vRBiguIqpCJNEtIB3HKSimPecsrDf98nAbdE~tplv-noop.image?dr=12525&refresh_token=02238f04&x-expires=1779024053&x-signature=lt9hWL2Zc7HVLaOmxwW7bGUmiDc%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okRgaepeHMX74kkvDwXfA0gQjAl2JDT8IuCTo1~tplv-noop.image?dr=12525&refresh_token=51c082ad&x-expires=1779024053&x-signature=rKVhFNSSmeV%2BTP%2BhnBOc%2B%2FQiYCQ%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/okIfQkIe1tUQc6IjTr7ToAL04maGfXAHASyc3C~tplv-noop.image?dr=12525&refresh_token=ebd13df0&x-expires=1779024053&x-signature=e0U1yr8SbuNxfsxdO6HTk1OQl0A%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7rqt2fog65sl3toiae0"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/c2b934e481a37780f1c65b56a88feb4c/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c001-tx/okG8fABectbDqiRupqKEdQSEgIQ3BPOERs89iJ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTk2ZDdpNGUzOmc0PDM5aUBpM2RyNnY5cjV0OjMzZzczNEAxLTBiLzI2X2AxMWFiYmBhYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                    "https://v19.tiktokcdn-us.com/b2709798d4d4aca63a48e8ecc296564c/6a09c0b5/video/tos/useast5/tos-useast5-ve-0068c001-tx/okG8fABectbDqiRupqKEdQSEgIQ3BPOERs89iJ/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=632&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTk2ZDdpNGUzOmc0PDM5aUBpM2RyNnY5cjV0OjMzZzczNEAxLTBiLzI2X2AxMWFiYmBhYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=dfc6e0e9d14d47c0bb915f24ea330642&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjU4NGJjMWQ0ODRhMGE2M2MzNDc2NzE0MDAyZjk2MDU1&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_bytevc1_540p_647431",
                                  "data_size": 18553026,
                                  "file_hash": "044a2472481c4022af31c3ddf8bd3513",
                                  "file_cs": "c:0-190147-51f0",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"4.4\",\"LoudnessRangeEnd\":\"-15.3\",\"LoudnessRangeStart\":\"-19.8\",\"MaximumMomentaryLoudness\":\"-9.2\",\"MaximumShortTermLoudness\":\"-13.4\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-16.5,\\\"MaximumMomentaryLoudness\\\":-9.2,\\\"Peak\\\":1,\\\"MaximumShortTermLoudness\\\":-13.4,\\\"Metrics\\\":{\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.01,\\\"SingingRatio\\\":0.01,\\\"SpeechRatio\\\":0.95},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-16.46,\\\"LoudR\\\":4.2,\\\"LoudRE\\\":-15.3,\\\"LoudRS\\\":-19.5,\\\"MaxMomLoud\\\":-9.22,\\\"MaxSTLoud\\\":-13.38}},\\\"Cutoff\\\":{\\\"FCenL\\\":2294.42,\\\"FCenR\\\":2856.31,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.03,\\\"Spkr200G\\\":0.14},\\\"Loudness\\\":{\\\"Integrated\\\":-16.494},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.313},\\\"RMSStats\\\":{\\\"LTotal\\\":-18.628,\\\"Peak\\\":0.259,\\\"RTotal\\\":-23.373,\\\"LRDiff\\\":4.744}},\\\"Version\\\":2,\\\"LoudnessRange\\\":4.4,\\\"LoudnessRangeEnd\\\":-15.3,\\\"LoudnessRangeStart\\\":-19.8}\",\"bright_ratio_mean\":\"0.0373\",\"brightness_mean\":\"137.6535\",\"diff_overexposure_ratio\":\"0.0003\",\"loudness\":\"-16.5\",\"overexposure_ratio_mean\":\"0.0044\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1777839760}\",\"sr_score\":\"1.000\",\"std_brightness\":\"2.4297\",\"vq_score\":\"64.07\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=5497fa59&x-expires=1779087600&x-signature=zzh0xQT5%2FHOXoEur3d9zgOKBTCg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=1bc976b3&x-expires=1779087600&x-signature=DxZdMMQdXLPJKiUyIdlP9dckSUs%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0063bab2&x-expires=1779087600&x-signature=TLQhrxKm08q6x6FaTwBoQ00G%2Fo4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=5497fa59&x-expires=1779087600&x-signature=zzh0xQT5%2FHOXoEur3d9zgOKBTCg%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=1bc976b3&x-expires=1779087600&x-signature=DxZdMMQdXLPJKiUyIdlP9dckSUs%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/owLvbL0IAKjzAQrIgELTAXHGAekGAHeRe17I6Z~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=0063bab2&x-expires=1779087600&x-signature=TLQhrxKm08q6x6FaTwBoQ00G%2Fo4%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=dynamic_cover&biz_tag=tt_video"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 5,
                                    "is_burnin_caption": true,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 860
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/d33c9c6d5892c8ae715e43fa5c17b3bf/6a30f955/video/tos/useast5/tos-useast5-v-0068-tx/f38e6697821142c99cec0a8cf482b60a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=3148&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RyNnY5cjV0OjMzZzczNEBpM2RyNnY5cjV0OjMzZzczNEBiZnFpMmRjcW9hLS1kMS9zYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594453,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7635763810808335000,
                                      "is_auto_generated": true,
                                      "sub_id": 540356275,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7635763810808335000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/d33c9c6d5892c8ae715e43fa5c17b3bf/6a30f955/video/tos/useast5/tos-useast5-v-0068-tx/f38e6697821142c99cec0a8cf482b60a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=3148&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RyNnY5cjV0OjMzZzczNEBpM2RyNnY5cjV0OjMzZzczNEBiZnFpMmRjcW9hLS1kMS9zYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/da3decd4c1d31ca9bbf895a8f6651719/6a30f955/video/tos/useast5/tos-useast5-v-0068-tx/f38e6697821142c99cec0a8cf482b60a/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=3148&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RyNnY5cjV0OjMzZzczNEBpM2RyNnY5cjV0OjMzZzczNEBiZnFpMmRjcW9hLS1kMS9zYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmRlZGNjZDg2YTM4ZjUxYjMyZjNmYjVmODk1YjZkNTJj&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                      ],
                                      "caption_length": 3374,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": true,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_00010202\\\",\\\"tag_03000002\\\"],\\\"TRS\\\":[0.84,0.24,0.19,0.07,0.06],\\\"TACM\\\":[0.8],\\\"DRR\\\":24.6,\\\"RCD\\\":[-2.8],\\\"MP\\\":0.26,\\\"BE\\\":[59.2,11466.4],\\\"OCF\\\":[-20.7322,-14.2701,-6.989,-3.5635,-6.3492,-12.3818,-16.6318,-26.5214,-34.1524,-50.8693],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.5}\",\"tier3\":\"10059\",\"rec_audio_effect\":\"1\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7rqt2fog65sl3toiae0",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/0167cc9d2a4e6d477313ec8280c1e454/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/f8da8a58a584cdafd698527cc62d994c/6a09c0b5/video/tos/useast5/tos-useast5-pve-0068-tx/oM0oyAefk7Ih4rjfITAcQSLIzHDUJT32GIH1C3/?a=1233&bti=M0BzMzU8OGYpNzo5Zi5wIzEuLjpkNDQwOg%3D%3D&&bt=1199&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NTszaGg5NGRoOzU2OjhmZEBpM2RyNnY5cjV0OjMzZzczNEA0YC5eNjBjNi8xYDM0MjAwYSNiZnFpMmRjcW9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=3a3c557763c2482e9af1369eae10c872&is_play_url=1&item_id=7635763506351967502&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmI2ZDcwNzkyZGU0NWVjMzNmMDVlYmY4NjBkZjNmNjdj&source=PUBLISH&video_id=v12044gd0000d7rqt2fog65sl3toiae0"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7rqt2fog65sl3toiae0_h264_720p_1228639",
                                  "data_size": 35208363,
                                  "file_hash": "7a31ca8fc0e082ed2ebb3d3bb4e3b46a",
                                  "file_cs": "c:0-189407-ef14",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7635763506351967502",
                                "comment_count": 198,
                                "digg_count": 3981,
                                "download_count": 11,
                                "play_count": 181942,
                                "share_count": 180,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 0,
                                "collect_count": 120,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7635763506351967502",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7635763506351967502?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7635763506351967502&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7635763232539544845",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "",
                              "content_desc_extra": [],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7635763232539545000,
                                  7635763506351967000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 229088,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "I am so sick of all these delusional Sixers fans acting like they aren’t a bum franchise.  It’s round 1 of the playoffs guys.  You beat a bad Celtics team.  Relax.  If the Sixers win the title I’ll get a Sixers neck tattoo.",
                                "text_extra": null
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0010882588956920337}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7635763591634800000,
                                "id_str": "7635763591634799373",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635763631434599181.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635763631434599181.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 229,
                                "extra": "{\"aed_music_dur\":1,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7635763506351967502,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7rqt5fog65tm2aambeg\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7635763591634799373",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 229,
                                "shoot_duration": 229,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 229,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 229.27669,
                                  "shoot_duration_precision": 229.27669,
                                  "audition_duration_precision": 229.27669,
                                  "video_duration_precision": 229.27669
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777839766,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7635763591634800000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": null,
                              "picked_users": [],
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501280903575264, \\\"1\\\": 4.501293190306436, \\\"0\\\": 4.501256755482524}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -3.601465779839599e-05, \\\"2\\\": -0.0003390296464139008, \\\"-1\\\": -0.0001357785353945378}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003492047452152189, \\\"2\\\": 0.0006464053940129082, \\\"-1\\\": 5.940979345533045e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.8],\\\"drr\\\":24.7,\\\"rcd\\\":[-2.7],\\\"mp\\\":0.22,\\\"be\\\":[59.2,11531],\\\"ocf\\\":[-20.8083,-14.2665,-6.8331,-3.5408,-6.5297,-12.4446,-16.504,-26.2947,-34.2294,-50.1497],\\\"il\\\":-16.6}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.8],\\\"drr\\\":24.5,\\\"rcd\\\":[-2.6],\\\"mp\\\":0.4,\\\"be\\\":[53.8,11229.6],\\\"ocf\\\":[-20.4799,-14.2027,-7.0207,-3.5337,-6.391,-12.4931,-16.45,-26.3057,-34.4453,-50.5488],\\\"il\\\":-16.6}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.8],\\\"drr\\\":24.6,\\\"rcd\\\":[-2.8],\\\"mp\\\":0.26,\\\"be\\\":[59.2,11466.4],\\\"ocf\\\":[-20.7322,-14.2701,-6.989,-3.5635,-6.3492,-12.3818,-16.6318,-26.5214,-34.1524,-50.8693],\\\"il\\\":-16.5},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010300\\\",\\\"tag_03010308\\\",\\\"tag_00010202\\\",\\\"tag_03000002\\\"],\\\"trs\\\":[0.84,0.24,0.19,0.07,0.06]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10059\",\"play_time_prob_dist\":\"[800,0.354,10349.6221]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          },
                          {
                            "id": "7635480524471029006",
                            "caption": "Emergency Press Conference - Celtics blow 3-1 to Awful Sixers Team.",
                            "createdAt": "2026-05-03T02:04:29.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7635480524471029006",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=e01e9b50&x-expires=1779087600&x-signature=%2B1QmmuiwgYrZx%2Fz4oVyEfXb2kd4%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=cover&biz_tag=tt_video&s=PUBLISH",
                            "durationMs": 103353,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 225168,
                              "likes": 7668,
                              "comments": 396,
                              "shares": 340,
                              "saves": 164
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-us.com/c20bf366632cf96209d7a3ca78fea839/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/okg0FgSDpBA0UgkFEZSqkAQ8EDs3f9UggRIUfE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1002&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzxkNTRmZWlnZmZoNDQ2OEBpM2RzN3Q5cjRkOjMzZzczNEBfNGEzLjJhXmAxNTNiYzQyYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-us.com/3c77e2ee7af8a6fdfd237e506d1191c1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000"
                            },
                            "details": {
                              "author": {
                                "uid": "6659752019493208069",
                                "short_id": "0",
                                "nickname": "Dave Portnoy",
                                "signature": "El Presidente/Barstool Sports Founder.",
                                "avatar_larger": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=e913e60c&x-expires=1779087600&x-signature=Yx8SJJbjWYfdXBvDED2ITk6hQg0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=e61ba4c6&x-expires=1779087600&x-signature=yoM89l48c3MxGt7AYEXIvDJbOXw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "follow_status": 0,
                                "aweme_count": 2416,
                                "following_count": 95,
                                "follower_count": 4690940,
                                "favoriting_count": 223,
                                "total_favorited": 224207163,
                                "is_block": false,
                                "hide_search": true,
                                "custom_verify": "Verified account",
                                "unique_id": "stoolpresidente",
                                "bind_phone": "",
                                "special_lock": 1,
                                "need_recommend": 0,
                                "has_facebook_token": false,
                                "has_twitter_token": false,
                                "fb_expire_time": 0,
                                "tw_expire_time": 0,
                                "has_youtube_token": false,
                                "youtube_expire_time": 0,
                                "room_id": 0,
                                "live_verify": 0,
                                "authority_status": 0,
                                "verify_info": "",
                                "shield_follow_notice": 0,
                                "shield_digg_notice": 0,
                                "shield_comment_notice": 0,
                                "share_info": {
                                  "share_url": "",
                                  "share_desc": "",
                                  "share_title": "",
                                  "share_qrcode_url": {
                                    "uri": "",
                                    "url_list": [],
                                    "width": 720,
                                    "height": 720,
                                    "url_prefix": null
                                  },
                                  "share_title_myself": "",
                                  "share_title_other": "",
                                  "share_desc_info": "",
                                  "now_invitation_card_image_urls": null
                                },
                                "with_commerce_entry": false,
                                "verification_type": 0,
                                "original_musician": {
                                  "music_count": 0,
                                  "music_used_count": 0,
                                  "digg_count": 0,
                                  "new_release_clip_ids": null
                                },
                                "enterprise_verify_reason": "",
                                "is_ad_fake": false,
                                "followers_detail": null,
                                "account_region": "",
                                "commerce_user_level": 0,
                                "live_agreement": 0,
                                "platform_sync_info": null,
                                "with_shop_entry": false,
                                "is_discipline_member": false,
                                "secret": 0,
                                "has_orders": false,
                                "prevent_download": false,
                                "show_image_bubble": false,
                                "geofencing": null,
                                "unique_id_modify_time": 1779002224,
                                "video_icon": {
                                  "uri": "",
                                  "url_list": [],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "ins_id": "stoolpresidente",
                                "google_account": "",
                                "youtube_channel_id": "",
                                "youtube_channel_title": "",
                                "apple_account": 0,
                                "is_phone_binded": false,
                                "accept_private_policy": false,
                                "twitter_id": "",
                                "twitter_name": "",
                                "user_canceled": false,
                                "has_email": false,
                                "status": 1,
                                "create_time": 0,
                                "avatar_uri": "tos-maliva-avt-0068/7310178711609032710",
                                "follower_status": 0,
                                "comment_setting": 0,
                                "duet_setting": 0,
                                "user_rate": 17,
                                "download_setting": 0,
                                "download_prompt_ts": 1550594548,
                                "react_setting": 0,
                                "live_commerce": false,
                                "cover_url": [],
                                "language": "en",
                                "has_insights": false,
                                "share_qrcode_uri": "",
                                "item_list": null,
                                "user_mode": 1,
                                "user_period": 0,
                                "is_star": false,
                                "cv_level": "",
                                "type_label": null,
                                "ad_cover_url": null,
                                "comment_filter_status": 0,
                                "avatar_168x168": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=080d9e4f&x-expires=1779087600&x-signature=DC70sVycRk3mcpM8lmm9oGfTbdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.webp?dr=9638&refresh_token=53899402&x-expires=1779087600&x-signature=hT16K3uRg6V9KtZVp1btUHWzakw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:168:168.jpeg?dr=9638&refresh_token=1606f1c6&x-expires=1779087600&x-signature=1JGW79UheogFNyQ0rOuOTB%2FqKOI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_300x300": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=f9a0b4de&x-expires=1779087600&x-signature=tozWBv1C2IhPNW08gR513EcYFWc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.webp?dr=9638&refresh_token=9b2f3736&x-expires=1779087600&x-signature=SYIzdGRQF68WTw1KtfjY%2FZC0muk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:300:300.jpeg?dr=9638&refresh_token=cd964368&x-expires=1779087600&x-signature=9goHHF7FVu6qmpr09MxyLsbXYW8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "relative_users": null,
                                "cha_list": null,
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "need_points": null,
                                "homepage_bottom_toast": null,
                                "can_set_geofencing": null,
                                "white_cover_url": null,
                                "user_tags": null,
                                "stitch_setting": 0,
                                "bold_fields": null,
                                "search_highlight": null,
                                "mutual_relation_avatars": null,
                                "events": null,
                                "advance_feature_item_order": null,
                                "mention_status": 1,
                                "special_account": {
                                  "special_account_list": null
                                },
                                "advanced_feature_info": null,
                                "user_profile_guide": null,
                                "shield_edit_field_info": null,
                                "friends_status": 0,
                                "can_message_follow_status_list": [
                                  0,
                                  1,
                                  2,
                                  4
                                ],
                                "account_labels": null,
                                "user_now_pack_info": {},
                                "fake_data_info": {},
                                "is_mute": 0,
                                "avatar_meta_info_list": [
                                  {
                                    "avatar_category": 1,
                                    "avatar_meta_info": {
                                      "avatar_source": 1
                                    }
                                  },
                                  {
                                    "avatar_category": 6,
                                    "avatar_meta_info": {}
                                  }
                                ],
                                "reply_with_video_flag": 4,
                                "user_spark_info": {},
                                "is_mute_non_story_post": 0,
                                "is_mute_story": 0,
                                "is_mute_lives": 0,
                                "enabled_filter_all_comments": false
                              },
                              "music": {
                                "id": 7635480602548751000,
                                "id_str": "7635480602548751118",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635480639815682830.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635480639815682830.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 103,
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7635480524471029006,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7raqcnog65og1369gg0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7635480602548751118",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 103,
                                "shoot_duration": 103,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 103,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 103.392624,
                                  "shoot_duration_precision": 103.392624,
                                  "audition_duration_precision": 103.392624,
                                  "video_duration_precision": 103.392624
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777773875,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "mute_type": 0,
                                "music_ugid": 7635481863880068000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "cha_list": null,
                              "video": {
                                "play_addr": {
                                  "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3c77e2ee7af8a6fdfd237e506d1191c1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/0deaf3150d648a3cb0cf64cbe2954ab1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=0161e7cf418f43959153800ac6cd7628&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjAwNmI3NWY1Y2U3OGU0ZTQ3ZjVjOTI0ODI4Mjg4ZGYy&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7raq17og65qf42p4a80_h264_720p_1112655",
                                  "data_size": 14374537,
                                  "file_hash": "d19dd3cf65ea71f08a8e73a300c707df",
                                  "file_cs": "c:0-86019-bd66",
                                  "url_prefix": null
                                },
                                "cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=e01e9b50&x-expires=1779087600&x-signature=%2B1QmmuiwgYrZx%2Fz4oVyEfXb2kd4%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=765d6691&x-expires=1779087600&x-signature=KII%2BsYHVPZZSSNH07EGe8s9S5l8%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter-q:300:400:q70.jpeg?dr=8596&refresh_token=8ddfe665&x-expires=1779087600&x-signature=P20RGwJO6xOv6MruoXGwoOIINfU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "height": 1280,
                                "width": 720,
                                "dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=30cd86fd&x-expires=1779087600&x-signature=qnkO7wfQGQ2V3KhH%2B88j1kzoOe8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22032188&x-expires=1779087600&x-signature=Ai2Vec6f4xVMugziyQYGx6bTCMM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=eccac54e&x-expires=1779087600&x-signature=SfEIQAQXmxdVDB97tf%2BPmga5yis%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&biz_tag=tt_video&s=PUBLISH&sc=dynamic_cover"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "origin_cover": {
                                  "uri": "tos-useast5-p-0068-tx/ocstEUg9fAQ0o03hBDRpgpBgWEDSFEck8qQQf0",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocstEUg9fAQ0o03hBDRpgpBgWEDSFEck8qQQf0~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=42c2389d&x-expires=1779087600&x-signature=jDujEm6Eb63hx9vDsKBk8CAi5js%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=feed_cover&biz_tag=tt_video",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocstEUg9fAQ0o03hBDRpgpBgWEDSFEck8qQQf0~tplv-tiktokx-shrink-aq:360:360:q75.heic?dr=11731&refresh_token=4fefd9d2&x-expires=1779087600&x-signature=hrP3CczYZQWYSm%2FLiaw2jVT%2BlFM%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=feed_cover&biz_tag=tt_video",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ocstEUg9fAQ0o03hBDRpgpBgWEDSFEck8qQQf0~tplv-tiktokx-shrink-aq:360:360:q75.jpeg?dr=11731&refresh_token=b180ec36&x-expires=1779087600&x-signature=Ge6HUKksRy2Up9YhvsBwAGEVjp4%3D&t=bacd0480&ps=d97f9a4f&shp=d05b14bd&shcp=132edbea&idc=useast8&s=PUBLISH&sc=feed_cover&biz_tag=tt_video"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 0,
                                  "url_prefix": null
                                },
                                "ratio": "720p",
                                "download_addr": {
                                  "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/c20bf366632cf96209d7a3ca78fea839/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/okg0FgSDpBA0UgkFEZSqkAQ8EDs3f9UggRIUfE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1002&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzxkNTRmZWlnZmZoNDQ2OEBpM2RzN3Q5cjRkOjMzZzczNEBfNGEzLjJhXmAxNTNiYzQyYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/cbd6894424b6258a3a13640869be5c29/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/okg0FgSDpBA0UgkFEZSqkAQ8EDs3f9UggRIUfE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1002&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzxkNTRmZWlnZmZoNDQ2OEBpM2RzN3Q5cjRkOjMzZzczNEBfNGEzLjJhXmAxNTNiYzQyYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?video_id=v12044gd0000d7raq17og65qf42p4a80&line=0&watermark=1&logo_name=tiktok_m&source=PUBLISH&file_id=5573f1e16e8c4ccdafdb5c1162da79b0&item_id=7635480524471029006&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjY2ZTc1ZWMwMGM0MzBjZTY5NTBmNTE2Mzc4YTFiY2Fk&shp=d05b14bd&shcp=-"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "data_size": 13262251,
                                  "file_cs": "c:0-86019-bd66",
                                  "url_prefix": null
                                },
                                "has_watermark": true,
                                "bit_rate": [
                                  {
                                    "gear_name": "adapt_540_2",
                                    "quality_type": 28,
                                    "bit_rate": 681879,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/13f228b844ffdb1c84b944311a7c38da/6a09c037/video/tos/useast5/tos-useast5-ve-0068c003-tx/oQK2RqQupISIEZD0tB9Fmr0EEWDQeyASEgfmFQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=665&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2czPDc0NTw6Z2RpN2c3ZkBpM2RzN3Q5cjRkOjMzZzczNEAuYS0tMmJgNS8xNS4uMmIxYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00095000",
                                        "https://v19.tiktokcdn-us.com/e0a17b5d0a4c3150ca78c200326ab245/6a09c037/video/tos/useast5/tos-useast5-ve-0068c003-tx/oQK2RqQupISIEZD0tB9Fmr0EEWDQeyASEgfmFQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=665&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2czPDc0NTw6Z2RpN2c3ZkBpM2RzN3Q5cjRkOjMzZzczNEAuYS0tMmJgNS8xNS4uMmIxYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00090000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=4ce45d141f8a4d2789c2e1540900dd10&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjUxMzRmM2ZiMDE1ZjgzMjBkZWJhNmEwN2JhZWEwMWU4&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7raq17og65qf42p4a80_bytevc2_540p_681879",
                                      "data_size": 8809292,
                                      "file_hash": "fcbc129aef4419fc6f79146f214fa31d",
                                      "file_cs": "c:0-86946-baa4",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 2,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 210428}, {\\\"time\\\": 2, \\\"offset\\\": 282761}, {\\\"time\\\": 3, \\\"offset\\\": 357524}, {\\\"time\\\": 4, \\\"offset\\\": 458083}, {\\\"time\\\": 5, \\\"offset\\\": 556289}, {\\\"time\\\": 10, \\\"offset\\\": 947864}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 92.385, \\\"v960\\\": 93.905, \\\"v864\\\": 95.22, \\\"v720\\\": 97.524}, \\\"ori\\\": {\\\"v1080\\\": 84.295, \\\"v960\\\": 85.113, \\\"v864\\\": 87.863, \\\"v720\\\": 91.246}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"0d5400af098c4f41649d67e8bd8dc898\",\"dec_info\":\"{\\\"simp\\\": [0, 0, 0, 18, 3, 9, 10, 11, 17, 18, 19, 25, 26, 27, 51], \\\"vmaf_loss\\\": [0.0, 0.0, 0.0, 0.586, 1.405, 0.538, 0.594, 1.384, 0.586, 0.586, 1.595, 0.56, 0.598, 1.407, 1.453], \\\"dec2play\\\": [76952, 76952, 76952, 75799, 71496, 76960, 76289, 71287, 76563, 75799, 70561, 76232, 75472, 70016, 69013]}\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 96.75, \\\"sr20\\\": 105.352}}\",\"audio_bit_rate\":64085}",
                                    "fps": 29,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.65],\\\"DRR\\\":23.2,\\\"RCD\\\":[-2.9],\\\"MP\\\":0.31,\\\"BE\\\":[64.6,10045.2],\\\"OCF\\\":[-20.0836,-16.1102,-6.3883,-4.6921,-5.1296,-13.1076,-14.3705,-24.1646,-35.0058,-51.4254],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.3}}\"}"
                                  },
                                  {
                                    "gear_name": "lower_540_1",
                                    "quality_type": 24,
                                    "bit_rate": 635239,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/f8ae414dbf08896769b31f0b85f629a3/6a09c037/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYQI2ASgqSQOWEEp79FfDBgrKss00QIeRHD0EE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=620&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzU3NzY2aGZpNWg3N2gzaUBpM2RzN3Q5cjRkOjMzZzczNEAzYTA2MzRhNTMxMy4tLWJeYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/fb8d16eb77d1b409e75ff62a12da8668/6a09c037/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYQI2ASgqSQOWEEp79FfDBgrKss00QIeRHD0EE/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=620&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=MzU3NzY2aGZpNWg3N2gzaUBpM2RzN3Q5cjRkOjMzZzczNEAzYTA2MzRhNTMxMy4tLWJeYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=afe00e04146e426f8cde73639434d260&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmU0ZGJhNDNkY2M5MTg1ZDdlMDIxNWRjNjA1ZGRkNTM2&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7raq17og65qf42p4a80_bytevc1_540p_635239",
                                      "data_size": 8206740,
                                      "file_hash": "1fc216c0104f7c2c42487e373807257e",
                                      "file_cs": "c:0-86689-696a",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 189212}, {\\\"time\\\": 2, \\\"offset\\\": 262540}, {\\\"time\\\": 3, \\\"offset\\\": 341302}, {\\\"time\\\": 4, \\\"offset\\\": 428982}, {\\\"time\\\": 5, \\\"offset\\\": 513114}, {\\\"time\\\": 10, \\\"offset\\\": 888906}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 88.623, \\\"v960\\\": 90.632, \\\"v864\\\": 92.062, \\\"v720\\\": 94.852}, \\\"ori\\\": {\\\"v1080\\\": 81.036, \\\"v960\\\": 82.995, \\\"v864\\\": 85.139, \\\"v720\\\": 88.221}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"3a7fbed315b1fd3a3183370cd2c4ddaf\",\"dec_info\":\"\",\"gearvqm\":\"{\\\"v3.0\\\": {\\\"ori\\\": 93.876, \\\"sr20\\\": 102.479}}\",\"audio_bit_rate\":64085,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmgIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 29,
                                    "fid_profile_labels": "{\"audio_meta_ladder\":\"{\\\"Normal\\\":{\\\"TACM\\\":[0.65],\\\"DRR\\\":23.2,\\\"RCD\\\":[-2.9],\\\"MP\\\":0.31,\\\"BE\\\":[64.6,10045.2],\\\"OCF\\\":[-20.0836,-16.1102,-6.3883,-4.6921,-5.1296,-13.1076,-14.3705,-24.1646,-35.0058,-51.4254],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.3}}\"}"
                                  },
                                  {
                                    "gear_name": "lowest_540_1",
                                    "quality_type": 25,
                                    "bit_rate": 384759,
                                    "play_addr": {
                                      "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                      "url_list": [
                                        "https://v45.tiktokcdn-us.com/4a676f53b477f2412dd43f294e47f57b/6a09c037/video/tos/useast5/tos-useast5-ve-0068c002-tx/o8qpB2FEEECFSbsAzgkI9QevR0QWDDQ0Ef5EKS/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=375&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7ZGQ8ZGU3PDc3NGZmZkBpM2RzN3Q5cjRkOjMzZzczNEAtX2MzYDAxXjExYDIzMGBjYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                        "https://v19.tiktokcdn-us.com/5fa11a5e21edc089d45778773795b53c/6a09c037/video/tos/useast5/tos-useast5-ve-0068c002-tx/o8qpB2FEEECFSbsAzgkI9QevR0QWDDQ0Ef5EKS/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=375&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=Nmk7ZGQ8ZGU3PDc3NGZmZkBpM2RzN3Q5cjRkOjMzZzczNEAtX2MzYDAxXjExYDIzMGBjYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=fccc3c6154c44944ab4a39ca6af8bf03&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjlkYWFjNWY0MzZkNzQ0NTBiYThmN2I1ZTc3MDQ2ODlj&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                      ],
                                      "width": 576,
                                      "height": 1024,
                                      "url_key": "v12044gd0000d7raq17og65qf42p4a80_bytevc1_540p_384759",
                                      "data_size": 4970761,
                                      "file_hash": "995d8b56e99ee132dbfd83c20a46d297",
                                      "file_cs": "c:0-86705-c74c",
                                      "url_prefix": null
                                    },
                                    "is_bytevc1": 1,
                                    "dub_infos": null,
                                    "HDR_type": "",
                                    "HDR_bit": "",
                                    "video_extra": "{\"PktOffsetMap\":\"[{\\\"time\\\": 1, \\\"offset\\\": 149959}, {\\\"time\\\": 2, \\\"offset\\\": 193125}, {\\\"time\\\": 3, \\\"offset\\\": 241278}, {\\\"time\\\": 4, \\\"offset\\\": 296423}, {\\\"time\\\": 5, \\\"offset\\\": 349072}, {\\\"time\\\": 10, \\\"offset\\\": 587518}]\",\"mvmaf\":\"{\\\"v2.0\\\": {\\\"srv1\\\": {\\\"v1080\\\": 80.241, \\\"v960\\\": 82.17, \\\"v864\\\": 84.185, \\\"v720\\\": 87.956}, \\\"ori\\\": {\\\"v1080\\\": 72.223, \\\"v960\\\": 74.27, \\\"v864\\\": 76.517, \\\"v720\\\": 80.384}}}\",\"ufq\":\"\",\"volume_info_json\":\"\",\"transcode_feature_id\":\"a132049a6b98a3ec15f3060fcfb50392\",\"dec_info\":\"\",\"gearvqm\":\"\",\"audio_bit_rate\":24059,\"ps_info\":\"{\\\"vps\\\": \\\"AQwC//8BYAAAAwAAAwAAAwAAAwBdAACdzkgS\\\", \\\"sps\\\": \\\"AQMBYAAAAwAAAwAAAwAAAwBdAACgBIIAQBZZ3OTJJRCzREkkkmJ/Lh3/X5s+X/X4ziBDmgIAAAMAAgAAAwA8EA==\\\", \\\"pps\\\": \\\"AcElPAiQ\\\"}\"}",
                                    "fps": 29,
                                    "fid_profile_labels": ""
                                  }
                                ],
                                "duration": 103353,
                                "play_addr_h264": {
                                  "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3c77e2ee7af8a6fdfd237e506d1191c1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/0deaf3150d648a3cb0cf64cbe2954ab1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=0161e7cf418f43959153800ac6cd7628&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjAwNmI3NWY1Y2U3OGU0ZTQ3ZjVjOTI0ODI4Mjg4ZGYy&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7raq17og65qf42p4a80_h264_720p_1112655",
                                  "data_size": 14374537,
                                  "file_hash": "d19dd3cf65ea71f08a8e73a300c707df",
                                  "file_cs": "c:0-86019-bd66",
                                  "url_prefix": null
                                },
                                "cdn_url_expired": 0,
                                "is_long_video": 1,
                                "animated_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=30cd86fd&x-expires=1779087600&x-signature=qnkO7wfQGQ2V3KhH%2B88j1kzoOe8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22032188&x-expires=1779087600&x-signature=Ai2Vec6f4xVMugziyQYGx6bTCMM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=eccac54e&x-expires=1779087600&x-signature=SfEIQAQXmxdVDB97tf%2BPmga5yis%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "need_set_token": false,
                                "CoverTsp": 10.77070995011338,
                                "misc_download_addrs": {},
                                "is_callback": true,
                                "video_model": "",
                                "tags": null,
                                "big_thumbs": [
                                  {
                                    "img_num": 103,
                                    "uri": "",
                                    "img_url": "",
                                    "img_x_size": 136,
                                    "img_y_size": 240,
                                    "img_x_len": 5,
                                    "img_y_len": 5,
                                    "duration": 103.25833,
                                    "interval": 1,
                                    "fext": "jpeg",
                                    "img_uris": [
                                      "tos-useast5-p-0068-tx/o09AgBEqVKDXRcgU08xkFW2Df0SEfpQErsQEgO",
                                      "tos-useast5-p-0068-tx/oInegAkj3IqV5fGIHUALp7q5geWZTJICBIoptA",
                                      "tos-useast5-p-0068-tx/oIEsJEQgSuAFgEqrvURU09fgf0DzDB2QkDVp82",
                                      "tos-useast5-p-0068-tx/o4DIgE0CR0WIpArf2YQ9TqV1QKuDEBFESeWDvS",
                                      "tos-useast5-p-0068-tx/oQp9T0KrIdqQBSeEIEX27DAjARFVWSfQTgWD0E"
                                    ],
                                    "img_urls": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o09AgBEqVKDXRcgU08xkFW2Df0SEfpQErsQEgO~tplv-noop.image?dr=12525&refresh_token=3b0be091&x-expires=1779023927&x-signature=r8z2Nl4KrC4yRyWVeHquf%2BnkOQ8%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7raq17og65qf42p4a80",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oInegAkj3IqV5fGIHUALp7q5geWZTJICBIoptA~tplv-noop.image?dr=12525&refresh_token=ebcda0c3&x-expires=1779023927&x-signature=3gOvfxPhjeEOQsZVy8vtSmtxXjM%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7raq17og65qf42p4a80",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIEsJEQgSuAFgEqrvURU09fgf0DzDB2QkDVp82~tplv-noop.image?dr=12525&refresh_token=ad445d94&x-expires=1779023927&x-signature=cSJBh%2F9khBo%2BnO3%2B8wyeeoCDGus%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7raq17og65qf42p4a80",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/o4DIgE0CR0WIpArf2YQ9TqV1QKuDEBFESeWDvS~tplv-noop.image?dr=12525&refresh_token=0b3e4236&x-expires=1779023927&x-signature=7rVt97pFqT8cnc9tQmSwjOBcuk4%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7raq17og65qf42p4a80",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oQp9T0KrIdqQBSeEIEX27DAjARFVWSfQTgWD0E~tplv-noop.image?dr=12525&refresh_token=60d59002&x-expires=1779023927&x-signature=6gXwBwcg%2F%2B4ZjbMwni%2FGFbuMXo0%3D&t=9276707c&ps=14f1eb3e&shp=9e36835a&shcp=d05b14bd&idc=useast8&VideoID=v12044gd0000d7raq17og65qf42p4a80"
                                    ]
                                  }
                                ],
                                "play_addr_bytevc1": {
                                  "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/0dcaab2a1a740286980a111dc23f36ed/6a09c037/video/tos/useast5/tos-useast5-ve-0068c004-tx/oYZtJpA7eAgfKofJAGjTBwCAYIHkLIcI5VjRAp/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=702&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGk7OTU8NGhpNTQ6OztkM0BpM2RzN3Q5cjRkOjMzZzczNEBgL2NfY19hNjUxLV42XjRgYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/5a9289851ee5b1937614af9452dc82e7/6a09c037/video/tos/useast5/tos-useast5-ve-0068c004-tx/oYZtJpA7eAgfKofJAGjTBwCAYIHkLIcI5VjRAp/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=702&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=NGk7OTU8NGhpNTQ6OztkM0BpM2RzN3Q5cjRkOjMzZzczNEBgL2NfY19hNjUxLV42XjRgYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=c07aa898a701428f9ed1b9f2b6f82fc1&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjM4NzljYTBhZmU0OGU4NWJiZDE0NWViMjA3YTNkNjBm&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                  ],
                                  "width": 576,
                                  "height": 1024,
                                  "url_key": "v12044gd0000d7raq17og65qf42p4a80_bytevc1_540p_719328",
                                  "data_size": 9293089,
                                  "file_hash": "90ba5ffa84032a2a1283f875d1665204",
                                  "file_cs": "c:0-86711-6726",
                                  "url_prefix": null
                                },
                                "is_bytevc1": 0,
                                "meta": "{\"LoudnessRange\":\"4.9\",\"LoudnessRangeEnd\":\"-15\",\"LoudnessRangeStart\":\"-19.9\",\"MaximumMomentaryLoudness\":\"-9.5\",\"MaximumShortTermLoudness\":\"-13.6\",\"Version\":\"2\",\"VolumeInfoJson\":\"{\\\"Loudness\\\":-16.2,\\\"LoudnessRangeStart\\\":-19.9,\\\"MaximumMomentaryLoudness\\\":-9.5,\\\"Metrics\\\":{\\\"Loudness\\\":{\\\"Integrated\\\":-16.24},\\\"Phase\\\":{\\\"RMSDownmixDiff\\\":-0.565},\\\"RMSStats\\\":{\\\"LTotal\\\":-18.494,\\\"Peak\\\":0.061,\\\"RTotal\\\":-23.57,\\\"LRDiff\\\":5.076},\\\"Version\\\":\\\"1.4.2\\\",\\\"AEDInfo\\\":{\\\"MusicRatio\\\":0.01,\\\"SingingRatio\\\":0,\\\"SpeechRatio\\\":0.94},\\\"AnchorLoudness\\\":{\\\"Speech\\\":{\\\"Loud\\\":-16.2,\\\"LoudR\\\":4.5,\\\"LoudRE\\\":-14.9,\\\"LoudRS\\\":-19.4,\\\"MaxMomLoud\\\":-9.47,\\\"MaxSTLoud\\\":-13.6}},\\\"Cutoff\\\":{\\\"FCenL\\\":2301.99,\\\"FCenR\\\":2935.97,\\\"Spkr100G\\\":0,\\\"Spkr150G\\\":0.09,\\\"Spkr200G\\\":0.16}},\\\"Version\\\":2,\\\"LoudnessRange\\\":4.9,\\\"LoudnessRangeEnd\\\":-15,\\\"MaximumShortTermLoudness\\\":-13.6,\\\"Peak\\\":1}\",\"bright_ratio_mean\":\"0.0225\",\"brightness_mean\":\"133.5969\",\"diff_overexposure_ratio\":\"0.0068\",\"loudness\":\"-16.2\",\"overexposure_ratio_mean\":\"0.0045\",\"peak\":\"1\",\"play_time_prob_dist\":\"[800,0.4166,10352.0707]\",\"sp_extra_info\":\"{\\\"origin_width\\\":1080,\\\"origin_height\\\":1920,\\\"origin_create_at\\\":1777773870}\",\"sr_score\":\"1.000\",\"std_brightness\":\"12.4599\",\"vq_score\":\"55.13\"}",
                                "cover_is_custom": true,
                                "ai_dynamic_cover": {
                                  "uri": "tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=30cd86fd&x-expires=1779087600&x-signature=qnkO7wfQGQ2V3KhH%2B88j1kzoOe8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22032188&x-expires=1779087600&x-signature=Ai2Vec6f4xVMugziyQYGx6bTCMM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=eccac54e&x-expires=1779087600&x-signature=SfEIQAQXmxdVDB97tf%2BPmga5yis%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "ai_dynamic_cover_bak": {
                                  "uri": "tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=30cd86fd&x-expires=1779087600&x-signature=qnkO7wfQGQ2V3KhH%2B88j1kzoOe8%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.awebp?dr=8601&refresh_token=22032188&x-expires=1779087600&x-signature=Ai2Vec6f4xVMugziyQYGx6bTCMM%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oEXrSAAApDDcqyO2CyiigaBVEeARgvAIErfTS1~tplv-tiktokx-cropcenter:248:330.jpeg?dr=8601&refresh_token=eccac54e&x-expires=1779087600&x-signature=SfEIQAQXmxdVDB97tf%2BPmga5yis%3D&t=bacd0480&ps=4f5296ae&shp=d05b14bd&shcp=132edbea&idc=useast8&sc=dynamic_cover&biz_tag=tt_video&s=PUBLISH"
                                  ],
                                  "url_prefix": null
                                },
                                "cla_info": {
                                  "has_original_audio": 1,
                                  "enable_auto_caption": 0,
                                  "original_language_info": {
                                    "lang": "eng-US",
                                    "language_id": 2,
                                    "language_code": "en",
                                    "can_translate_realtime": false,
                                    "original_caption_type": 1,
                                    "is_burnin_caption": false,
                                    "can_translate_realtime_skip_translation_lang_check": true,
                                    "first_subtitle_time": 580
                                  },
                                  "caption_infos": [
                                    {
                                      "lang": "eng-US",
                                      "language_id": 2,
                                      "url": "https://v16-cla.tiktokcdn-us.com/3132588e6d74a67ec5de639b3a05eb7f/6a30f8d7/video/tos/useast5/tos-useast5-v-0068-tx/39ec194038d443beb90e8db45a356243/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=3454&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RzN3Q5cjRkOjMzZzczNEBpM2RzN3Q5cjRkOjMzZzczNEA1MS9jMmQ0bm9hLS1kMS9zYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                      "expire": 1781594327,
                                      "caption_format": "webvtt",
                                      "complaint_id": 7635480736320982000,
                                      "is_auto_generated": true,
                                      "sub_id": -1367007305,
                                      "sub_version": "1",
                                      "cla_subtitle_id": 7635480736320982000,
                                      "translator_id": 0,
                                      "language_code": "en",
                                      "is_original_caption": true,
                                      "url_list": [
                                        "https://v16-cla.tiktokcdn-us.com/3132588e6d74a67ec5de639b3a05eb7f/6a30f8d7/video/tos/useast5/tos-useast5-v-0068-tx/39ec194038d443beb90e8db45a356243/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=3454&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RzN3Q5cjRkOjMzZzczNEBpM2RzN3Q5cjRkOjMzZzczNEA1MS9jMmQ0bm9hLS1kMS9zYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://v19-cla.tiktokcdn-us.com/11bad225f552dabdc252fea0dd4ae1af/6a30f8d7/video/tos/useast5/tos-useast5-v-0068-tx/39ec194038d443beb90e8db45a356243/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=3454&ft=aEdJYqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=M2RzN3Q5cjRkOjMzZzczNEBpM2RzN3Q5cjRkOjMzZzczNEA1MS9jMmQ0bm9hLS1kMS9zYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00048000",
                                        "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&format=webvtt&is_play_url=1&language=eng-US&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmQyZjAxYWM5NjQ5MmY1ZWYwOGM4YTUyYjk1ODk3MmUz&source=SmartPlayerSubtitleRedirect&version=1%3Abig_caption&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                      ],
                                      "caption_length": 1586,
                                      "variant": "big_caption",
                                      "subtitle_type": 1,
                                      "source_tag": "vv_counter,",
                                      "translation_type": 0
                                    }
                                  ],
                                  "creator_edited_caption_id": 0,
                                  "vertical_positions": null,
                                  "hide_original_caption": false,
                                  "captions_type": 1,
                                  "no_caption_reason": 0,
                                  "is_author_dubbing_qualified": false,
                                  "no_caption_reason_v2": 0
                                },
                                "source_HDR_type": 0,
                                "bit_rate_audio": [],
                                "did_profile_labels": "",
                                "vid_profile_labels": "{\"rec_audio_effect\":\"1\",\"audio_meta_origin\":\"{\\\"TS\\\":[\\\"tag_03010309\\\",\\\"tag_03010308\\\",\\\"tag_03010300\\\",\\\"tag_00010202\\\",\\\"tag_03000002\\\"],\\\"TRS\\\":[0.85,0.25,0.23,0.1,0.08],\\\"TACM\\\":[0.66],\\\"DRR\\\":22.5,\\\"RCD\\\":[-3.1],\\\"MP\\\":0.06,\\\"BE\\\":[64.6,10524.4],\\\"OCF\\\":[-19.93,-15.7591,-6.3749,-4.6002,-5.2296,-13.319,-14.5013,-24.1825,-34.5601,-51.6932],\\\"DO\\\":0,\\\"CTPS\\\":0,\\\"IL\\\":-16.2}\",\"tier3\":\"10060\"}",
                                "download_no_watermark_addr": {
                                  "uri": "v12044gd0000d7raq17og65qf42p4a80",
                                  "url_list": [
                                    "https://v45.tiktokcdn-us.com/3c77e2ee7af8a6fdfd237e506d1191c1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e0008d000",
                                    "https://v19.tiktokcdn-us.com/0deaf3150d648a3cb0cf64cbe2954ab1/6a09c037/video/tos/useast5/tos-useast5-pve-0068-tx/o4ADQYK2nepEfBlN0XDqSIESS9rRE0FgtnWEQQ/?a=1233&bti=MzU8OGYpNHYpNzo5ZjEuLjpkLTptNDQwOg%3D%3D&&bt=1086&ft=aEKfuqT0mHtPD12qsFjI3wUimCOHMeF~O5&mime_type=video_mp4&rc=OzlnOWQzNjQ4Nmk0aTo0NEBpM2RzN3Q5cjRkOjMzZzczNEAvNGBgLTUyNjYxNTFgYjMtYSM1MS9jMmQ0bm9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071704B75DE484E878307D3BEC&btag=e00088000",
                                    "https://api16-normal-useast8.tiktokv.us/aweme/v1/play/?faid=1233&file_id=0161e7cf418f43959153800ac6cd7628&is_play_url=1&item_id=7635480524471029006&line=0&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLjAwNmI3NWY1Y2U3OGU0ZTQ3ZjVjOTI0ODI4Mjg4ZGYy&source=PUBLISH&video_id=v12044gd0000d7raq17og65qf42p4a80"
                                  ],
                                  "width": 720,
                                  "height": 1280,
                                  "url_key": "v12044gd0000d7raq17og65qf42p4a80_h264_720p_1112655",
                                  "data_size": 14374537,
                                  "file_hash": "d19dd3cf65ea71f08a8e73a300c707df",
                                  "file_cs": "c:0-86019-bd66",
                                  "url_prefix": null
                                }
                              },
                              "user_digged": 0,
                              "statistics": {
                                "aweme_id": "7635480524471029006",
                                "comment_count": 396,
                                "digg_count": 7668,
                                "download_count": 24,
                                "play_count": 225168,
                                "share_count": 340,
                                "forward_count": 0,
                                "lose_count": 0,
                                "lose_comment_count": 0,
                                "whatsapp_share_count": 3,
                                "collect_count": 164,
                                "repost_count": 0
                              },
                              "status": {
                                "aweme_id": "7635480524471029006",
                                "is_delete": false,
                                "allow_share": true,
                                "allow_comment": true,
                                "private_status": 0,
                                "in_reviewing": false,
                                "reviewed": 1,
                                "self_see": false,
                                "is_prohibited": false,
                                "download_status": 0,
                                "review_result": {
                                  "review_status": 0
                                }
                              },
                              "rate": 12,
                              "text_extra": [],
                              "label_top": {
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                  "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                ],
                                "width": 720,
                                "height": 720,
                                "url_prefix": null
                              },
                              "share_info": {
                                "share_url": "https://www.tiktok.com/@stoolpresidente/video/7635480524471029006?_r=1&u_code=ec83l71am96edh&preview_pb=0&sharer_language=en&_d=f3f19032i98f95&share_item_id=7635480524471029006&source=h5_m",
                                "share_desc": "Check out this TikTok I found! ",
                                "share_title": "Check out Dave Portnoy’s video! #TikTok > ",
                                "bool_persist": 0,
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_link_desc": "",
                                "share_signature_url": "",
                                "share_signature_desc": "",
                                "share_quote": "",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Dave Portnoy’s video! #TikTok > ",
                                "now_invitation_card_image_urls": null
                              },
                              "distance": "",
                              "video_labels": [],
                              "is_vr": false,
                              "is_ads": false,
                              "aweme_type": 0,
                              "cmt_swt": false,
                              "image_infos": null,
                              "risk_infos": {
                                "vote": false,
                                "warn": false,
                                "risk_sink": false,
                                "type": 0,
                                "content": ""
                              },
                              "is_relieve": false,
                              "sort_label": "",
                              "position": null,
                              "uniqid_position": null,
                              "author_user_id": 6659752019493208000,
                              "bodydance_score": 0,
                              "geofencing": null,
                              "is_hash_tag": 1,
                              "is_pgcshow": false,
                              "region": "US",
                              "video_text": [],
                              "collect_stat": 0,
                              "label_top_text": null,
                              "group_id": "7635480524471029006",
                              "prevent_download": false,
                              "nickname_position": null,
                              "challenge_position": null,
                              "item_comment_settings": 0,
                              "with_promotional_music": false,
                              "long_video": null,
                              "item_duet": 0,
                              "item_react": 0,
                              "without_watermark": false,
                              "desc_language": "en",
                              "interaction_stickers": null,
                              "misc_info": "{}",
                              "origin_comment_ids": null,
                              "commerce_config_data": null,
                              "distribute_type": 2,
                              "video_control": {
                                "allow_download": false,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "draft_progress_bar": 1,
                                "allow_duet": true,
                                "allow_react": true,
                                "prevent_download_type": 2,
                                "allow_dynamic_wallpaper": true,
                                "timer_status": 1,
                                "allow_music": true,
                                "allow_stitch": true
                              },
                              "has_vs_entry": false,
                              "commerce_info": {
                                "auction_ad_invited": false,
                                "with_comment_filter_words": false,
                                "adv_promotable": false,
                                "branded_content_type": 0,
                                "organic_log_extra": "{\"req_id\":\"20260517071704B75DE484E878307D3BEC\"}",
                                "is_diversion_ad": 0
                              },
                              "need_vs_entry": false,
                              "is_preview": 0,
                              "anchors": null,
                              "hybrid_label": null,
                              "geofencing_regions": null,
                              "have_dashboard": false,
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "share_list_status": 0,
                                "share_general": {
                                  "code": 0,
                                  "show_type": 2,
                                  "transcode": 3,
                                  "mute": false
                                },
                                "platform_list": null,
                                "share_action_list": null,
                                "press_action_list": null
                              },
                              "has_promote_entry": 1,
                              "promote_toast": "",
                              "item_stitch": 0,
                              "cover_labels": null,
                              "anchors_extras": "",
                              "mask_infos": [],
                              "search_highlight": null,
                              "promote_toast_key": "",
                              "playlist_blocked": false,
                              "green_screen_materials": null,
                              "need_trim_step": false,
                              "interact_permission": {
                                "duet": 0,
                                "stitch": 0,
                                "duet_privacy_setting": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0,
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "allow_adding_as_post": {
                                  "status": 0
                                }
                              },
                              "question_list": null,
                              "content_desc": "",
                              "content_desc_extra": [],
                              "products_info": null,
                              "follow_up_publish_from_id": -1,
                              "disable_search_trending_bar": false,
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7635480524471029000
                                ]
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 103258,
                              "retry_type": 0,
                              "upvote_preload": {
                                "need_pull_upvote_info": false
                              },
                              "is_paid_content": false,
                              "paid_content_info": {
                                "paid_collection_id": 0,
                                "is_paid_collection_intro": false,
                                "category": 0,
                                "episode_num": 0,
                                "should_show_series_purchase_label": false
                              },
                              "branded_content_accounts": null,
                              "is_description_translatable": true,
                              "poi_re_tag_signal": 0,
                              "no_selected_music": false,
                              "follow_up_item_id_groups": "",
                              "is_text_sticker_translatable": false,
                              "text_sticker_major_lang": "un",
                              "cc_template_info": {
                                "template_id": "",
                                "desc": "",
                                "author_name": "",
                                "clip_count": 0,
                                "duration_milliseconds": 0,
                                "related_music_id": ""
                              },
                              "original_client_text": {
                                "markup_text": "Emergency Press Conference - Celtics blow 3-1 to Awful Sixers Team.",
                                "text_extra": null
                              },
                              "music_selected_from": "original",
                              "tts_voice_ids": null,
                              "reference_tts_voice_ids": null,
                              "voice_filter_ids": null,
                              "reference_voice_filter_ids": null,
                              "music_title_style": 1,
                              "animated_image_info": {
                                "type": 0,
                                "effect": 0
                              },
                              "comment_config": {
                                "emoji_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0017586868471541248}"
                                },
                                "quick_comment": {
                                  "enabled": false,
                                  "rec_level": 0
                                },
                                "zero_comment_button_config": {
                                  "background_url": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                    ],
                                    "url_prefix": null
                                  },
                                  "zero_comment_button_main_text": "Start the conversation",
                                  "zero_comment_button_text": "Comment",
                                  "zero_comment_button_enable": true,
                                  "image_type": 1,
                                  "background_url_for_black": {
                                    "url_list": [
                                      "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                    ],
                                    "url_prefix": null
                                  }
                                },
                                "long_press_recommend_list": null,
                                "quick_comment_emoji_recommend_list": null,
                                "comment_panel_show_tab_config": {
                                  "max_tab_count": 3,
                                  "comment_tab_info_config": [
                                    {
                                      "tab_id": 2,
                                      "tab_name": "like_list",
                                      "priority": 100
                                    },
                                    {
                                      "tab_id": 3,
                                      "tab_name": "view_list",
                                      "priority": 101
                                    },
                                    {
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list",
                                      "priority": -100
                                    },
                                    {
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page",
                                      "priority": 102
                                    },
                                    {
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab",
                                      "priority": 11
                                    }
                                  ]
                                },
                                "social_quick_comment": {
                                  "enabled": false,
                                  "rec_metrics": {
                                    "non_social_enabled": "false",
                                    "p_comment": "0",
                                    "p_skip": "0",
                                    "p_stay_time": "0"
                                  }
                                },
                                "has_visual_comment": true
                              },
                              "is_on_this_day": 0,
                              "added_sound_music_info": {
                                "id": 7635480602548751000,
                                "id_str": "7635480602548751118",
                                "title": "original sound - stoolpresidente",
                                "author": "Dave Portnoy",
                                "album": "",
                                "cover_large": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=b210c0d7&x-expires=1779087600&x-signature=clrvEAljZmLGMaznCB9Bf9iZBi8%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.webp?dr=9640&refresh_token=12872cb0&x-expires=1779087600&x-signature=wA9Zb9Lq%2BDCC56gcwGQ9anMQbq0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=2da725ca&x-expires=1779087600&x-signature=mN5OZQdzRuHBzNPHyadFjErsjWY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "cover_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "play_url": {
                                  "uri": "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635480639815682830.mp3",
                                  "url_list": [
                                    "https://sf19.tiktokcdn-us.com/obj/ies-music-tx/7635480639815682830.mp3"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "source_platform": 72,
                                "duration": 103,
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7635480524471029006,\"from_user_id\":7327269695303910443,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d7raqcnog65og1369gg0\",\"owner_id\":6659752019493208069,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "user_count": 0,
                                "position": null,
                                "collect_stat": 0,
                                "status": 1,
                                "offline_desc": "",
                                "owner_id": "6659752019493208069",
                                "owner_nickname": "Dave Portnoy",
                                "is_original": false,
                                "mid": "7635480602548751118",
                                "binded_challenge_id": 0,
                                "author_deleted": false,
                                "owner_handle": "stoolpresidente",
                                "author_position": null,
                                "prevent_download": false,
                                "external_song_info": [],
                                "sec_uid": "MS4wLjABAAAAINC_ElRR-l1RCcnEjOZhNO-9wOzAMf-YHXqRY8vvG9bEhMRa6iu23TaE3JPZYXBD",
                                "avatar_thumb": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=b3f1ab3c&x-expires=1779087600&x-signature=vHbMVhPTSqDIdyNaJO67VC2B6uk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3bc6f57&x-expires=1779087600&x-signature=WQLsT7yRBcwOrefkMSOxgzRDpcM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=39eebb75&x-expires=1779087600&x-signature=Z6LK%2BcRBZGYGEpNcL4IyOwBTAPc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "avatar_medium": {
                                  "uri": "tos-maliva-avt-0068/7310178711609032710",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=fa531798&x-expires=1779087600&x-signature=rHmrLaCor40enqcoER437B4fFAk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.webp?dr=9640&refresh_token=6e490907&x-expires=1779087600&x-signature=39kE0ipvZQEZMSwO1XN0cH0ePsw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                                    "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7310178711609032710~tplv-tiktokx-cropcenter:720:720.jpeg?dr=9640&refresh_token=581540f9&x-expires=1779087600&x-signature=cp4KTc2W%2BaTnqWqsBkLviEg4XgY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8"
                                  ],
                                  "width": 720,
                                  "height": 720,
                                  "url_prefix": null
                                },
                                "preview_start_time": 0,
                                "preview_end_time": 0,
                                "is_commerce_music": true,
                                "is_original_sound": true,
                                "audition_duration": 103,
                                "shoot_duration": 103,
                                "artists": [],
                                "lyric_short_position": null,
                                "mute_share": false,
                                "tag_list": null,
                                "dmv_auto_show": false,
                                "is_author_artist": false,
                                "is_pgc": false,
                                "is_matched_metadata": false,
                                "is_audio_url_with_cookie": false,
                                "video_duration": 103,
                                "search_highlight": null,
                                "multi_bit_rate_play_info": null,
                                "duration_high_precision": {
                                  "duration_precision": 103.392624,
                                  "shoot_duration_precision": 103.392624,
                                  "audition_duration_precision": 103.392624,
                                  "video_duration_precision": 103.392624
                                },
                                "can_not_reuse": false,
                                "is_play_music": false,
                                "commercial_right_type": 2,
                                "tt_to_dsp_song_infos": null,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "is_shooting_allow": true,
                                "recommend_status": 100,
                                "has_commerce_right": true,
                                "meme_song_info": {},
                                "uncert_artists": null,
                                "allow_offline_music_to_detail_page": false,
                                "create_time": 1777773875,
                                "can_be_stitched": true,
                                "music_group_use_count": 0,
                                "has_human_voice": true,
                                "music_ugid": 7635481863880068000,
                                "music_ugid_use_count": 0,
                                "has_commerce_right_strict": true,
                                "is_commerce_music_strict": true,
                                "tag_list_v2": null
                              },
                              "origin_volume": "50.000000",
                              "music_volume": "0.000000",
                              "support_danmaku": false,
                              "has_danmaku": false,
                              "muf_comment_info_v2": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "content_original_type": 1,
                              "shoot_tab_name": "photo",
                              "content_type": "video",
                              "content_size_type": 1,
                              "is_nff_or_nr": false,
                              "operator_boost_info": null,
                              "main_arch_common": "",
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "banners": null,
                              "picked_users": [],
                              "is_title_translatable": false,
                              "title_language": "un",
                              "upvote_info": {
                                "user_upvoted": false,
                                "friends_recall_info": "{}",
                                "repost_initiate_score": 0
                              },
                              "promote_capcut_toggle": 0,
                              "comment_topbar_info": null,
                              "content_model": {
                                "standard_biz": {
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  },
                                  "creator_analytics": {
                                    "creator_analytics_entrance_status": 1
                                  },
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_type": 0,
                                    "alliance_item_label_text": ""
                                  },
                                  "ai_comment_photo": {
                                    "enable_comment": true
                                  }
                                },
                                "custom_biz": {
                                  "aweme_trace": "20260517071704B75DE484E878307D3BEC",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "link": "",
                                    "is_high_quality_post": false
                                  },
                                  "high_quality_boost_info_v2": {}
                                }
                              },
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "ttt_product_recall_type": -2,
                              "promote_icon_text": "Promote",
                              "used_full_song": false,
                              "c2pa_info": {
                                "first_src": "",
                                "last_src": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "last_aigc_src": "",
                                "dedup_err": "",
                                "aigc_src": "",
                                "is_tiktok": false,
                                "is_capcut": false,
                                "total_src": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_vid": 0,
                                "upload_dur": 0,
                                "total_audio": 0,
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}"
                              },
                              "content_level": 1,
                              "promote": {
                                "is_show_video_view": false,
                                "video_view_schema": "",
                                "video_view_count": 0,
                                "promote_traffic_tag": {
                                  "traffic_level": 0,
                                  "need_track": false,
                                  "version": "2025v1"
                                },
                                "extra": "{\"is_self_post\":false,\"page_source\":\"publish\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}"
                              },
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "visual_search_info": {
                                "vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "fallback_vtag_enable": false,
                                "visual_search_intent_level": 0,
                                "screenshot_entrance_enable": 0,
                                "vtag_enable_type": 0,
                                "fallback_vtag_enable_type": 0,
                                "long_press_entrance_enable_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501257694764157, \\\"1\\\": 4.501269981495329, \\\"0\\\": 4.501250352487113}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -3.1611404977854094e-05, \\\"2\\\": -0.00028577316931697414, \\\"-1\\\": -0.00010695712751003983}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003492047452152189, \\\"2\\\": 0.0006464053940129082, \\\"-1\\\": 5.940979345533045e-05}\",\"PACK_VOD:audio_meta\":\"{\\\"74ae78915d808e76104b38765219c117\\\":{\\\"Md5\\\":\\\"74ae78915d808e76104b38765219c117\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.65],\\\"drr\\\":23.2,\\\"rcd\\\":[-3.1],\\\"mp\\\":0.17,\\\"be\\\":[64.6,10174.4],\\\"ocf\\\":[-20.0023,-16,-6.3345,-4.6739,-5.1611,-13.2238,-14.5622,-24.2047,-34.817,-51.239],\\\"il\\\":-16.3}}},\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.65],\\\"drr\\\":23.2,\\\"rcd\\\":[-2.9],\\\"mp\\\":0.31,\\\"be\\\":[64.6,10045.2],\\\"ocf\\\":[-20.0836,-16.1102,-6.3883,-4.6921,-5.1296,-13.1076,-14.3705,-24.1646,-35.0058,-51.4254],\\\"il\\\":-16.3}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.66],\\\"drr\\\":22.5,\\\"rcd\\\":[-3.1],\\\"mp\\\":0.06,\\\"be\\\":[64.6,10524.4],\\\"ocf\\\":[-19.93,-15.7591,-6.3749,-4.6002,-5.2296,-13.319,-14.5013,-24.1825,-34.5601,-51.6932],\\\"il\\\":-16.2},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_03010308\\\",\\\"tag_03010300\\\",\\\"tag_00010202\\\",\\\"tag_03000002\\\"],\\\"trs\\\":[0.85,0.25,0.23,0.1,0.08]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10060\",\"play_time_prob_dist\":\"[800,0.4166,10352.0707]\"}"
                              },
                              "meme_reg_info": {},
                              "smart_search_info": {
                                "find_similar_intent_type": 0,
                                "ask_tako_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0,
                                "ai_overview_intent_type": 0
                              },
                              "survey_info": null,
                              "tns_ue_feed_info": {
                                "footnote": {
                                  "can_add_footnote": 0,
                                  "pending_count": 0
                                }
                              },
                              "ecosystem_perception_enhancement": null,
                              "creator_ai_comment": {
                                "has_ai_topic": false,
                                "eligible_video": false,
                                "not_eligible_reason": 213
                              },
                              "tako_bubble_info": {
                                "tako_bubble_enable": false
                              },
                              "bottom_products": null,
                              "right_products": null,
                              "comment_at_tako_info": {
                                "show_tako_account": 0
                              },
                              "ai_remix_info": {
                                "has_entrance": false
                              },
                              "item_allow_ai_remix": 1,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1777773868465",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_f01c39d3-f7d4-41b1-b8e8-6f33b1eed601",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "videos": [
                          {
                            "id": "7470123456789012345",
                            "caption": "Second page example video",
                            "createdAt": "2025-09-01T12:00:00.000Z",
                            "url": "https://www.tiktok.com/@stoolpresidente/video/7470123456789012345",
                            "thumbnailUrl": "https://example.com/video-cover-page-2.jpg",
                            "durationMs": 30250,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 9021,
                              "likes": 731,
                              "comments": 48,
                              "shares": 12,
                              "saves": 19
                            },
                            "media": {
                              "downloadUrl": "https://example.com/video-page-2-watermarked.mp4",
                              "downloadWithoutWatermarkUrl": "https://example.com/video-page-2-no-watermark.mp4"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1737000000000",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "videos": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/feed/trending": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok trending feed",
        "description": "Discover currently trending TikTok posts.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.items` array means no trending posts were available for that request.",
          "disambiguation": "Repeat the same request for a fresh trending batch. New and overlapping posts are both possible. No cursor or page parameters."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "description": "Two-letter ISO 3166-1 country code for the request."
            },
            "required": true,
            "description": "Two-letter ISO 3166-1 country code for the request.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, requests a smaller response with fewer optional fields."
            },
            "required": false,
            "description": "When true, requests a smaller response with fewer optional fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Trending TikTok posts for this request.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "items": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "video": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "TikTok post identifier."
                                  },
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Canonical public TikTok URL for the post."
                                  },
                                  "caption": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Caption text."
                                  },
                                  "createdAt": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "ISO-8601 timestamp when the post was created."
                                  },
                                  "region": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Two-letter country code when available."
                                  },
                                  "durationMs": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Duration in milliseconds when available."
                                  },
                                  "mediaType": {
                                    "type": "string",
                                    "enum": [
                                      "video",
                                      "slideshow"
                                    ],
                                    "description": "Whether the post is a video or photo slideshow."
                                  },
                                  "isAd": {
                                    "type": "boolean",
                                    "description": "Whether TikTok marks the post as an ad."
                                  }
                                },
                                "required": [
                                  "id",
                                  "url",
                                  "caption",
                                  "createdAt",
                                  "durationMs",
                                  "mediaType",
                                  "isAd"
                                ],
                                "description": "Core identity and media type for a trending TikTok post."
                              },
                              "author": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "platformUserId": {
                                    "type": "string",
                                    "description": "Numeric user id."
                                  },
                                  "secUid": {
                                    "type": "string",
                                    "description": "Stable opaque user id."
                                  },
                                  "handle": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Public username without a leading @."
                                  },
                                  "nickname": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name."
                                  },
                                  "verified": {
                                    "type": "boolean",
                                    "description": "Whether the account is verified."
                                  },
                                  "avatarUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile picture URL."
                                  },
                                  "signature": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile bio text."
                                  },
                                  "region": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Two-letter country code when available."
                                  }
                                },
                                "description": "Creator of the trending post when available."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "views": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "View count."
                                  },
                                  "likes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Like count."
                                  },
                                  "comments": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Comment count."
                                  },
                                  "shares": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Share count."
                                  },
                                  "saves": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Save or collection count."
                                  }
                                },
                                "required": [
                                  "views",
                                  "likes",
                                  "comments",
                                  "shares",
                                  "saves"
                                ],
                                "description": "Engagement metrics for a trending post."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "thumbnailUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Thumbnail or cover image URL."
                                  },
                                  "downloadUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL."
                                  },
                                  "downloadWithoutWatermarkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Download URL without watermark when available."
                                  },
                                  "slideshowImages": {
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    },
                                    "description": "Ordered image URLs for photo slideshow posts."
                                  }
                                },
                                "required": [
                                  "thumbnailUrl",
                                  "downloadUrl",
                                  "downloadWithoutWatermarkUrl"
                                ],
                                "description": "Media URLs for a trending post."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this post, excluding fields already shown above."
                              }
                            },
                            "required": [
                              "video",
                              "author",
                              "metrics",
                              "media"
                            ],
                            "description": "A trending TikTok post in the feed."
                          },
                          "description": "Trending TikTok posts for this request. Repeat the same request for a fresh batch that may include new and overlapping posts."
                        },
                        "totalResults": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of posts in data.items for this response."
                        }
                      },
                      "required": [
                        "items",
                        "totalResults"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "items": [
                          {
                            "video": {
                              "id": "7540000301621841183",
                              "url": "https://www.tiktok.com/@example/video/7540000301621841183",
                              "caption": "Trending post example",
                              "createdAt": "2025-08-18T18:52:13.000Z",
                              "region": "US",
                              "durationMs": 46315,
                              "mediaType": "video",
                              "isAd": false
                            },
                            "author": {
                              "platformUserId": "6754760670083138566",
                              "handle": "example",
                              "nickname": "Example Creator",
                              "verified": false,
                              "avatarUrl": "https://example.com/avatar.jpg",
                              "signature": null,
                              "region": "US"
                            },
                            "metrics": {
                              "views": 1443873,
                              "likes": 71423,
                              "comments": 646,
                              "shares": 8440,
                              "saves": 21957
                            },
                            "media": {
                              "thumbnailUrl": "https://example.com/cover.jpg",
                              "downloadUrl": "https://example.com/video.mp4",
                              "downloadWithoutWatermarkUrl": null
                            }
                          }
                        ],
                        "totalResults": 1
                      },
                      "meta": {
                        "requestId": "req_01example_feed_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "slideshow": {
                    "value": {
                      "data": {
                        "items": [
                          {
                            "video": {
                              "id": "7628328815495744790",
                              "url": "https://www.tiktok.com/@example/photo/7628328815495744790",
                              "caption": "Photo carousel example",
                              "createdAt": "2026-04-16T12:00:00.000Z",
                              "region": "GB",
                              "durationMs": null,
                              "mediaType": "slideshow",
                              "isAd": false
                            },
                            "author": {
                              "handle": "example",
                              "verified": false
                            },
                            "metrics": {
                              "views": 50000,
                              "likes": 1200,
                              "comments": 45,
                              "shares": 30,
                              "saves": 80
                            },
                            "media": {
                              "thumbnailUrl": "https://example.com/slide-cover.jpg",
                              "downloadUrl": null,
                              "downloadWithoutWatermarkUrl": null,
                              "slideshowImages": [
                                "https://example.com/slide1.jpg",
                                "https://example.com/slide2.jpg"
                              ]
                            }
                          }
                        ],
                        "totalResults": 1
                      },
                      "meta": {
                        "requestId": "req_01example_feed_slideshow",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "items": [],
                        "totalResults": 0
                      },
                      "meta": {
                        "requestId": "req_01example_feed_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid region or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/followers": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok profile followers",
        "description": "Get followers from a specific TikTok profile.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.followers` array with `lookupStatus: \"found\"` means the profile resolved but this page returned no followers (for example a zero-follower account).",
          "disambiguation": "Use `lookupStatus` to distinguish found, hidden, private, and not_found. Call `GET /v1/tiktok/profiles/{handle}` when you need full profile details."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle whose followers should be listed."
            },
            "required": true,
            "description": "TikTok handle whose followers should be listed.",
            "name": "handle",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Optional TikTok user id to speed up the request."
            },
            "required": false,
            "description": "Optional TikTok user id to speed up the request.",
            "name": "userId",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "Optional flag for a smaller response with fewer fields."
            },
            "required": false,
            "description": "Optional flag for a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "TikTok followers for the requested profile.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "hidden",
                            "private",
                            "not_found"
                          ],
                          "description": "Whether followers could be listed for this handle."
                        },
                        "followers": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "handle": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Public TikTok username without a leading @."
                              },
                              "displayName": {
                                "type": "string",
                                "nullable": true,
                                "description": "Display name shown on the follower profile."
                              },
                              "avatarUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Best available profile image URL when available."
                              },
                              "avatarUrls": {
                                "type": "object",
                                "properties": {
                                  "large": {
                                    "type": "string",
                                    "description": "Large avatar URL when available."
                                  },
                                  "medium": {
                                    "type": "string",
                                    "description": "Medium avatar URL when available."
                                  },
                                  "thumb": {
                                    "type": "string",
                                    "description": "Thumbnail avatar URL when available."
                                  }
                                },
                                "description": "Avatar URLs at multiple resolutions when available."
                              },
                              "platformUserId": {
                                "type": "string",
                                "description": "Numeric user id for the follower when available."
                              },
                              "secUid": {
                                "type": "string",
                                "description": "Opaque stable user identifier when available."
                              },
                              "bio": {
                                "type": "string",
                                "nullable": true,
                                "description": "Profile biography text when available."
                              },
                              "verified": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the follower as verified."
                              },
                              "privateAccount": {
                                "type": "boolean",
                                "description": "Whether the follower account is private."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "followers": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Follower count reported for this account."
                                  },
                                  "following": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Following count reported for this account."
                                  }
                                },
                                "required": [
                                  "followers",
                                  "following"
                                ],
                                "description": "Follower and following counts for this account."
                              }
                            },
                            "required": [
                              "handle",
                              "displayName",
                              "avatarUrl",
                              "bio",
                              "verified",
                              "privateAccount",
                              "metrics"
                            ],
                            "description": "A TikTok user in the requested profile's follower list."
                          },
                          "description": "Followers for the requested profile page."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more followers are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of followers is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        },
                        "totalFollowers": {
                          "type": "integer",
                          "nullable": true,
                          "minimum": 0,
                          "description": "Total follower count for the requested profile when available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "followers",
                        "page",
                        "totalFollowers"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "first_page": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "followers": [
                          {
                            "handle": "jamal.voyage",
                            "displayName": "Jamal Voyage",
                            "avatarUrl": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:300:300:q75.webp",
                            "avatarUrls": {
                              "large": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:1080:1080:q75.webp",
                              "medium": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:720:720:q75.webp",
                              "thumb": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:100:100:q75.webp"
                            },
                            "platformUserId": "7463232156317287456",
                            "secUid": "MS4wLjABAAAAUleysic3f_A1ewqwn-lVlTHezlxxDcEt7X1Py0ohks-CzQ6qjHcZIhb1gtVNL4fy",
                            "bio": "",
                            "verified": false,
                            "privateAccount": false,
                            "metrics": {
                              "followers": 0,
                              "following": 5
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1779246345",
                          "hasMore": true
                        },
                        "totalFollowers": 4691921
                      },
                      "meta": {
                        "requestId": "req_01example_followers_page_1",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "followers": [
                          {
                            "handle": "example.follower.page2",
                            "displayName": "Page Two Follower",
                            "avatarUrl": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:300:300:q75.webp",
                            "avatarUrls": {
                              "large": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:1080:1080:q75.webp",
                              "medium": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:720:720:q75.webp",
                              "thumb": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:100:100:q75.webp"
                            },
                            "platformUserId": "7463232156317287456",
                            "secUid": "MS4wLjABAAAAUleysic3f_A1ewqwn-lVlTHezlxxDcEt7X1Py0ohks-CzQ6qjHcZIhb1gtVNL4fy",
                            "bio": "",
                            "verified": false,
                            "privateAccount": false,
                            "metrics": {
                              "followers": 0,
                              "following": 5
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1779240839",
                          "hasMore": true
                        },
                        "totalFollowers": 4691922
                      },
                      "meta": {
                        "requestId": "req_01example_followers_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "followers": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalFollowers": 0
                      },
                      "meta": {
                        "requestId": "req_01example_followers_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "hidden": {
                    "value": {
                      "data": {
                        "lookupStatus": "hidden",
                        "followers": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalFollowers": null
                      },
                      "meta": {
                        "requestId": "req_01example_followers_hidden",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "private": {
                    "value": {
                      "data": {
                        "lookupStatus": "private",
                        "followers": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalFollowers": null
                      },
                      "meta": {
                        "requestId": "req_01example_followers_private",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "followers": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalFollowers": null
                      },
                      "meta": {
                        "requestId": "req_01example_followers_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "trimmed": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "followers": [
                          {
                            "handle": "jamal.voyage",
                            "displayName": "Jamal Voyage",
                            "avatarUrl": "https://p16-pu-no.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/5e1cb895c26c2444bacc407a5b3d9ce3~tplv-tiktokx-cropcenter-q:300:300:q75.webp",
                            "bio": "",
                            "verified": false,
                            "privateAccount": false,
                            "metrics": {
                              "followers": 0,
                              "following": 5
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1779246412",
                          "hasMore": true
                        },
                        "totalFollowers": 4691922
                      },
                      "meta": {
                        "requestId": "req_01example_followers_trimmed",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/following": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok profile following",
        "description": "Get accounts followed by a specific TikTok profile.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.accounts` array with `lookupStatus: \"found\"` means the profile resolved but this page returned no accounts (for example the profile follows nobody).",
          "disambiguation": "Use `lookupStatus` to distinguish found, hidden, private, and not_found. Call `GET /v1/tiktok/profiles/{handle}` when you need full profile details."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle whose following list should be listed."
            },
            "required": true,
            "description": "TikTok handle whose following list should be listed.",
            "name": "handle",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "Optional flag for a smaller response with fewer fields."
            },
            "required": false,
            "description": "Optional flag for a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Accounts followed by the requested TikTok profile.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "hidden",
                            "private",
                            "not_found"
                          ],
                          "description": "Whether following could be listed for this handle."
                        },
                        "accounts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "handle": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok username without the leading @."
                              },
                              "displayName": {
                                "type": "string",
                                "nullable": true,
                                "description": "Public display name shown on the TikTok profile."
                              },
                              "bio": {
                                "type": "string",
                                "nullable": true,
                                "description": "Profile biography text."
                              },
                              "avatarUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Best available avatar image URL for the account."
                              },
                              "profileUrl": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Canonical public TikTok profile URL."
                              },
                              "platformUserId": {
                                "type": "string",
                                "description": "TikTok numeric user id as a string, when available."
                              },
                              "secUid": {
                                "type": "string",
                                "description": "TikTok opaque stable user identifier, when available."
                              },
                              "verified": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the account as verified."
                              },
                              "privateAccount": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the account as private."
                              },
                              "region": {
                                "type": "string",
                                "description": "Region code reported by TikTok, when available."
                              },
                              "language": {
                                "type": "string",
                                "description": "Language code reported by TikTok, when available."
                              },
                              "accountCreatedAt": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Account creation time as Unix epoch seconds from TikTok, when provided."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "followers": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Follower count reported by TikTok for the account."
                                  },
                                  "following": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Following count reported by TikTok for the account."
                                  },
                                  "posts": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Public post or video count reported by TikTok for the account."
                                  }
                                },
                                "required": [
                                  "followers",
                                  "following",
                                  "posts"
                                ],
                                "description": "Aggregate metrics for the account."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this account that were not mapped into canonical fields."
                              }
                            },
                            "required": [
                              "handle",
                              "displayName",
                              "bio",
                              "avatarUrl",
                              "profileUrl",
                              "verified",
                              "metrics"
                            ],
                            "description": "TikTok account returned in a profile following list."
                          },
                          "description": "Accounts followed by the requested TikTok profile on this page."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more accounts are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of accounts is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        },
                        "totalAccounts": {
                          "type": "integer",
                          "nullable": true,
                          "minimum": 0,
                          "description": "Total following count reported by TikTok when available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "accounts",
                        "page",
                        "totalAccounts"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "first_page": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "accounts": [
                          {
                            "handle": "examplecreator",
                            "displayName": "Example Creator",
                            "bio": "Example bio",
                            "avatarUrl": "https://example.com/avatar.jpg",
                            "profileUrl": "https://www.tiktok.com/@examplecreator",
                            "platformUserId": "1234567890",
                            "verified": false,
                            "metrics": {
                              "followers": 10000,
                              "following": 200,
                              "posts": 50
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1742744536",
                          "hasMore": true
                        },
                        "totalAccounts": 95
                      },
                      "meta": {
                        "requestId": "req_01example_following_page_1",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "accounts": [
                          {
                            "handle": "page2creator",
                            "displayName": "Page Two Creator",
                            "bio": "Example bio",
                            "avatarUrl": "https://example.com/avatar.jpg",
                            "profileUrl": "https://www.tiktok.com/@page2creator",
                            "platformUserId": "1234567890",
                            "verified": false,
                            "metrics": {
                              "followers": 10000,
                              "following": 200,
                              "posts": 50
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "1694975417",
                          "hasMore": true
                        },
                        "totalAccounts": 95
                      },
                      "meta": {
                        "requestId": "req_01example_following_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "accounts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalAccounts": 0
                      },
                      "meta": {
                        "requestId": "req_01example_following_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "hidden": {
                    "value": {
                      "data": {
                        "lookupStatus": "hidden",
                        "accounts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalAccounts": null
                      },
                      "meta": {
                        "requestId": "req_01example_following_hidden",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "private": {
                    "value": {
                      "data": {
                        "lookupStatus": "private",
                        "accounts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalAccounts": null
                      },
                      "meta": {
                        "requestId": "req_01example_following_private",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "accounts": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalAccounts": null
                      },
                      "meta": {
                        "requestId": "req_01example_following_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/profiles/{handle}/showcase-products": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok profile showcase products",
        "description": "Get products featured on a creator's TikTok showcase.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.products` array can mean no showcased products, a private profile, or other cases—there is no `lookupStatus` field on this route.",
          "disambiguation": "Call `GET /v1/tiktok/profiles/{handle}` when you need explicit profile lookup status before interpreting an empty showcase list."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128,
              "description": "TikTok handle whose profile showcase products should be listed."
            },
            "required": true,
            "description": "TikTok handle whose profile showcase products should be listed.",
            "name": "handle",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "description": "Optional ISO 3166-1 country code for the request."
            },
            "required": false,
            "description": "Optional ISO 3166-1 country code for the request.",
            "name": "region",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Showcase products for the requested TikTok profile.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "products": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Product identifier."
                              },
                              "title": {
                                "type": "string",
                                "nullable": true,
                                "description": "Product title shown on TikTok Shop."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Canonical TikTok Shop URL for the product."
                              },
                              "image": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "url": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Primary image URL for the product."
                                  },
                                  "urls": {
                                    "type": "array",
                                    "items": {
                                      "type": "string"
                                    },
                                    "description": "Image URLs for the product in preference order."
                                  },
                                  "width": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image width in pixels when available."
                                  },
                                  "height": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image height in pixels when available."
                                  }
                                },
                                "required": [
                                  "url",
                                  "urls",
                                  "width",
                                  "height"
                                ],
                                "description": "Primary image metadata."
                              },
                              "price": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "currencyCode": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency code for displayed prices."
                                  },
                                  "currencySymbol": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency symbol for displayed prices."
                                  },
                                  "salePrice": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Current sale price as a decimal string."
                                  },
                                  "originalPrice": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Original price before discounts as a decimal string."
                                  },
                                  "discountPercent": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Discount amount as shown by TikTok (often a percentage string)."
                                  }
                                },
                                "required": [
                                  "currencyCode",
                                  "currencySymbol",
                                  "salePrice",
                                  "originalPrice",
                                  "discountPercent"
                                ],
                                "description": "Price details when TikTok provides them."
                              },
                              "rating": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "score": {
                                    "type": "number",
                                    "nullable": true,
                                    "description": "Average rating score when TikTok reports one."
                                  },
                                  "reviewCount": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Review count reported by TikTok."
                                  }
                                },
                                "required": [
                                  "score",
                                  "reviewCount"
                                ],
                                "description": "Rating summary when TikTok provides it."
                              },
                              "sales": {
                                "type": "object",
                                "properties": {
                                  "soldCount": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Sold units reported by TikTok."
                                  }
                                },
                                "required": [
                                  "soldCount"
                                ],
                                "description": "Sales counts reported by TikTok."
                              },
                              "seller": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Seller identifier."
                                  }
                                },
                                "required": [
                                  "id"
                                ],
                                "description": "Seller metadata when TikTok provides it."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this product that were not mapped into canonical fields."
                              }
                            },
                            "required": [
                              "id",
                              "title",
                              "url",
                              "image",
                              "price",
                              "rating",
                              "sales",
                              "seller"
                            ],
                            "description": "A TikTok Shop product shown on a profile showcase."
                          },
                          "description": "Products shown on the TikTok profile showcase for this page. An empty array can mean no showcased products, a private account, or other cases—call the TikTok profile endpoint first when you need explicit account status."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more products are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of products is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "products",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "first_page": {
                    "value": {
                      "data": {
                        "products": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_66b6cca2-7d33-4c26-ad86-7699695f1e44",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "products": [
                          {
                            "id": "1731414247972311160",
                            "title": "Example page-two product",
                            "url": "https://www.tiktok.com/shop/pdp/1731414247972311160",
                            "image": {
                              "url": "https://example.com/page2-cover.webp",
                              "urls": [
                                "https://example.com/page2-cover.webp"
                              ],
                              "width": 500,
                              "height": 500
                            },
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "salePrice": "9.9",
                              "originalPrice": "19",
                              "discountPercent": "48%"
                            },
                            "rating": {
                              "score": 4.5,
                              "reviewCount": 3507
                            },
                            "sales": {
                              "soldCount": 49056
                            },
                            "seller": {
                              "id": "7496252928214665336"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJwcm9kdWN0SWRzIjpbIjI5In0",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "products": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/users/search": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Search TikTok users",
        "description": "Search TikTok users by keyword.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "Search query text for TikTok users."
            },
            "required": true,
            "description": "Search query text for TikTok users.",
            "name": "query",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Opaque pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "User search results for the requested query.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "users": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "platform": {
                                "type": "string",
                                "enum": [
                                  "tiktok"
                                ],
                                "description": "Social platform for this user."
                              },
                              "handle": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok username without the leading @."
                              },
                              "displayName": {
                                "type": "string",
                                "nullable": true,
                                "description": "Public display name shown for the user, when available."
                              },
                              "bio": {
                                "type": "string",
                                "nullable": true,
                                "description": "Profile biography text, when available."
                              },
                              "avatarUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Profile image URL for the user, when available."
                              },
                              "verified": {
                                "type": "boolean",
                                "description": "Whether the user is marked as verified."
                              },
                              "profileUrl": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Canonical public TikTok profile URL."
                              },
                              "privateAccount": {
                                "type": "boolean",
                                "description": "Whether the account is private, when reported."
                              },
                              "platformUserId": {
                                "type": "string",
                                "description": "TikTok user id as a string when available."
                              },
                              "secUid": {
                                "type": "string",
                                "description": "TikTok stable user identifier for advanced integrations, when available."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "followers": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Follower count when available."
                                  },
                                  "following": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Following count when available."
                                  },
                                  "likes": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Total profile likes when available."
                                  },
                                  "posts": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Public post count when available."
                                  }
                                },
                                "required": [
                                  "followers",
                                  "following",
                                  "likes",
                                  "posts"
                                ],
                                "description": "Public profile metrics returned with this search result."
                              }
                            },
                            "required": [
                              "platform",
                              "handle",
                              "displayName",
                              "bio",
                              "avatarUrl",
                              "verified",
                              "profileUrl",
                              "metrics"
                            ],
                            "description": "A summarized TikTok user search result."
                          },
                          "description": "Users returned for the search query."
                        },
                        "totalUsers": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of users returned in this response."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when another page is available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of users is likely available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "query",
                        "users",
                        "totalUsers",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "results": {
                    "value": {
                      "data": {
                        "query": "taylor",
                        "users": [
                          {
                            "platform": "tiktok",
                            "handle": "t.a.y.l.o.r214",
                            "displayName": "t a y l o r",
                            "bio": "t a y l o r",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/f04f92fffd8b6b16f0132fc6b6d57815~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=043a4ab1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=GnynQ4QGGd9QnKCP%2B%2F2VCAV%2F6Tg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@t.a.y.l.o.r214",
                            "privateAccount": false,
                            "platformUserId": "7509587616057984030",
                            "secUid": "MS4wLjABAAAACD2XdDxJiUNdap1dTsJS44Jfmir7E2zzz6l4cKl5EC4GTXgAydTFLZNWPuAjNfOt",
                            "metrics": {
                              "followers": 1011,
                              "following": 385,
                              "likes": 23190,
                              "posts": 2
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tay_tay_spam..pt2",
                            "displayName": "taylor🩵",
                            "bio": "taylor🩵",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/3c2215161f9f21768386cb83351dd304~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=0b5b7aa2&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=20I2zCWDM2dLl0Uh4ZzgZr%2BHchY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tay_tay_spam..pt2",
                            "privateAccount": false,
                            "platformUserId": "7134520732457042986",
                            "secUid": "MS4wLjABAAAAy7YzCdKntdgPr_YN8q7_Qkd9Tq621Bh7T6B1c7uBC-NT-uJ-uldIiU9hM42i0nX9",
                            "metrics": {
                              "followers": 907,
                              "following": 278,
                              "likes": 20771,
                              "posts": 254
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taygrimesss",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6824237bb82744783dc08bde11169ff2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=da0f5449&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=W8EvapsGRCeNPrZPGMup4q7riFA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taygrimesss",
                            "privateAccount": false,
                            "platformUserId": "6693888833174340613",
                            "secUid": "MS4wLjABAAAAtg8hlx9vJS8V-bW0W2Oya2QxPvfWfAahQO9ew0_UPSOWE3bVXAQqAKzhjQIJPASl",
                            "metrics": {
                              "followers": 116539,
                              "following": 115,
                              "likes": 1173585,
                              "posts": 3
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorr.r1",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/b8717fbddd99c3941b918410525e35ab~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=66bf94d6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=sIIHdqHzz5aJ1WkieX%2BuH7QCD4E%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorr.r1",
                            "privateAccount": false,
                            "platformUserId": "6884311149308986374",
                            "secUid": "MS4wLjABAAAAmZjeyZT921cKex7QZpDP-TSsuPMbEQsnrYzE_D3qqOQcQvbe4IoPlOej3uZz-TI-",
                            "metrics": {
                              "followers": 94465,
                              "following": 74,
                              "likes": 5879995,
                              "posts": 114
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorxxbanks",
                            "displayName": "Taylor Banks",
                            "bio": "Taylor Banks",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/fbe7c18350e0ad0bd3f87f0fa1436021~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=1957b2d9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=efDPLUCzbaJH%2FPECJut7qYzqRIQ%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorxxbanks",
                            "privateAccount": false,
                            "platformUserId": "7230201806583481345",
                            "secUid": "MS4wLjABAAAANm2f6ac61OvAKQFEhI4DoC0G9nALXKgipI_NV2Pc0x_j9dBcwkoY2juLwErcmVAT",
                            "metrics": {
                              "followers": 1140174,
                              "following": 354,
                              "likes": 11635636,
                              "posts": 366
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.w.8",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/6c6bf5ea83579d4843df73c285258021~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=6a4a6df7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HEtXnky%2Fjfcr5M7nggaExinv40A%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.w.8",
                            "privateAccount": false,
                            "platformUserId": "6983698242857632773",
                            "secUid": "MS4wLjABAAAA3qdlRbkN8gezdJc1kPfdxW9XRlMi-AwuYr1yLl_4zqLCyY23UpoAEuoPpNE7_eHc",
                            "metrics": {
                              "followers": 94703,
                              "following": 44,
                              "likes": 488948,
                              "posts": 15
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": ".ttaylorr0",
                            "displayName": "t",
                            "bio": "t",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e463b4a2ca84a8fd52183a4d6b0b7339~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=229e8473&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Qd%2BeCQZ7GyGnu9BeuVGh8zHkzjg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@.ttaylorr0",
                            "privateAccount": false,
                            "platformUserId": "6694826248047084550",
                            "secUid": "MS4wLjABAAAA5ICepLMLTZqYxT9P4x3M-JWxOv2U4m_-usxHF3Q9hIb9FBA25_-dxOUxmo8l5jty",
                            "metrics": {
                              "followers": 383,
                              "following": 225,
                              "likes": 1344,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorladyga",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/51707256ba23fb075b89240319d9e6c8~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=fe1b4f3f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=8orMMZAWm1AfaP%2FLLskJhguLFyM%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorladyga",
                            "privateAccount": false,
                            "platformUserId": "6682083485458760710",
                            "secUid": "MS4wLjABAAAACja4NweVICa3VsX1v6JUsERoIbSlNNh5BnRImoVatQH3tmXAi2sEpHLI4CAEPcd3",
                            "metrics": {
                              "followers": 175154,
                              "following": 114,
                              "likes": 6237106,
                              "posts": 154
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayy.viic",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/279637d6ee22c667e79ec986b7aa12ea~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=56d974e6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=eW3n7K0uqxz3IucmljzLeVpLzb0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayy.viic",
                            "privateAccount": false,
                            "platformUserId": "6606680799994576901",
                            "secUid": "MS4wLjABAAAAwZvFuDmUtFayhHuOwePT_xnngsISur0Xb-nQNkze0M4Mn5_GKX_vh-sBWrCp5dMM",
                            "metrics": {
                              "followers": 413287,
                              "following": 510,
                              "likes": 12510288,
                              "posts": 861
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "housewifeswag",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4103c915de93439f6673163d0f915516~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=50de0a52&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Ccp9SieH0kMJBPBPoi5teBQ7s3Y%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@housewifeswag",
                            "privateAccount": false,
                            "platformUserId": "6764192066961671174",
                            "secUid": "MS4wLjABAAAA4OALINhvwrw3j9s7wxtcHf1ZrfxkT97S6Kf717yIuEnq8fuGsF0PFCNzKWLMPSSx",
                            "metrics": {
                              "followers": 120060,
                              "following": 1301,
                              "likes": 455939,
                              "posts": 151
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "thexrealtaylor",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/6e091537f3f725fb4c4a6020f6145e02~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=b621530c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=7a4OjCWRe5BbqnSBTiBJNl8xXbI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@thexrealtaylor",
                            "privateAccount": false,
                            "platformUserId": "6942262690883830789",
                            "secUid": "MS4wLjABAAAAd2q7yepZy-3deXUy7AiNagG07pVEiTN-G6aFh0M9LPIiTiMAjd5sd_-fsqF8LTRK",
                            "metrics": {
                              "followers": 720772,
                              "following": 14,
                              "likes": 8683625,
                              "posts": 331
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayyrc",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4cb2577c8e78a5aaddf614e391093d6b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=06a86286&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=U1GUW2Gqa%2FzTGgwdNT6d%2FMHdBtI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayyrc",
                            "privateAccount": false,
                            "platformUserId": "6648701836395479045",
                            "secUid": "MS4wLjABAAAAWDhNsj7G6Hhq8w4URkMA1jVWNo9nwPfBBV-y1T2pOwQFFlKEgwoyDOWn30W6dFKX",
                            "metrics": {
                              "followers": 80043,
                              "following": 446,
                              "likes": 294616,
                              "posts": 113
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taytay_love17",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/1870f2adc1e1d484fcef3dd8f4d8fc8f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=0eaeaccf&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=MLcZhKZNJ6lyLSd15yb%2FoUSzcNA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taytay_love17",
                            "privateAccount": false,
                            "platformUserId": "6627316323318906885",
                            "secUid": "MS4wLjABAAAAGGUc_-OR5IhLkmOfNax6Mhx7Wxz_5giQ3b0He_aYsMLh1Qy6GqDvIL67qX1fGHVe",
                            "metrics": {
                              "followers": 115790,
                              "following": 1015,
                              "likes": 1261114,
                              "posts": 92
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorpoole.96",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4342b124c66542b1b5dba1f60a2a2bb2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=3f8870ee&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=pQgp7GJMp%2FzArQ22jtJ9EdxRXfk%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorpoole.96",
                            "privateAccount": false,
                            "platformUserId": "6701004571622671365",
                            "secUid": "MS4wLjABAAAAAl0u0siID9O-OkgCb34t_688jp1TZd_UHFITPO5W5YKhFRD7eS0H6XNVvvWOfFkL",
                            "metrics": {
                              "followers": 316879,
                              "following": 231,
                              "likes": 10294911,
                              "posts": 757
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayylorhill",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6d9a5ae5deb0db7031b374d77e8e6329~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=2cb12016&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=UKL%2B%2BCWEHTgxF1o9lhE7M3TlR5c%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayylorhill",
                            "privateAccount": false,
                            "platformUserId": "6692101997985154053",
                            "secUid": "MS4wLjABAAAA4qN5iGpXM5lNiHy3VRbl_pSfPH65c_gRqzKjT_3eAQ9pjliR6j0e1oUjkmSJVpon",
                            "metrics": {
                              "followers": 209676,
                              "following": 136,
                              "likes": 3331161,
                              "posts": 18
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorllynne",
                            "displayName": "taylor!",
                            "bio": "taylor!",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c0c29211af175d0fe4e81cdba7158cd7~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=83e464f0&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ziVuhGR7HHjdqwIdncdSHsWS4Vc%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorllynne",
                            "privateAccount": false,
                            "platformUserId": "1472813",
                            "secUid": "MS4wLjABAAAAnZrS-FBvIzz3F7tQPARcjPkczE16OvpiR9nMLrz_lQM",
                            "metrics": {
                              "followers": 98533,
                              "following": 1112,
                              "likes": 4218207,
                              "posts": 180
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorrloll",
                            "displayName": "taylor💕",
                            "bio": "taylor💕",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/012fe1499579b0c274fa3abbae106f35~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=095ecbe4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=B57d990jm3gMMsE%2BWzm2f%2FiU5Fo%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorrloll",
                            "privateAccount": false,
                            "platformUserId": "6644749922209120262",
                            "secUid": "MS4wLjABAAAA3IOFAk-fhHWJqeF2x9hP5Yo4-r-SCyYrhvicjHaMc3yojtRbcrjwVhQ-lzWkia3u",
                            "metrics": {
                              "followers": 319,
                              "following": 99,
                              "likes": 12278,
                              "posts": 4
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.madison25",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8b895da2c3b69b0f8777bb067fc0cc2a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=bbb8ee9e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=5AtuwPYkc%2B1ulbZ63Hea0kasWAo%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.madison25",
                            "privateAccount": false,
                            "platformUserId": "6582237037020725253",
                            "secUid": "MS4wLjABAAAAbz7_ROXR79IJYDX9R_of9ALGyJ1DV0Cvr3q3nfn28yyMEnJ2ZTxWiFlkYzwB4_4v",
                            "metrics": {
                              "followers": 694716,
                              "following": 1640,
                              "likes": 22018579,
                              "posts": 133
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor44498",
                            "displayName": "Taylor🩵",
                            "bio": "Taylor🩵",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8b20e45d8b5f6ad735ee9678f925c5c6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=7b6ca0c4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=mfSMg1nzFi161iXzQjJOeupp684%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor44498",
                            "privateAccount": false,
                            "platformUserId": "7311105990366643242",
                            "secUid": "MS4wLjABAAAAIu5WsVGXcTYbHgyBlBMIJacACeI7vZ21e02ZeD5OtrF4L2GnonvsmDewnjIzzu_I",
                            "metrics": {
                              "followers": 1206,
                              "following": 517,
                              "likes": 32484,
                              "posts": 176
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayloprsuq6",
                            "displayName": "Taylor 💕",
                            "bio": "Taylor 💕",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=4c8af4f9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=LxZGhzUvqJ7CMXrYpGclm05Ua4U%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayloprsuq6",
                            "privateAccount": false,
                            "platformUserId": "7595959687460193335",
                            "secUid": "MS4wLjABAAAABArnPA58ZN-e7PXg_bYQYqOBkmlX2BAbOJRXrzHqSGQuuS0JGR2snDXF6xMjiEQ-",
                            "metrics": {
                              "followers": 39,
                              "following": 25,
                              "likes": 0,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tay.taylor031",
                            "displayName": "tay.taylor031",
                            "bio": "tay.taylor031",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2589f90349b498e8f8e2fb46150ed864~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=a0d9464e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=22rFKlGZjixyevBpP2vPEb9dF7c%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tay.taylor031",
                            "privateAccount": false,
                            "platformUserId": "7446830288485237802",
                            "secUid": "MS4wLjABAAAAvDvzQ5sH2nVkCS2ukzHtPVSiB7bHlR6yW4lys9QyGmZeugNCeKt_4tgC0oR_JwQ0",
                            "metrics": {
                              "followers": 5544,
                              "following": 30,
                              "likes": 48551,
                              "posts": 106
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "ugc.taylor",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c258afa2024412e2f8a437ba607a5764~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=8f48f2b7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=zo5rqwphFCrgVy7ci46gqjO%2FFyM%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@ugc.taylor",
                            "privateAccount": false,
                            "platformUserId": "7301562089041839146",
                            "secUid": "MS4wLjABAAAAu9xPCZ_MMwGebP3AC8c-iJwds5xBlz0sOHz7_1sPA7TQV2hJvmbCeXL8wgNpd9ng",
                            "metrics": {
                              "followers": 121680,
                              "following": 82,
                              "likes": 1629893,
                              "posts": 164
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.505",
                            "displayName": "taylor.505",
                            "bio": "taylor.505",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/2007b2427af0be65fbbef237f337732b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=6405d735&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=kI642O1ve615W3ITDfMvEwqyPLU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.505",
                            "privateAccount": false,
                            "platformUserId": "7605304793633047559",
                            "secUid": "MS4wLjABAAAAOGHVMpwSpFHMsvHZb4lpkwkIrp329-p5CWWLmUidoasVyhosE6qWghUvDyKARx3T",
                            "metrics": {
                              "followers": 993,
                              "following": 767,
                              "likes": 19564,
                              "posts": 250
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor..222",
                            "displayName": "taylor",
                            "bio": "Instagram: tay.lor_512",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/44c0723c6d1b0791cb645b4c7bada945~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=ca3f24c7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=7nyAYeQBqhumRnObSOKpFHgKhxU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor..222",
                            "privateAccount": false,
                            "platformUserId": "220826586281979904",
                            "secUid": "MS4wLjABAAAAnibD8R2TzHyUf326L8a3zB_o1YIWkU02wiUuHQzhPQ0HUnBmU_VBw7qvVs4E_zTv",
                            "metrics": {
                              "followers": 2916,
                              "following": 2988,
                              "likes": 4503,
                              "posts": 4
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taayyylorrr._",
                            "displayName": "taylor ☆",
                            "bio": "taylor ☆",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6fea94d53888d0fa7a42d1c220ed249b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=c9c1f2f3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cPuYr7Nev5PRJQdZkRG7siW5sM0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taayyylorrr._",
                            "privateAccount": false,
                            "platformUserId": "6805595470682752006",
                            "secUid": "MS4wLjABAAAAIVMkVzvSZt0aVyKa--2j3PGrF21B2ynyMjie1eOIP7Nvl2gbb9F-7uEBFd4wPXps",
                            "metrics": {
                              "followers": 2913,
                              "following": 78,
                              "likes": 17149,
                              "posts": 12
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "t4ylor.1",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/6e10e849bcb4afb13084d4c10b2fb352~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=4965db64&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4DVewoKPEUo1roE00ySGs2tAQ4o%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@t4ylor.1",
                            "privateAccount": false,
                            "platformUserId": "7014083833852544006",
                            "secUid": "MS4wLjABAAAA1REeBtQi7qPXPP8dpUBwzdatnYHYbnAzWmr7ISzkof_jZYKVIo4l3Qg64DeuOWU0",
                            "metrics": {
                              "followers": 122770,
                              "following": 36,
                              "likes": 769736,
                              "posts": 6
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayloralmond.x",
                            "displayName": "Taylor🌟",
                            "bio": "Taylor🌟",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/dcddaf167aa696b024be5c47b6d5c1a9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=280e7718&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=RKpOvOSaYWMbzp8kXLmJt6egnVY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayloralmond.x",
                            "privateAccount": false,
                            "platformUserId": "6580213740917145605",
                            "secUid": "MS4wLjABAAAAFF1hneNIDOZNbH4gudFIUdxo0E6bRli8ZzBuxyFwqjbaUSAw1ExMYvpMsnn8Bp9X",
                            "metrics": {
                              "followers": 141523,
                              "following": 2653,
                              "likes": 5073561,
                              "posts": 44
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor._.805",
                            "displayName": "taylor._.805",
                            "bio": "taylor._.805",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4350270a10ebb44f9527b456871195bb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=3f65ae7a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=2ruS%2BJEPFnWbJlsRUx58iR0jHkI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor._.805",
                            "privateAccount": false,
                            "platformUserId": "7481306039574430762",
                            "secUid": "MS4wLjABAAAAV357zINVpvtmkhpxWkYXrEbnT44VPh4aJ4LLTPNpSvYBC8V6PM4PO1B7A8wRYf63",
                            "metrics": {
                              "followers": 6,
                              "following": 11,
                              "likes": 0,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor24rd",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/667421fd29bd97528229fe683dec00d5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=66f1ac4e&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=5z1yjD1uY3DO%2FfSV1VQw2yTXMWA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor24rd",
                            "privateAccount": false,
                            "platformUserId": "7187012339828409350",
                            "secUid": "MS4wLjABAAAA3Hanyg0yJk6Sa-1tKuaW74U8Dy5SuQ2nS4mFfc3Mt1iF8tE3RWoabLqPZapCM7Ca",
                            "metrics": {
                              "followers": 432408,
                              "following": 350,
                              "likes": 2648992,
                              "posts": 1016
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorfrankiepaul",
                            "displayName": "Taylor Paul",
                            "bio": "Taylor Paul",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/eec6d4106a85e142dc6e03e8a0224996~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=5609efac&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=vt0r5zALAqcg1sEZWKihsUMxeLw%3D",
                            "verified": true,
                            "profileUrl": "https://www.tiktok.com/@taylorfrankiepaul",
                            "privateAccount": false,
                            "platformUserId": "6748438126324450310",
                            "secUid": "MS4wLjABAAAAcSckhRsmM__0FMxk8U-4gLZbDaEy3Tb15bjvjSltog-P0ySxkdwQDzqCaoQeUg2p",
                            "metrics": {
                              "followers": 6209012,
                              "following": 1227,
                              "likes": 269566053,
                              "posts": 1440
                            }
                          }
                        ],
                        "totalUsers": 30,
                        "page": {
                          "nextCursor": "30",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "query": "taylor",
                        "users": [
                          {
                            "platform": "tiktok",
                            "handle": "taylorr.mjohnson",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/d29e9fbe227a2a2f66c6fb3808f31e4c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cecf2601&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=p6N%2BhNIiVdx3V4scHTclmEAz5Po%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorr.mjohnson",
                            "privateAccount": false,
                            "platformUserId": "6781280543125668869",
                            "secUid": "MS4wLjABAAAAKHDEHbjxCTFLMTKWt59bMEgmT3L-vQ7oygAZxKAmYpw6F7FFXTvTI_uLsLyvOjF2",
                            "metrics": {
                              "followers": 95915,
                              "following": 3042,
                              "likes": 88911,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorrloll",
                            "displayName": "taylor💕",
                            "bio": "taylor💕",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/012fe1499579b0c274fa3abbae106f35~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=45286ce5&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=mHnHJgk0tqbXSRV9p%2B5dDPdDkjI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorrloll",
                            "privateAccount": false,
                            "platformUserId": "6644749922209120262",
                            "secUid": "MS4wLjABAAAA3IOFAk-fhHWJqeF2x9hP5Yo4-r-SCyYrhvicjHaMc3yojtRbcrjwVhQ-lzWkia3u",
                            "metrics": {
                              "followers": 319,
                              "following": 99,
                              "likes": 12278,
                              "posts": 4
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tay.quin17",
                            "displayName": "Taylor💕",
                            "bio": "Taylor💕",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/d3328a7088857a7cbefe0ff07998dae0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c29aff76&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=k6KxP6jTCUpk8K8P%2FKLDgON6VZY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tay.quin17",
                            "privateAccount": true,
                            "platformUserId": "7088856834406482990",
                            "secUid": "MS4wLjABAAAAGt1L-PUkJY4ZFdXaRLVNYnaEnZgNxL4KRy8aladf9dLp9D359vH4BGq0Qds5lTBD",
                            "metrics": {
                              "followers": 756,
                              "following": 5850,
                              "likes": 37157,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tay.taylor031",
                            "displayName": "tay.taylor031",
                            "bio": "tay.taylor031",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2589f90349b498e8f8e2fb46150ed864~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1acb3880&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=vaDuRma1rG1U8nIZ9gjKyR5duqs%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tay.taylor031",
                            "privateAccount": false,
                            "platformUserId": "7446830288485237802",
                            "secUid": "MS4wLjABAAAAvDvzQ5sH2nVkCS2ukzHtPVSiB7bHlR6yW4lys9QyGmZeugNCeKt_4tgC0oR_JwQ0",
                            "metrics": {
                              "followers": 5539,
                              "following": 30,
                              "likes": 48553,
                              "posts": 106
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "teyanataylor90",
                            "displayName": "💕",
                            "bio": "💕",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e850b8cb5e4bfcf5ed0f69bcf10d8949~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=88886d37&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=E0rxIUD9N%2BObV8jjcnos96oGtqw%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@teyanataylor90",
                            "privateAccount": false,
                            "platformUserId": "7059766617250858031",
                            "secUid": "MS4wLjABAAAAstNGGnuAzi_ij7wraBwu1gDX2HFOgp2sQ4T5_iMDykLLTvNCJzxoLGGJgkLmMJQn",
                            "metrics": {
                              "followers": 1106498,
                              "following": 57,
                              "likes": 26920162,
                              "posts": 135
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor._.805",
                            "displayName": "taylor._.805",
                            "bio": "taylor._.805",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4350270a10ebb44f9527b456871195bb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=3f65ae7a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=2ruS%2BJEPFnWbJlsRUx58iR0jHkI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor._.805",
                            "privateAccount": false,
                            "platformUserId": "7481306039574430762",
                            "secUid": "MS4wLjABAAAAV357zINVpvtmkhpxWkYXrEbnT44VPh4aJ4LLTPNpSvYBC8V6PM4PO1B7A8wRYf63",
                            "metrics": {
                              "followers": 6,
                              "following": 11,
                              "likes": 0,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorgrace4211",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/dd40efb4c05e61b8730f69564b19adfd~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ee51a08b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=t7KnqurnsZA7eqBJR4gLgPUlXqQ%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorgrace4211",
                            "privateAccount": false,
                            "platformUserId": "94313109934194688",
                            "secUid": "MS4wLjABAAAAK6a5MIhmtW7BMvjnwJt_lQggOS0ftV3bp3WESsUe41cv8AJOshLYOFwWtokGQPq_",
                            "metrics": {
                              "followers": 122727,
                              "following": 3,
                              "likes": 5418519,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor..222",
                            "displayName": "taylor",
                            "bio": "Instagram: tay.lor_512",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/44c0723c6d1b0791cb645b4c7bada945~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8c09323c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Q%2BBKdMItjn%2BriNZTKzmGhHer25g%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor..222",
                            "privateAccount": false,
                            "platformUserId": "220826586281979904",
                            "secUid": "MS4wLjABAAAAnibD8R2TzHyUf326L8a3zB_o1YIWkU02wiUuHQzhPQ0HUnBmU_VBw7qvVs4E_zTv",
                            "metrics": {
                              "followers": 2916,
                              "following": 2988,
                              "likes": 4503,
                              "posts": 4
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taayyylorrr._",
                            "displayName": "taylor ☆",
                            "bio": "taylor ☆",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6fea94d53888d0fa7a42d1c220ed249b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c9c1f2f3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cPuYr7Nev5PRJQdZkRG7siW5sM0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taayyylorrr._",
                            "privateAccount": false,
                            "platformUserId": "6805595470682752006",
                            "secUid": "MS4wLjABAAAAIVMkVzvSZt0aVyKa--2j3PGrF21B2ynyMjie1eOIP7Nvl2gbb9F-7uEBFd4wPXps",
                            "metrics": {
                              "followers": 2913,
                              "following": 78,
                              "likes": 17149,
                              "posts": 12
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "fuck_cheaters101",
                            "displayName": "Taylor😽🤍",
                            "bio": "Taylor😽🤍",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/5715a227c7fbccd52aa9b86a63b3335c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=5f529e98&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=SC8czdOXqOiOCL2BRUkDsAbtfAI%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@fuck_cheaters101",
                            "privateAccount": false,
                            "platformUserId": "6935669539687367686",
                            "secUid": "MS4wLjABAAAAQV_3-v0SHayo8POFMmEYxjwACPJ-jPv-vY0NKZWSH_C-PQ4MuhC7kKx-sQlxfUCu",
                            "metrics": {
                              "followers": 126,
                              "following": 59,
                              "likes": 3218,
                              "posts": 14
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.taylorr",
                            "displayName": "Tay",
                            "bio": "Tay",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/9e03fb5284e72529d3c528d41b988a4d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cf7703e6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=OVvlUhKDXCyFz5aFHBVrojYAe%2Bs%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.taylorr",
                            "privateAccount": false,
                            "platformUserId": "6648955071025528838",
                            "secUid": "MS4wLjABAAAAI62DdAMVTCNGNMN380izA3L8GeN0c3_MLfynCEbquoMNPPuRd5Kb4h7AyYW-2eRj",
                            "metrics": {
                              "followers": 2764,
                              "following": 618,
                              "likes": 9963,
                              "posts": 42
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor_20032",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/ff14cd688108747485ed7f8cfc9d382f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e545b210&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Cm6BWZNJg%2B0JSg4AzbG3CyxNfpg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor_20032",
                            "privateAccount": false,
                            "platformUserId": "6808535145642935302",
                            "secUid": "MS4wLjABAAAAL34uTDFe9FbI79k8CN9kQwq4hpntcn-RY7AY6TsrwbT3JQQG0rfW0_tDo6D0LZge",
                            "metrics": {
                              "followers": 399,
                              "following": 185,
                              "likes": 2246,
                              "posts": 2
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor_nuttall",
                            "displayName": "𝓣𝓐𝓨𝓛𝓞𝓡",
                            "bio": "𝓣𝓐𝓨𝓛𝓞𝓡",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/f9573e565443262633713a5772dc7836~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=24562cb4&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=8nMPsmAbjwoQCG1xbggISaqdjg8%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor_nuttall",
                            "privateAccount": false,
                            "platformUserId": "7536431548372059154",
                            "secUid": "MS4wLjABAAAAKnLq0i-PaQUXCYgA7tcVyzmS1au-TQWqSmkVkKRiXlMcoBOOqtPpAq1K3xuq7-Hs",
                            "metrics": {
                              "followers": 516,
                              "following": 464,
                              "likes": 2008,
                              "posts": 1
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor__pubgm",
                            "displayName": "𝙏𝘼𝙔𝙇𝙊𝙍",
                            "bio": "𝙏𝘼𝙔𝙇𝙊𝙍",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/78782a8199d71ab833667913241a407b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=818a4196&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4po8R7%2F%2FbGDAPrOH3yFIylEkjGo%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor__pubgm",
                            "privateAccount": false,
                            "platformUserId": "7273924693932622854",
                            "secUid": "MS4wLjABAAAAtyg9Ep3JS5Xt4sJxOYxMX-wtU8QxsdbTA60jLCaK54Z0UtCXESoH_U9ZhWI7BrJ-",
                            "metrics": {
                              "followers": 568,
                              "following": 81,
                              "likes": 3898,
                              "posts": 14
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylortaylortaylor_",
                            "displayName": "Taylor Richardson",
                            "bio": "Taylor Richardson",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/a3f876a25a29b1a3d09b72f93d2c48f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=00444423&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=oPOEa0o0crXN8bhXV5RuYdAeSik%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylortaylortaylor_",
                            "privateAccount": false,
                            "platformUserId": "6813224627788874758",
                            "secUid": "MS4wLjABAAAALXcWSmiHCUiHCuZOZ26cTmhX02yQKC34h2avr7DaLkpwaqCPiTO7Bk6H3SdaA5V9",
                            "metrics": {
                              "followers": 300,
                              "following": 9998,
                              "likes": 131,
                              "posts": 1
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "emanuelcabral18",
                            "displayName": "TäylÖr 265🥷🏻",
                            "bio": "TäylÖr 265🥷🏻",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/e1cf88e6cabc1d7cd5d069d26fdc3499~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c812e0ab&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=9hNZeiUxNR1G9WJmnR32vw7cYZ8%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@emanuelcabral18",
                            "privateAccount": false,
                            "platformUserId": "7051351234797011973",
                            "secUid": "MS4wLjABAAAA49yjABZDOC_MUdLbBHRHJY2_ekNCBJz27ALZmRf7OIEK9ZU5d1qgzN7J7i3vuW5C",
                            "metrics": {
                              "followers": 5890,
                              "following": 4972,
                              "likes": 11681,
                              "posts": 97
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorhernandez00",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/21942322a5d2d1017df2d477f3e49e60~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=bd788302&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=eu0BVcNWRPbMS7lhkjtw1I%2BI%2BvA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorhernandez00",
                            "privateAccount": false,
                            "platformUserId": "6758287338063610885",
                            "secUid": "MS4wLjABAAAATHtYkuhEaPx3ufXE6a2mvqFVwn5E9fAGznv1s1LmO4obnDWIwGgcrlnIxgLnNgLN",
                            "metrics": {
                              "followers": 1739,
                              "following": 194,
                              "likes": 7808,
                              "posts": 42
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.spam08",
                            "displayName": "Taylor spam",
                            "bio": "Taylor spam",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/18b46072435fc99c7c46b9101bec4695~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=756866d1&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=g5LHD%2FXRo914QM2qyeu12l7USSs%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.spam08",
                            "privateAccount": false,
                            "platformUserId": "7421952052300923950",
                            "secUid": "MS4wLjABAAAAlxbGGFRnn6gdAIyxosqe-gW3ceURsWRLu3NRuVF1GSXoUalMoMJESB89NWG4sfT9",
                            "metrics": {
                              "followers": 107,
                              "following": 181,
                              "likes": 1727,
                              "posts": 33
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xo._taylorrrr",
                            "displayName": "Taylor Blanco",
                            "bio": "Taylor Blanco",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/87653157c57f6b6dd2f25fc03ef95954~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1fdb5d4f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=fx%2F8wpUNjxEBqS0gRhvGC4PSo8A%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xo._taylorrrr",
                            "privateAccount": false,
                            "platformUserId": "7566293348622664718",
                            "secUid": "MS4wLjABAAAAqClYN3E8VJs7Fnr3wAsHs4VoWln3maQ2Ke6R3tnnC-Cva_zPiLsMbZBzuLJTAD-e",
                            "metrics": {
                              "followers": 513,
                              "following": 269,
                              "likes": 1658,
                              "posts": 8
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayylor.ugc",
                            "displayName": "Tayylor",
                            "bio": "Tayylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/78eb3c8ac61ce4a6a3f14bed54a970cc~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=8d18e9fc&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=A5jE%2BvMrUBPZ%2FvC%2BQYBP7JGBgZg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayylor.ugc",
                            "privateAccount": false,
                            "platformUserId": "7311249821284828203",
                            "secUid": "MS4wLjABAAAARifpNAbmPGCjggs_2ZtAK-42CzubKbIvCHCXYlWFzoDFFoXq8_q_JtjBNflcb2kq",
                            "metrics": {
                              "followers": 8817,
                              "following": 3577,
                              "likes": 2839,
                              "posts": 19
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "housewifeswag",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4103c915de93439f6673163d0f915516~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=50de0a52&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Ccp9SieH0kMJBPBPoi5teBQ7s3Y%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@housewifeswag",
                            "privateAccount": false,
                            "platformUserId": "6764192066961671174",
                            "secUid": "MS4wLjABAAAA4OALINhvwrw3j9s7wxtcHf1ZrfxkT97S6Kf717yIuEnq8fuGsF0PFCNzKWLMPSSx",
                            "metrics": {
                              "followers": 120061,
                              "following": 1301,
                              "likes": 455939,
                              "posts": 151
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.elsey.05",
                            "displayName": "Taylor Rae",
                            "bio": "Taylor Rae",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/2dae4fa4ba74f307255a672b402cf604~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=af907326&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=rggL5jL9zVAd%2FXuvO8b5dK4s3q0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.elsey.05",
                            "privateAccount": false,
                            "platformUserId": "6734281884953494534",
                            "secUid": "MS4wLjABAAAAN-rHKwYpRDumf2wXQ0An2d-mnFPhHIxxdiiW4WsSNAV4r83IMY1bcOnwAdKmYMsG",
                            "metrics": {
                              "followers": 464,
                              "following": 308,
                              "likes": 2998,
                              "posts": 11
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor_112702",
                            "displayName": "Taylor🦋",
                            "bio": "Taylor🦋",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6b68e3782212e865c22d1e8aede37663~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=47d176cc&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=u4m5ZaKy7U7mJdU3GnVuLBGoKYU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor_112702",
                            "privateAccount": true,
                            "platformUserId": "79162115772571648",
                            "secUid": "MS4wLjABAAAAUmUc9BVTHwqOBWrZApo97DNZh8O6gvSOJHY9fWI9hrYv8dDwlylzTUnofWTEVrl2",
                            "metrics": {
                              "followers": 579,
                              "following": 9247,
                              "likes": 1577,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "uuuuty123",
                            "displayName": "Bubbly Rush🍾️🍾️",
                            "bio": "Bubbly Rush🍾️🍾️",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/dee468e4d22dfbd10cef6901575d24c1~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=15faa753&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=izBArkMRljXxxRUopew7THAWgGU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@uuuuty123",
                            "privateAccount": false,
                            "platformUserId": "7420475556426155054",
                            "secUid": "MS4wLjABAAAAihBgj7Zsv1WJ37RCgX50LX2G6QieuwiopOQ1D55vDojcCheFoovR2CKS37oCwhzR",
                            "metrics": {
                              "followers": 11057,
                              "following": 106,
                              "likes": 9291,
                              "posts": 82
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylor.prvt15",
                            "displayName": "𝒯𝒶𝓎𝓁𝑜𝓇. 𝑜𝒻𝒻𝒾𝒸𝒾𝒶𝓁",
                            "bio": "𝒯𝒶𝓎𝓁𝑜𝓇. 𝑜𝒻𝒻𝒾𝒸𝒾𝒶𝓁",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/87251bdc976d8d13eb25e7e8493ef9e6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b7399497&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=TiV67sUfhiiDkqLsltqDNpJTZyU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylor.prvt15",
                            "privateAccount": false,
                            "platformUserId": "7323678009524831264",
                            "secUid": "MS4wLjABAAAAQXjcFerkLvQ86E4BWffLMho7bcZFbj9HFrqlsM-B-O-5TDviSpvUEMlJQlw8GRK1",
                            "metrics": {
                              "followers": 390,
                              "following": 14,
                              "likes": 42527,
                              "posts": 4
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylorfamilyclippage",
                            "displayName": "Taylorfamilyclippage",
                            "bio": "Taylorfamilyclippage",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/0d62c7e0efc990309d13248fce255a76~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=2a6db911&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=f4jm%2FucsjWxIr7NbdP5JAzeYS8A%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylorfamilyclippage",
                            "privateAccount": false,
                            "platformUserId": "5627216",
                            "secUid": "MS4wLjABAAAAwi9cWGrcne-iiY35a5hZINUph01131meZh6NYKFWL7I",
                            "metrics": {
                              "followers": 87,
                              "following": 194,
                              "likes": 3193,
                              "posts": 20
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "dripclips3",
                            "displayName": "Dripclips",
                            "bio": "Dripclips",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/55b1690a3318a5dc582a916fa69d4bbf~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ddbe279f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=LfYqPz1M92sVokYeXziByN0WGKg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@dripclips3",
                            "privateAccount": false,
                            "platformUserId": "7608699477722448910",
                            "secUid": "MS4wLjABAAAAPkyMZ0rbPRoTVhDGFp4ABq0nbfqO8uJ-zbgvyxVf5BLtR0KJhRW6R0asQugPaqjK",
                            "metrics": {
                              "followers": 657,
                              "following": 81,
                              "likes": 149204,
                              "posts": 127
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylortaylor121",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/2b09fbe4165831a1b1bd4f2d37d6415e~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c5361bd3&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=BVVHWIrwBSzxmBdBL8cC4r7Abpk%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylortaylor121",
                            "privateAccount": false,
                            "platformUserId": "7460358916666410026",
                            "secUid": "MS4wLjABAAAAliHqksxOFI_uPEW8WarkSWLp4BnEuw1RlHQe02y1MnvFhRAz1hOjS_E6pe_08gWC",
                            "metrics": {
                              "followers": 233,
                              "following": 203,
                              "likes": 1416,
                              "posts": 1
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "tayyyleigh1",
                            "displayName": "taylor",
                            "bio": "taylor",
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c6c9b5ee32cb9efc9414a2f9508334e6~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ca3b1b9f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=51s49HVbVAxVoO0QlgCxBDGoeNk%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@tayyyleigh1",
                            "privateAccount": true,
                            "platformUserId": "7499548372006650922",
                            "secUid": "MS4wLjABAAAAf2nOrLZR88PZGs7hVQGjs3aeWUw6nfBxHB_4Qpx3nnK6DL4hcGdjk5WEvbZv_6II",
                            "metrics": {
                              "followers": 49,
                              "following": 599,
                              "likes": 1058,
                              "posts": 0
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "taylormmadison",
                            "displayName": "Taylor",
                            "bio": "Taylor",
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/d3f179c43bec82e5d84ce5ce37013c67~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e0de1e15&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=tJ4t03%2FhC8kn%2F5Wp2MiKLJFf0sM%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@taylormmadison",
                            "privateAccount": false,
                            "platformUserId": "7493919128156701738",
                            "secUid": "MS4wLjABAAAAmqmIVwQ8ZbygJucYdE0qcT1zDOgdnK-KZC5a_iq-Q2iqwKJQDDwMgb1MxB5-F6m0",
                            "metrics": {
                              "followers": 96256,
                              "following": 10,
                              "likes": 2844322,
                              "posts": 7
                            }
                          }
                        ],
                        "totalUsers": 30,
                        "page": {
                          "nextCursor": "60",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_paginated",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "sparse": {
                    "value": {
                      "data": {
                        "query": "x",
                        "users": [
                          {
                            "platform": "tiktok",
                            "handle": "j63__",
                            "displayName": "𝐗",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/03c2119a8f5d8059565a2980b89a98d4~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d3958734&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=fXtFg6%2BKUpVrK7p9%2BQ0A2s8csmk%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@j63__",
                            "platformUserId": "6709420434797265926",
                            "secUid": "MS4wLjABAAAAq8M3UIw1fOTqZG-KA805VgeIyrUZLxaS-oA2wU1YcBLGSn5xBZ199FfFsiQ5mecn",
                            "metrics": {
                              "followers": 106304,
                              "following": 18,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "alusavrdhl9",
                            "displayName": "xXx",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c6dc46c86d8ad49e7981e4ac0f264751~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ad562492&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=cFiJUgI7Ih6qxMFadLLL1a0CgM0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@alusavrdhl9",
                            "platformUserId": "7610735888997663758",
                            "secUid": "MS4wLjABAAAAS8SiSjm7Dyqq53Z6HGj--lyjXbVaF6s1Ql-4PIAeXrqB80bzqx1lGZuUOp-7UISP",
                            "metrics": {
                              "followers": 123046,
                              "following": 1,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "dameliosrye",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/640bc35df9163f381b82f621dcd49576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=4120cb6a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=9J6BsWPEhBeeEPZL8J3SZsdZFvo%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@dameliosrye",
                            "platformUserId": "6844759448411440134",
                            "secUid": "MS4wLjABAAAA3aBinhwAJCAbWEW4VtULkL_Xfcwv85rD61ZQAsgdF9eXEEPa4INaIDGl5y7_IK0V",
                            "metrics": {
                              "followers": 191346,
                              "following": 38,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "x_dg14",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/17d25b3f193e87b7460d16e14e35c3d5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=6362e124&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=f3mrdyEE%2FSKESiit9CbPy9cfq4o%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@x_dg14",
                            "platformUserId": "6805617589810725893",
                            "secUid": "MS4wLjABAAAADEHWNpg4-jsbUsGIMq4xfGY6BHyowQ47zg4qxlfPOy_ofSgDgxmF2-6hqJ1fra69",
                            "metrics": {
                              "followers": 116526,
                              "following": 48,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "_xis.s",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/0d117dbd3b375548d58ef9da7d20780b~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ee775f49&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=l4cYb%2FhpnEia57SlEN7cT7YrmLg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@_xis.s",
                            "platformUserId": "7291464936097530912",
                            "secUid": "MS4wLjABAAAAT_cCqH2jDIZt1woLO58w0DzsbZ6G3ikUSqRDLvI6t-u7UoEj0_CfWesthiQyZN9q",
                            "metrics": {
                              "followers": 147154,
                              "following": 0,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xxl_studios",
                            "displayName": "XXL STUDIOS | MURALIST 🖤🇨🇦",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/22c6be324750faa235dc918804a4c80a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d02164a7&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HPEg6yej8NZu090a5m5sAWENfuY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xxl_studios",
                            "platformUserId": "6837228622421050374",
                            "secUid": "MS4wLjABAAAAKIgoS7WXvlBEgobP2YVRkASdxHALQpUzFx6X3NdBuJ3FGO8nYx8KbB8DuMCxPBG9",
                            "metrics": {
                              "followers": 667280,
                              "following": 583,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xsnap.hacksx2",
                            "displayName": "3 owners🥰",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/1a91cf1fefc31c80d9fc59a085c1815f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=b992c7ca&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ET78Dq6K8vNYh23GnvlZU8vdW5s%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xsnap.hacksx2",
                            "platformUserId": "6925272599468491781",
                            "secUid": "MS4wLjABAAAAk6VA9E9c9zb6IhvYZol_Qnyxzq9q95bcFel4BkSoTsZXJ2ilFQnYm87-YtnKt_w1",
                            "metrics": {
                              "followers": 124205,
                              "following": 6,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "da_dxxd",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/e7378d4760a9d46e1e5659386be203a2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=d377961a&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=n0k%2FPM9q1TGOQDHnQ1d0DVAJ5iw%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@da_dxxd",
                            "platformUserId": "6610154187588550661",
                            "secUid": "MS4wLjABAAAA84aMX-RZDaYLS9TxUYusoIwkuykx4R7YSdHi3_42hFZT3AcfgzPoKk40ZeOLmJv_",
                            "metrics": {
                              "followers": 221033,
                              "following": 2,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "x_10000_x",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/27dce5da2a8441e8dc3ae9cb2d113682~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=e82090c6&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=G1Y2DelXvX7VGIbfQmGkUf3Q%2B40%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@x_10000_x",
                            "platformUserId": "7430732770374747169",
                            "secUid": "MS4wLjABAAAAkw4rVgJpAHaTY2oFlGcWFGhHlWWB4riTnKy5C5in1EgMlrNpRFL5PSgaoKO8iOpj",
                            "metrics": {
                              "followers": 162242,
                              "following": 110,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "x1m.xk",
                            "displayName": "𝓧",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/72d0fc46c18b4e25329ac25c0b626f5f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=798dffd2&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=JwjbOvmkywkUtYvRYUAKW%2FAt2o8%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@x1m.xk",
                            "platformUserId": "7028424255478367237",
                            "secUid": "MS4wLjABAAAAKPsMk8F6uhKhJuV0vXX-ffD8jOozZYhWDLfAH2R2r0er0eAm1C31pjn92xtO3b-Q",
                            "metrics": {
                              "followers": 392885,
                              "following": 11,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "x.video237",
                            "displayName": "X video",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/41af143c6ed182ad73cbb234578433d4~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=560ea333&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=tK3vnE5Kw1oyJN8rY7jDLA9%2Fydo%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@x.video237",
                            "platformUserId": "7619234930850366477",
                            "secUid": "MS4wLjABAAAAPTUr5bj-UnDzhVyAKFyxGmPW4e0eeFCfoTpsMWlcsiST7Se43jfN9FQ0VWOaFIao",
                            "metrics": {
                              "followers": 810959,
                              "following": 80,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xnxxoffcial",
                            "displayName": "XNXX",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/ccf65d5ba636f9e6ed3c09305c65ec2a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=0600f158&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Q324bUMfQ%2FiYU2z1oioespihLXs%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xnxxoffcial",
                            "platformUserId": "7353488541018489862",
                            "secUid": "MS4wLjABAAAA2iiQmiXOYiMd59CMzcbkLvhlrZCMrjbKbfk1ievQz9BYltI17RV-tnvxG_vN4Zds",
                            "metrics": {
                              "followers": 251,
                              "following": 442,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xfinds",
                            "displayName": "X-Finds",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/ab89e918e4dbb4346b79cbfccdf6475c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=64515b11&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=gNwIRIEvJDj30kh3srMG9Y%2BSCQU%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xfinds",
                            "platformUserId": "6766595529956983813",
                            "secUid": "MS4wLjABAAAACchO5gHp7rSBZy01BKo77tbMpQPr-OIVo_TKoki7Uqzzvr6Zxowm4CKfK_1K8Pdh",
                            "metrics": {
                              "followers": 15888427,
                              "following": 1,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "shinxenoo",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/64671564209fd83249099f29cfb51f8d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=52e21908&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ZEAaR9iTrz1trFEc%2F6CIBz7DCGk%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@shinxenoo",
                            "platformUserId": "7458230980176839687",
                            "secUid": "MS4wLjABAAAArx0YrjcGOA1t62i7Qp0FvNknY-IU6a-nVbD82oTw4nJQ4z1JV24VaXtaEdp6ckWr",
                            "metrics": {
                              "followers": 120328,
                              "following": 10,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "kdreemz2.0",
                            "displayName": "Dreemz",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c7680fe476feae522cdb7fefe47ef89d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=ae299f1b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=oRCWI8jLb8ubxfAJzxYZUOcMkv8%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@kdreemz2.0",
                            "platformUserId": "7195340060211430443",
                            "secUid": "MS4wLjABAAAArhK9O8n6NlyJeubM_rRvyOdmtBGq-1EPfy_IU_uNl2o195ndyIvP3y1X1lg5Aaw8",
                            "metrics": {
                              "followers": 633825,
                              "following": 693,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": ".ximenapadilla",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/45a222aa3c288b4c386fb8bd1d69daf9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a9c99f37&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=HLcfjXS%2F83FspQWxe4eX9P9w9ZE%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@.ximenapadilla",
                            "platformUserId": "6805034827176821765",
                            "secUid": "MS4wLjABAAAA5OIEG0VoAH-1AEBjmxQuFs93zTYnIJQgul9Tix8TWNtaOqG3wItQZR8mzbkQcrHp",
                            "metrics": {
                              "followers": 176391,
                              "following": 3,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "milenajeje",
                            "displayName": "Milenax❤️",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/a6a93cfdcf90284d7db210d457e90c53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=18c183c9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=ca6lPlbJuxeI5B04cdi8ts83xyA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@milenajeje",
                            "platformUserId": "18010390",
                            "secUid": "MS4wLjABAAAAJt0c8rOLW6v55WJ3AeP4SlH2iQ0zndtGuMPIl7SUEeM",
                            "metrics": {
                              "followers": 4415036,
                              "following": 115,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xxxx1234450",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/d073305141faaa554aaee72aee9cb04a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=41ad144c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=gtSfokXbZDH%2FaSvrS6mudC8Woys%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xxxx1234450",
                            "platformUserId": "6660060056811470854",
                            "secUid": "MS4wLjABAAAAKErRpoPiARWOtLBBtSuBgHmNVz4m5qtA7VMPPyokA0BU26ndFNiLTSWgHOcFbpkU",
                            "metrics": {
                              "followers": 126716,
                              "following": 17,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xav1ah",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/1a7f8ef5380b639b5d21b5f0ea1e12f5~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=c7c6507b&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=GUPo1UIMAvod6tBiE7MxNS9JBdE%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xav1ah",
                            "platformUserId": "6999914744863081474",
                            "secUid": "MS4wLjABAAAA_hqvKR6koGBnRfOG3UinD-gcw_n5E4NXuLSvn37q-xATf6tgJCSdf5Mbx_OYBdXn",
                            "metrics": {
                              "followers": 277593,
                              "following": 1158,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "chemicee",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/cd48466026b689c3e5eaf85b57166857~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cf4ac240&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=K3Fz5ZdrJyxkQQYNBJDHg0RRyPY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@chemicee",
                            "platformUserId": "6753432417979892742",
                            "secUid": "MS4wLjABAAAARYkJQWyINfKfvDNDPPF9pZvltVGTSd2vNrGy_WtGSZoEJ6orNNNvSpDd_2xD-DVW",
                            "metrics": {
                              "followers": 301489,
                              "following": 880,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "x1omarasfinest",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/813498564a3259df35227232d961eabd~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=6ca38b9c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=lcYs9OXH4eOHFUMjEdP71OFVrYw%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@x1omarasfinest",
                            "platformUserId": "7403907855962113066",
                            "secUid": "MS4wLjABAAAAMFiVB9vAv3OTpSIVWxACnS7FGATKlz9L_LkG-1kbj4ZaizO-NoFbX0VySML30ee3",
                            "metrics": {
                              "followers": 964,
                              "following": 37,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "ita_anson",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/86481aecada1df8478676f25026e5c30~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=2961471f&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=KqE%2Bu9KVj4CNBO0CjZWoSFG362o%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@ita_anson",
                            "platformUserId": "6859718200767529990",
                            "secUid": "MS4wLjABAAAADnWTR-v9jlS-af1lHAeaiyz_om-FVN38bAZ7rjFr4dJB5CxmqskhT8iCg8GqJn7-",
                            "metrics": {
                              "followers": 140980,
                              "following": 275,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "_x0.mm_",
                            "displayName": "Sexc blue 💋",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/b7e2b6732e7fbea9e20d0f8a20b0c398~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=297b6ae0&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=Pft0lYqIX7D7x%2BmYfeujQ2hrEtc%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@_x0.mm_",
                            "platformUserId": "7021662089916695557",
                            "secUid": "MS4wLjABAAAAEO2Ix_R40dTbPEn9lB_eSANKxlcQOe0WXk75HHPN5BP8WZAvb8_-yZS7tZOjZ0U3",
                            "metrics": {
                              "followers": 738,
                              "following": 434,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xy122333",
                            "displayName": "𝓧~",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/00a11792451a6f04b26d293c4ebb4e88~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=9fa41100&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=DL5nN9nOsjazlottXDxrY97%2BTW4%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xy122333",
                            "platformUserId": "7085257259433313306",
                            "secUid": "MS4wLjABAAAA6OaSOgecUunMsYe9QIGLElouKJgNWNMfrTZZgoORSe4SYRw6l9EtaowTKiH3PQ01",
                            "metrics": {
                              "followers": 833700,
                              "following": 153,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "_c_._._x_",
                            "displayName": "岑",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/f977c206259a0af7a8a272951864db1e~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=36cdd99c&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=10BkiGwjeMuA8s86n%2FVd1oVTT9M%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@_c_._._x_",
                            "platformUserId": "6635522957513736194",
                            "secUid": "MS4wLjABAAAAry31W1tEJ4sX7E07j4XIpXKgvpx0aUsn-F9eHlC27QkZbwNy8m_dmEkIiKocrMbN",
                            "metrics": {
                              "followers": 2563,
                              "following": 37,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "emmajolee12",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/99b8ec5d1bce72278e176adc793f3fc2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=861f0825&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=4Rapo2ASgiFR9Ai3N9JwyWvqbrY%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@emmajolee12",
                            "platformUserId": "6879066921988883457",
                            "secUid": "MS4wLjABAAAA3HAOGUuGkVPP3KfjslP0Ttzqmfh6RzEhHbsUJW9r-va5lRnIPeVbfUQIdrEc4_uj",
                            "metrics": {
                              "followers": 130629,
                              "following": 350,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xsquad.1",
                            "displayName": "XSQUAD",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7d149125651e17341e1dcf2145b11631~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=a856aadb&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=MwSOhJVGDZzUt75X9SbpeUHzJEg%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xsquad.1",
                            "platformUserId": "6787077140766917638",
                            "secUid": "MS4wLjABAAAAGiWAqBPFnaypxM9mAfqFSaWkT2FswR9OBmv0whDLyiYuth_a2WvE97jeY899GJ2p",
                            "metrics": {
                              "followers": 721584,
                              "following": 510,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "xsquad.2",
                            "displayName": "X.SQUAD",
                            "bio": null,
                            "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/4a6ee6785f1e034d4c705580b36d8b75~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=0f4c1621&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=pEV7G%2BuPqeqEEC24ShwJjBu%2BzbA%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@xsquad.2",
                            "platformUserId": "6961475257958450181",
                            "secUid": "MS4wLjABAAAAqrkhV0oNv96lo9xFbUecXKMTMktbUYfzykqG-iQpcksfvVFWnQVE1Mkl2dMYEk05",
                            "metrics": {
                              "followers": 314550,
                              "following": 171,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "sorrouhk",
                            "displayName": "x",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/7d252335420a3eb373219117325613a2~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=1657e4c9&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=WIOfXRZ641szfqBE3mDisA1g%2BE0%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@sorrouhk",
                            "platformUserId": "7126636971154064390",
                            "secUid": "MS4wLjABAAAAiQP-Gtn1vmRlb0KsHHSSNB7sWj6CBzopMoA3TQSbhKeFRzEgykjeKcZ-EyPfNnox",
                            "metrics": {
                              "followers": 853356,
                              "following": 0,
                              "likes": null,
                              "posts": null
                            }
                          },
                          {
                            "platform": "tiktok",
                            "handle": "viral00.4",
                            "displayName": "X",
                            "bio": null,
                            "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast2a-avt-0068-euttp/f7e98e21d11366fbc2b12bf5a6e07d6f~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast8&ps=87d6e48a&refresh_token=cfaa5d79&s=SEARCH&sc=avatar&shcp=c1333099&shp=30310797&t=223449c4&x-expires=1779343200&x-signature=70KxhPrP0sgD%2FmEzr3mvQoB1yC8%3D",
                            "verified": false,
                            "profileUrl": "https://www.tiktok.com/@viral00.4",
                            "platformUserId": "7383054134364472352",
                            "secUid": "MS4wLjABAAAA0ULhZCU-ka3eU-1hRadJwqIM9tG39NM95pkvspt-jojMQ8JC94EUD8BOGzPN-NWK",
                            "metrics": {
                              "followers": 210337,
                              "following": 2605,
                              "likes": null,
                              "posts": null
                            }
                          }
                        ],
                        "totalUsers": 30,
                        "page": {
                          "nextCursor": "30",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/search": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Search TikTok videos",
        "description": "Search TikTok videos by keyword.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "Search query text for TikTok videos."
            },
            "required": true,
            "description": "Search query text for TikTok videos.",
            "name": "query",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "yesterday",
                "this-week",
                "this-month",
                "last-3-months",
                "last-6-months",
                "all-time"
              ],
              "description": "Optional upload date filter for video results."
            },
            "required": false,
            "description": "Optional upload date filter for video results.",
            "name": "datePosted",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "relevance",
                "most-liked",
                "date-posted"
              ],
              "description": "Optional sort order for search results."
            },
            "required": false,
            "description": "Optional sort order for search results.",
            "name": "sortBy",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "description": "Optional two-letter ISO 3166-1 country code for localized search results."
            },
            "required": false,
            "description": "Optional two-letter ISO 3166-1 country code for localized search results.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Opaque pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "When true, returns a smaller response with fewer fields."
            },
            "required": false,
            "description": "When true, returns a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Video search results for the requested query.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "videos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok video identifier."
                              },
                              "caption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Caption text shown for the TikTok video."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp when the video was created, when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Canonical public TikTok URL for the video."
                              },
                              "thumbnailUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Best available thumbnail or cover image URL for the video."
                              },
                              "durationMs": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Video duration in milliseconds, when available."
                              },
                              "pinned": {
                                "type": "boolean",
                                "description": "Whether the video is pinned on the profile."
                              },
                              "isAd": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the video as an ad."
                              },
                              "stats": {
                                "type": "object",
                                "properties": {
                                  "views": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "View count reported by TikTok for the video."
                                  },
                                  "likes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Like count reported by TikTok for the video."
                                  },
                                  "comments": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Comment count reported by TikTok for the video."
                                  },
                                  "shares": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Share count reported by TikTok for the video."
                                  },
                                  "saves": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Save or collection count reported by TikTok for the video."
                                  }
                                },
                                "required": [
                                  "views",
                                  "likes",
                                  "comments",
                                  "shares",
                                  "saves"
                                ],
                                "description": "Engagement metrics for the video."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "downloadUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL, usually with watermark."
                                  },
                                  "downloadWithoutWatermarkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL without watermark."
                                  }
                                },
                                "required": [
                                  "downloadUrl",
                                  "downloadWithoutWatermarkUrl"
                                ],
                                "description": "Download-related media URLs for the video."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this video (for example author, music, challenges, and full `video` and `statistics` objects). Keys that only duplicate the top-level fields are omitted."
                              }
                            },
                            "required": [
                              "id",
                              "caption",
                              "createdAt",
                              "url",
                              "thumbnailUrl",
                              "durationMs",
                              "pinned",
                              "isAd",
                              "stats",
                              "media"
                            ],
                            "description": "TikTok video in the profile feed."
                          },
                          "description": "Matching TikTok videos. TikTok may return the same video more than once for some searches."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more videos are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of videos is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "query",
                        "videos",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "sample": {
                    "value": {
                      "data": {
                        "query": "web scraping",
                        "videos": [
                          {
                            "id": "7470969622276164906",
                            "caption": "Example search result video",
                            "createdAt": "2025-09-03T18:37:38.000Z",
                            "url": "https://www.tiktok.com/@example/video/7470969622276164906",
                            "thumbnailUrl": "https://example.com/video-cover.jpg",
                            "durationMs": 89131,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 141567,
                              "likes": 18651,
                              "comments": 152,
                              "shares": 237,
                              "saves": 274
                            },
                            "media": {
                              "downloadUrl": "https://example.com/video-watermarked.mp4",
                              "downloadWithoutWatermarkUrl": "https://example.com/video-no-watermark.mp4"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiMzAifQ",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "web scraping",
                        "videos": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "query": "web scraping",
                        "videos": [
                          {
                            "id": "7470123456789012345",
                            "caption": "Second page example video",
                            "createdAt": "2025-09-01T12:00:00.000Z",
                            "url": "https://www.tiktok.com/@example/video/7470123456789012345",
                            "thumbnailUrl": "https://example.com/video-cover-page-2.jpg",
                            "durationMs": 30250,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 9021,
                              "likes": 731,
                              "comments": 48,
                              "shares": 12,
                              "saves": 19
                            },
                            "media": {
                              "downloadUrl": "https://example.com/video-page-2-watermarked.mp4",
                              "downloadWithoutWatermarkUrl": "https://example.com/video-page-2-no-watermark.mp4"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "eyJjIjoiNDIifQ",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/search/hashtags": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Search TikTok by hashtag",
        "description": "Search TikTok videos by hashtag.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "hashtagInput": "Send `hashtag` with or without a leading #; both `fyp` and `#fyp` are accepted.",
          "disambiguation": "Use `data.page.hasMore` and `data.page.nextCursor` for pagination. Repeat the same hashtag and filters when requesting the next page.",
          "duplicateResults": "TikTok may return duplicate video ids in `data.videos`; preserve row order rather than deduplicating client-side."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 256,
              "description": "Hashtag to search for. A leading # is optional."
            },
            "required": true,
            "description": "Hashtag to search for. A leading # is optional.",
            "name": "hashtag",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "description": "Optional ISO 3166-1 country code for the request. This sets the proxy region and does not filter results to that country only."
            },
            "required": false,
            "description": "Optional ISO 3166-1 country code for the request. This sets the proxy region and does not filter results to that country only.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Pagination cursor returned by a previous response."
            },
            "required": false,
            "description": "Pagination cursor returned by a previous response.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean",
              "nullable": true,
              "description": "Whether to request a smaller response with fewer fields."
            },
            "required": false,
            "description": "Whether to request a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Hashtag search results for the requested tag.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "hashtag": {
                          "type": "string",
                          "description": "Hashtag evaluated for this response, without a leading #."
                        },
                        "region": {
                          "type": "string",
                          "nullable": true,
                          "description": "Region applied for this response when one was requested."
                        },
                        "videos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok video identifier."
                              },
                              "caption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Caption text shown for the TikTok video."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "description": "ISO-8601 timestamp when the video was created, when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "Canonical public TikTok URL for the video."
                              },
                              "thumbnailUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "Best available thumbnail or cover image URL for the video."
                              },
                              "durationMs": {
                                "type": "integer",
                                "nullable": true,
                                "minimum": 0,
                                "description": "Video duration in milliseconds, when available."
                              },
                              "pinned": {
                                "type": "boolean",
                                "description": "Whether the video is pinned on the profile."
                              },
                              "isAd": {
                                "type": "boolean",
                                "description": "Whether TikTok marks the video as an ad."
                              },
                              "stats": {
                                "type": "object",
                                "properties": {
                                  "views": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "View count reported by TikTok for the video."
                                  },
                                  "likes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Like count reported by TikTok for the video."
                                  },
                                  "comments": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Comment count reported by TikTok for the video."
                                  },
                                  "shares": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Share count reported by TikTok for the video."
                                  },
                                  "saves": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Save or collection count reported by TikTok for the video."
                                  }
                                },
                                "required": [
                                  "views",
                                  "likes",
                                  "comments",
                                  "shares",
                                  "saves"
                                ],
                                "description": "Engagement metrics for the video."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "downloadUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL, usually with watermark."
                                  },
                                  "downloadWithoutWatermarkUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Best available downloadable video URL without watermark."
                                  }
                                },
                                "required": [
                                  "downloadUrl",
                                  "downloadWithoutWatermarkUrl"
                                ],
                                "description": "Download-related media URLs for the video."
                              },
                              "details": {
                                "type": "object",
                                "properties": {},
                                "additionalProperties": {
                                  "nullable": true
                                },
                                "description": "Additional TikTok-native fields for this video (for example author, music, challenges, and full `video` and `statistics` objects). Keys that only duplicate the top-level fields are omitted."
                              },
                              "author": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "TikTok user id for the video author when available."
                                  },
                                  "handle": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "TikTok handle for the video author when available."
                                  },
                                  "displayName": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name for the video author when available."
                                  },
                                  "avatarUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Avatar image URL for the video author when available."
                                  },
                                  "verified": {
                                    "type": "boolean",
                                    "description": "Whether the author is verified on TikTok."
                                  }
                                },
                                "required": [
                                  "id",
                                  "handle",
                                  "displayName",
                                  "avatarUrl",
                                  "verified"
                                ],
                                "description": "Author metadata for this hashtag search result."
                              }
                            },
                            "required": [
                              "id",
                              "caption",
                              "createdAt",
                              "url",
                              "thumbnailUrl",
                              "durationMs",
                              "pinned",
                              "isAd",
                              "stats",
                              "media",
                              "author"
                            ],
                            "description": "TikTok video in hashtag search results."
                          },
                          "description": "TikTok videos matching the hashtag in order. Duplicate video ids may appear when the platform returns them."
                        },
                        "totalVideos": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Number of video rows returned in this response."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more videos are available."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of videos is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current hashtag search page."
                        }
                      },
                      "required": [
                        "hashtag",
                        "region",
                        "videos",
                        "totalVideos",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "results": {
                    "value": {
                      "data": {
                        "hashtag": "fyp",
                        "region": null,
                        "videos": [
                          {
                            "id": "7641792550227053855",
                            "caption": "#fypシ #fypシ゚viral #you #mexico #mexico🇲🇽",
                            "createdAt": "2026-05-20T02:18:05.000Z",
                            "url": "https://www.tiktok.com/@babys1275/video/7641792550227053855",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast8-p-0068-tx2/o8O6IiqIUCwoMEByiMAiVBdXEfGv1qiAyBz8NA~tplv-tiktokx-origin.image?dr=1347&refresh_token=2171931a&x-expires=1779343200&x-signature=5Dy4lPO3gpr4%2FBVZ8JQUKU5PJn0%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 10998,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 2074,
                              "likes": 369,
                              "comments": 18,
                              "shares": 2,
                              "saves": 18
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/ec63c747c971dcdde5e2fbfe03ed1a87/6a0ea813/video/tos/maliva/tos-maliva-ve-0068c799-us/oAMIOIEGArDCfOkLeHUjIgAwQzaKeGI5jrYwFq/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1163&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=OjNkNDk2N2k7ZTc6ZmhoZ0BpM295ZnY5cm9rOzMzaTczNEAtYmAzLi4zXmIxLTIvLjVgYSNlMWkzMmRjZzNhLS1kMTJzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 32,
                                "author": "Luis Angel \"El Flaco\"",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=96652ebd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hmwiKEkyqWJEoWvyN%2F73cW5oXx8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5dcd8040&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PA911%2FB5apEQS3XdACyBq1ci%2B68%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=54a7fdde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JStbl7iao%2B2UQ1oMWHIRFiS9Bu8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e878a8dc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Bf8fobhSR5zJ5TmquWgqEDNWykk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=52d317f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WL8DaooMG5USzDva5TUYOODfU04%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fc2dddd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hckK5hirz505TbXNCme0QSZRIqM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=e48a6cc5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W0AKBpGcb4mlmcfEWnRYY5fgv40%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=5849b206&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DzDKtV%2Bms4gGXdNoHXxrY6M4A0A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=ce247098&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SI%2BQRF0lP%2FNHQPQspkT5TuD6veM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=96652ebd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hmwiKEkyqWJEoWvyN%2F73cW5oXx8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5dcd8040&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PA911%2FB5apEQS3XdACyBq1ci%2B68%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=54a7fdde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JStbl7iao%2B2UQ1oMWHIRFiS9Bu8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e878a8dc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Bf8fobhSR5zJ5TmquWgqEDNWykk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=52d317f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WL8DaooMG5USzDva5TUYOODfU04%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fc2dddd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hckK5hirz505TbXNCme0QSZRIqM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1649716922,
                                "dmv_auto_show": false,
                                "duration": 32,
                                "duration_high_precision": {
                                  "audition_duration_precision": 32.287,
                                  "duration_precision": 32.287,
                                  "shoot_duration_precision": 32.287,
                                  "video_duration_precision": 32.287
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":13,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7085480177945316614,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000c9aatcbc77ub6aapfhng\",\"owner_id\":6826189995616420869,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7085480192935759000,
                                "id_str": "7085480192935758598",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"fingerprint\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Luis Angel \"El Flaco\"",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Perrísima Pa Bailar\"",
                                  "mixed_title": "original sound - luisangelelflaco1 (Contains music from: Perrísima Pa Bailar - Luis Angel \"El Flaco\")",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Perrísima Pa Bailar",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Luis Angel \"El Flaco\"",
                                  "chorus_info": {
                                    "duration_ms": 23232,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 134497,
                                  "h5_url": "",
                                  "id": "7076611027252692994",
                                  "performers": null,
                                  "title": "Perrísima Pa Bailar"
                                },
                                "meme_song_info": {},
                                "mid": "7085480192935758598",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "luisangelelflaco1",
                                "owner_id": "6826189995616420869",
                                "owner_nickname": "Luis Angel \"El Flaco\"",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7085480188062075653.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7085480188062075653.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAxdkNYazrkbYNMc6ctVuUpfJfzvIyE4YwoWaXsVQFM_3t3c1WMH6bI00aoyWQ74aA",
                                "shoot_duration": 32,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/de43fac4132c3b2991accc964327bb34.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/de43fac4132c3b2991accc964327bb34.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - luisangelelflaco1",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 32
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "download_mask_panel": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 1,
                                  "toast_msg": "This action isn’t allowed for this post",
                                  "transcode": 1
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "unknown",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0,\"has_invisible_watermark\":2,\"generate_server_task_id\":[]}",
                                "dedup_err": "49, 0",
                                "dedup_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fypシ",
                                  "cid": "1637342470396934",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1637342470396934",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fypシ on TikTok!",
                                    "share_desc_info": "Check out #fypシ on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fypシ",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp%E3%82%B7?_r=1&name=fyp%E3%82%B7&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=1637342470396934&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.008678881388621022}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": "[]"
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7639683654934973726",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7641792550227054000,
                                  7639683654934973000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 32,
                                "author": "Luis Angel \"El Flaco\"",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=96652ebd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hmwiKEkyqWJEoWvyN%2F73cW5oXx8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5dcd8040&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PA911%2FB5apEQS3XdACyBq1ci%2B68%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=54a7fdde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JStbl7iao%2B2UQ1oMWHIRFiS9Bu8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e878a8dc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Bf8fobhSR5zJ5TmquWgqEDNWykk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=52d317f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WL8DaooMG5USzDva5TUYOODfU04%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fc2dddd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hckK5hirz505TbXNCme0QSZRIqM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=e48a6cc5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W0AKBpGcb4mlmcfEWnRYY5fgv40%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=5849b206&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DzDKtV%2Bms4gGXdNoHXxrY6M4A0A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=ce247098&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SI%2BQRF0lP%2FNHQPQspkT5TuD6veM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=96652ebd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hmwiKEkyqWJEoWvyN%2F73cW5oXx8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5dcd8040&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PA911%2FB5apEQS3XdACyBq1ci%2B68%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=54a7fdde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JStbl7iao%2B2UQ1oMWHIRFiS9Bu8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e878a8dc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Bf8fobhSR5zJ5TmquWgqEDNWykk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=52d317f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WL8DaooMG5USzDva5TUYOODfU04%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/5293dcc2d863930cf8d9fdd3bc4a2f9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fc2dddd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hckK5hirz505TbXNCme0QSZRIqM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1649716922,
                                "dmv_auto_show": false,
                                "duration": 32,
                                "duration_high_precision": {
                                  "audition_duration_precision": 32.287,
                                  "duration_precision": 32.287,
                                  "shoot_duration_precision": 32.287,
                                  "video_duration_precision": 32.287
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":13,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7085480177945316614,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000c9aatcbc77ub6aapfhng\",\"owner_id\":6826189995616420869,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7085480192935759000,
                                "id_str": "7085480192935758598",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"fingerprint\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Luis Angel \"El Flaco\"",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Perrísima Pa Bailar\"",
                                  "mixed_title": "original sound - luisangelelflaco1 (Contains music from: Perrísima Pa Bailar - Luis Angel \"El Flaco\")",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Perrísima Pa Bailar",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Luis Angel \"El Flaco\"",
                                  "chorus_info": {
                                    "duration_ms": 23232,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/fb9ecf10f6aa46c1bee9055daba059e8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 134497,
                                  "h5_url": "",
                                  "id": "7076611027252692994",
                                  "performers": null,
                                  "title": "Perrísima Pa Bailar"
                                },
                                "meme_song_info": {},
                                "mid": "7085480192935758598",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "luisangelelflaco1",
                                "owner_id": "6826189995616420869",
                                "owner_nickname": "Luis Angel \"El Flaco\"",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7085480188062075653.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7085480188062075653.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAxdkNYazrkbYNMc6ctVuUpfJfzvIyE4YwoWaXsVQFM_3t3c1WMH6bI00aoyWQ74aA",
                                "shoot_duration": 32,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/de43fac4132c3b2991accc964327bb34.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/de43fac4132c3b2991accc964327bb34.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - luisangelelflaco1",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 32
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 10979,
                              "music_selected_from": "video_capsule_recommend",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"0\">#fypシ</h> <h id=\"2\">#fypシ゚viral</h> <h id=\"4\">#you</h> <h id=\"6\">#mexico</h> <h id=\"8\">#mexico🇲🇽</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "0",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1664119477821441",
                                    "hashtag_name": "fypシ゚viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5507",
                                    "hashtag_name": "you",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "4",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "8181",
                                    "hashtag_name": "mexico",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1592203205856262",
                                    "hashtag_name": "mexico🇲🇽",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Baby's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Baby’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Baby’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@babys1275/video/7641792550227053855?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7641792550227053855&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10075\",\"play_time_prob_dist\":\"[800,0.8053,1757.8101]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7641792550227053855",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 5,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "0",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 17,
                                  "hashtag_id": "1664119477821441",
                                  "hashtag_name": "fypシ゚viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 6,
                                  "tag_id": "2",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 22,
                                  "hashtag_id": "5507",
                                  "hashtag_name": "you",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 18,
                                  "tag_id": "4",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "8181",
                                  "hashtag_name": "mexico",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 23,
                                  "tag_id": "6",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 42,
                                  "hashtag_id": "1592203205856262",
                                  "hashtag_name": "mexico🇲🇽",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "8",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7598935749577376782",
                              "handle": "babys1275",
                              "displayName": "Baby",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/0859d2bcba9120bd3fdae0a3d9ae7bb1~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f16a727b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PbgGPhB6bcTzpGE1lRpIrvsI%2Fuc%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7641849188598238477",
                            "caption": "#lanahcherry #foryoupage #fypシ #viralllllll #braeden",
                            "createdAt": "2026-05-20T05:58:01.000Z",
                            "url": "https://www.tiktok.com/@clipziesss/video/7641849188598238477",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/oYf5NzVADDBE9ygCqNDfSqIWDIEwuTRKUFOE4y~tplv-tiktokx-origin.image?dr=1347&refresh_token=052aeab4&x-expires=1779343200&x-signature=pWQzU8Ao3cCji0gTn6OQwBy%2Fneg%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 7040,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 3912,
                              "likes": 189,
                              "comments": 2,
                              "shares": 0,
                              "saves": 10
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/854e11d3b2fed9383661bb3eb738e436/6a0ea810/video/tos/useast5/tos-useast5-pve-0068-tx/osE75aREIDAfWEUNOqBgyOCySBFwfTDDUdAVjq/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1047&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NTs5Ozo0aDVmM2Q6OjplZEBpM3ltcG85cjhuOzMzZzczNEAyYmI0NmNhXy0xM2FeYzZgYSM0Zl8tMmRjbDNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b0000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/29ba086209d532c1b99ab575d4745c12/6a0ea810/video/tos/useast5/tos-useast5-ve-0068c002-tx/oYlWNAlupkf5zIQUEGLeHCA78TZfg4gFjDGUIr/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1129&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZWZlM2g4ZjU5Zjs4OjQ0OUBpM3ltcG85cjhuOzMzZzczNEAuNDMtMl8zNTIxMWIvNDRfYSM0Zl8tMmRjbDNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b0000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 264,
                                "author": "もつ",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5d055501&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DI7njIWHVTEXkoK8JFVEK4GM7Nc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1268b377&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RSEE2%2BrJAvMUDATkZzRYVbdiFfo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0c7c244f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Pth9FGQ6RjPc8%2FVAJqMYnOhWKmw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=690bd1b7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=NeSakCChV6vs82PjZ47SzHTozuY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0bb5a9f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gGFtNfzq2yM1nCHYVKx46QmcEPo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3d05728d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yeLdRgk79AS1RpsLGm3ekcNoyGk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1589197241,
                                "dmv_auto_show": false,
                                "duration": 264,
                                "duration_high_precision": {
                                  "audition_duration_precision": 264,
                                  "duration_precision": 264,
                                  "shoot_duration_precision": 264,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":263.7,\"amplitude_peak\":0.58738863,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df6a8647f1674827a7265731b09bb395\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ebad36622b73474ca47f02f72aff1390\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/517cb772e7d84919bf25eee2dd3defd2\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/661a5ed1460f4560850f354961d9bba1\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-23.60002,\"music_vid\":\"v10ad6090000c0ctdgmumpb84atodiig\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6817179217642424000,
                                "id_str": "6817179217642424321",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "もつ",
                                  "chorus_info": {
                                    "duration_ms": 15744,
                                    "start_ms": 215424
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 264000,
                                  "h5_url": "",
                                  "id": "6817179217562699778",
                                  "performers": null,
                                  "title": "Nocturne (Chopin) calm piano solo"
                                },
                                "meme_song_info": {},
                                "mid": "6817179217642424321",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4db859ecb9224c48b380e46f44eef8a1",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4db859ecb9224c48b380e46f44eef8a1"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 264,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/25b8617294ec423ea68222815e36068a",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/25b8617294ec423ea68222815e36068a"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  151
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  2
                                ],
                                "title": "Nocturne (Chopin) calm piano solo",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": [
                                {
                                  "actions": [
                                    {
                                      "action_type": 1,
                                      "icon": {
                                        "height": 720,
                                        "uri": "tiktok-obj/28px_primary_create_onDark3x.png",
                                        "url_list": [
                                          "https://p16-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                          "https://p19-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                          "https://p16-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.jpeg?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474"
                                        ],
                                        "url_prefix": null,
                                        "width": 720
                                      },
                                      "schema": "shoot"
                                    }
                                  ],
                                  "anchor_strong": null,
                                  "component_key": "anchor_ucg_template",
                                  "description": "Templates",
                                  "extra": {
                                    "music_id": "6817179217642424321",
                                    "sub_type": "ugc",
                                    "dispatch_type": "ugc_create",
                                    "nle_summary": "{\"slots\":\"[{\\\"uuid\\\": \\\"177925505299013513673879960\\\", \\\"type\\\": \\\"video\\\", \\\"description\\\": \\\"\\\", \\\"starttime\\\": 0.0, \\\"endtime\\\": 4.152704, \\\"source\\\": \\\"\\\", \\\"clip_start\\\": 939.473472, \\\"clip_end\\\": 943.626176, \\\"volume\\\": 1.0, \\\"crop\\\": [[-1.0, -0.8040757775306702], [-1.0, 0.8198586106300354], [0.9992077350616455, 0.8198586106300354], [0.9992077350616455, -0.8040757775306702]], \\\"width\\\": 640, \\\"height\\\": 1280, \\\"origin_material_type\\\": \\\"video\\\", \\\"limit_material_type\\\": 0}, {\\\"uuid\\\": \\\"177925654855774313723063192\\\", \\\"type\\\": \\\"audio\\\", \\\"description\\\": \\\"\\\", \\\"starttime\\\": 0.0, \\\"endtime\\\": 6.972108, \\\"source\\\": \\\"urs://music_resource?clip_id=6817179217642424321\\\", \\\"clip_start\\\": 0.0, \\\"clip_end\\\": 6.972108, \\\"volume\\\": 0.3265308141708374}, {\\\"uuid\\\": \\\"177925637857574113723068952\\\", \\\"type\\\": \\\"video\\\", \\\"description\\\": \\\"\\\", \\\"starttime\\\": 4.152704, \\\"endtime\\\": 5.803023, \\\"source\\\": \\\"\\\", \\\"clip_start\\\": 943.626176, \\\"clip_end\\\": 944.946432, \\\"volume\\\": 1.0, \\\"crop\\\": [[-0.584089457988739, -0.15769262611865997], [-0.584089457988739, 0.5385208129882812], [0.2945679724216461, 0.5385208129882812], [0.2945679724216461, -0.15769262611865997]], \\\"width\\\": 640, \\\"height\\\": 1280, \\\"origin_material_type\\\": \\\"video\\\", \\\"limit_material_type\\\": 0}, {\\\"uuid\\\": \\\"177925652025393413676776856\\\", \\\"type\\\": \\\"video\\\", \\\"description\\\": \\\"\\\", \\\"starttime\\\": 5.803023, \\\"endtime\\\": 6.972111, \\\"source\\\": \\\"\\\", \\\"clip_start\\\": 944.946432, \\\"clip_end\\\": 946.11552, \\\"volume\\\": 1.0, \\\"crop\\\": [[-1.0, -0.7328014969825745], [-1.0, 0.8519195318222046], [0.999326765537262, 0.8519195318222046], [0.999326765537262, -0.7328014969825745]], \\\"width\\\": 640, \\\"height\\\": 1280, \\\"origin_material_type\\\": \\\"video\\\", \\\"limit_material_type\\\": 0}]\",\"ratio\":0.5625,\"duration\":6972,\"alignmode\":\"\",\"width\":0,\"height\":0,\"features\":[\"CLIP\",\"E\",\"CROP_4\",\"CPS_EF\",\"T_Base\",\"BALANCED_GAIN\",\"AUVOLUME\",\"MULTIPLE_FILTERS\",\"SWING\",\"CB0\"],\"featurebits\":[24625,540704,130],\"resourceinfo\":\"\",\"effectinfo\":\"\"}",
                                    "origin_video_id": "7641849188598238477",
                                    "nle_extra": "{\"ai_template_func_list\":\"\"}",
                                    "author_id": "7454456183751017518",
                                    "tags": "",
                                    "music_post_unavailable": "false",
                                    "icon": "https://lf16-effectcdn.byteeffecttos-g.com/obj/ies-material-resource-us/17f92ad17a68a32d7dd2464ac8fbdfdc",
                                    "title": "",
                                    "template_used_functions": "change_video_speed,edit_video_length,crop_video,filter,split_video"
                                  },
                                  "icon": {
                                    "height": 720,
                                    "uri": "tiktok-obj/20px_anchor_TemplatesCards3x.png",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p19-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.jpeg?biz_tag=anchor.ucg_template&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "id": "7641849126530891790",
                                  "keyword": "Try TikTok template",
                                  "log_extra": "{\"anchor_id\":\"7641849126530891790\",\"anchor_name\":\"Try TikTok template\",\"anchor_type\":\"ugc_template\",\"has_friends_info\":\"0\"}",
                                  "schema": "",
                                  "thumbnail": {
                                    "height": 720,
                                    "uri": "tiktok-obj/64px_anchor_TemplatesCards3x.png",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/64px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                      "https://p19-common.tiktokcdn-eu.com/tiktok-obj/64px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/64px_anchor_TemplatesCards3x.png~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "type": 65
                                },
                                {
                                  "actions": [
                                    {
                                      "action_type": 2,
                                      "icon": {
                                        "height": 720,
                                        "uri": "https://p19-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=57d7afb6&shcp=d05b14bd&idc=no1a",
                                        "url_list": [
                                          "https://p19-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.filter&dr=10423&idc=no1a&ps=933b5bde&shcp=d05b14bd&shp=57d7afb6&t=4d5b0474"
                                        ],
                                        "url_prefix": null,
                                        "width": 720
                                      },
                                      "schema": "aweme://openShoot"
                                    }
                                  ],
                                  "anchor_strong": null,
                                  "component_key": "anchor_filter",
                                  "description": "Filter",
                                  "extra": {
                                    "title": "Quality",
                                    "resource_id": 7367114175325148000,
                                    "third_id": "3658772634"
                                  },
                                  "general_type": 1,
                                  "icon": {
                                    "height": 720,
                                    "uri": "tiktok-obj/Filter.png",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/Filter.png~tplv-tiktokx-origin.image?biz_tag=anchor.filter&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p19-common.tiktokcdn-eu.com/tiktok-obj/Filter.png~tplv-tiktokx-origin.image?biz_tag=anchor.filter&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/Filter.png~tplv-tiktokx-origin.jpeg?biz_tag=anchor.filter&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "id": "3658772634",
                                  "keyword": "Filter · Quality",
                                  "log_extra": "{\"anchor_id\":\"7595013317815879710\",\"anchor_name\":\"Quality\",\"anchor_type\":\"ANCHOR_TT_FILTER\"}",
                                  "thumbnail": {
                                    "height": 64,
                                    "uri": "https://lf16-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/62b11f930a9ea23ef439e537740fcd4c",
                                    "url_list": [
                                      "https://lf16-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/62b11f930a9ea23ef439e537740fcd4c"
                                    ],
                                    "url_prefix": null,
                                    "width": 64
                                  },
                                  "type": 106
                                }
                              ],
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": [
                                  {
                                    "action_id": "share_to_story",
                                    "code": 1,
                                    "extra": "218",
                                    "show_type": 0
                                  },
                                  {
                                    "action_id": "create_sticker",
                                    "code": 1,
                                    "extra": "216",
                                    "show_type": 1,
                                    "toast_msg": "Create sticker isn’t available for this video"
                                  }
                                ],
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "lanahcherry",
                                  "cid": "7412102842556612616",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=7412102842556612616",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #lanahcherry on TikTok!",
                                    "share_desc_info": "Check out #lanahcherry on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: lanahcherry",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/lanahcherry?_r=1&name=lanahcherry&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=7412102842556612616&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0005112474437627812}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": "[{\"transform_y\":-0.24279999732971191,\"scale\":1.0513,\"text_str\":\"“I don’t have a man…”??\",\"font_resource_id\":\"6792500966827495950\",\"voice_resource_id\":\"\",\"stream_speaker_id\":\"\",\"start_y\":0.0824,\"speaker_id\":\"\",\"start_time\":0,\"text_style\":0,\"transform_x\":0,\"rotation\":0,\"start_x\":0.8012,\"end_time\":-1,\"color\":-1,\"layer\":0,\"is_voice_clone\":false,\"align\":0,\"bg_mode\":4,\"border_color\":\"0x000000\"}]"
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "high_quality_upload",
                                  "filter",
                                  "select_music",
                                  "editor_pro",
                                  "text"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7641849188598238477",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7641849188598238000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 1,
                                "allow_create_sticker": {
                                  "disable_toast": "Create sticker isn’t available for this video",
                                  "status": 1
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "“I don’t have a man…”😏😏",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.06306818181818183,
                                    "source_width": 0.7348484848484848,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":7072.111,\"y\":0.6214,\"h\":0.0824,\"start_time\":0,\"isRatioCoord\":true,\"r\":0,\"w\":0.8012,\"s\":1.0513}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": true,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 264,
                                "author": "もつ",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5d055501&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DI7njIWHVTEXkoK8JFVEK4GM7Nc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1268b377&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RSEE2%2BrJAvMUDATkZzRYVbdiFfo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0c7c244f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Pth9FGQ6RjPc8%2FVAJqMYnOhWKmw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=690bd1b7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=NeSakCChV6vs82PjZ47SzHTozuY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0bb5a9f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gGFtNfzq2yM1nCHYVKx46QmcEPo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3d05728d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yeLdRgk79AS1RpsLGm3ekcNoyGk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1589197241,
                                "dmv_auto_show": false,
                                "duration": 264,
                                "duration_high_precision": {
                                  "audition_duration_precision": 264,
                                  "duration_precision": 264,
                                  "shoot_duration_precision": 264,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":263.7,\"amplitude_peak\":0.58738863,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df6a8647f1674827a7265731b09bb395\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ebad36622b73474ca47f02f72aff1390\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/517cb772e7d84919bf25eee2dd3defd2\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/661a5ed1460f4560850f354961d9bba1\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-23.60002,\"music_vid\":\"v10ad6090000c0ctdgmumpb84atodiig\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6817179217642424000,
                                "id_str": "6817179217642424321",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "もつ",
                                  "chorus_info": {
                                    "duration_ms": 15744,
                                    "start_ms": 215424
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/43faa110cb7545508bcb8448e005da2d.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 264000,
                                  "h5_url": "",
                                  "id": "6817179217562699778",
                                  "performers": null,
                                  "title": "Nocturne (Chopin) calm piano solo"
                                },
                                "meme_song_info": {},
                                "mid": "6817179217642424321",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4db859ecb9224c48b380e46f44eef8a1",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4db859ecb9224c48b380e46f44eef8a1"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 264,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/25b8617294ec423ea68222815e36068a",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/25b8617294ec423ea68222815e36068a"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  151
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  2
                                ],
                                "title": "Nocturne (Chopin) calm piano solo",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 6972,
                              "music_selected_from": "edit_page_recent",
                              "music_title_style": 1,
                              "music_volume": "16.326540",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"8\">#lanahcherry</h> <h id=\"17\">#foryoupage</h> <h id=\"30\">#fypシ</h> <h id=\"49\">#viralllllll</h> <h id=\"74\">#braeden</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "7412102842556612616",
                                    "hashtag_name": "lanahcherry",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "17",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "30",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "67876644",
                                    "hashtag_name": "viralllllll",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "49",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1908307",
                                    "hashtag_name": "braeden",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "74",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out clipziesss's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out clipziesss’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out clipziesss’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@clipziesss/video/7641849188598238477?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7641849188598238477&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "video_60",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -1.2220917562064506e-05, \\\"2\\\": -0.0002906338003934487, \\\"-1\\\": -4.437059320192376e-05}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0003216771379375775, \\\"2\\\": 0.0006332407057484438, \\\"-1\\\": 2.4523521143713472e-05}\",\"PACK_VOD:vod_diversity_tier3\":\"10012\",\"pillar_box_video_info\":\"{\\\"Bottom\\\":4.170000076293945,\\\"Left\\\":0,\\\"Right\\\":0,\\\"Version\\\":\\\"v2.0\\\",\\\"Top\\\":4.170000076293945}\",\"play_time_prob_dist\":\"[800,0.904,1177.8784]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7641849188598238477",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 12,
                                  "hashtag_id": "7412102842556612616",
                                  "hashtag_name": "lanahcherry",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "8",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "17",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "30",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 43,
                                  "hashtag_id": "67876644",
                                  "hashtag_name": "viralllllll",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "49",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 52,
                                  "hashtag_id": "1908307",
                                  "hashtag_name": "braeden",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 44,
                                  "tag_id": "74",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "en",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7454456183751017518",
                              "handle": "clipziesss",
                              "displayName": "clipziesss",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/9914f63e2336c3005ed28b9cec8b73d0~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0bb5a9f1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gGFtNfzq2yM1nCHYVKx46QmcEPo%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7073828685526076714",
                            "caption": "I thought it was real😱#viral #foryou #ideatimes #fypシ #wow #omg #fy",
                            "createdAt": "2022-03-11T13:08:08.000Z",
                            "url": "https://www.tiktok.com/@ideatimes/video/7073828685526076714",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/d289dd21c7e847529ce0d560018cde30_1647004088~tplv-tiktokx-origin.image?dr=1347&refresh_token=04a2271b&x-expires=1779343200&x-signature=YVvd92o%2FHQaQEltyZojaAWN8Mgg%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 9171,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 31348062,
                              "likes": 654377,
                              "comments": 6302,
                              "shares": 28051,
                              "saves": 8668
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/2e8532796d2cc9b00cadc01246ab15b2/6a0ea812/video/tos/maliva/tos-maliva-ve-0068c799-us/07521856d44d41c09dcd00a3a2172151/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1325&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=OWk8NjY7Nmg7aGg4OGdnZkBpajNrNTQ6ZmpuOzMzZzczNEAuYGFfM14xNWAxXjU2Y19gYSM0ZjNjcjRfZmlgLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/4ce551c4b003dcdbce229ec3ec13624b/6a0ea812/video/tos/maliva/tos-maliva-ve-0068c799-us/e001f78e93a84cf288bad9c3e9878794/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1278&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NzdpZjo3OGY6Mzk7NjhnOUBpajNrNTQ6ZmpuOzMzZzczNEA2X2EtLjEzXy0xXy0tNS00YSM0ZjNjcjRfZmlgLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                },
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "Viral",
                                  "cid": "20884",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "¡descubre las canciones en tendencia! 🔥➡️ https://bit.ly/TendenciasTikTok_LATAM",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "musically-maliva-obj/4321dd2ed3acc737461c4254f0c55add.png",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=20884",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #viral on TikTok!",
                                    "share_desc_info": "Check out #viral on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: viral",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/viral?_r=1&name=viral&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=20884&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00020103316115682048}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7073828685526076714",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 9009,
                              "music_selected_from": "edit_page_recommend",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "I thought it was real😱<h id=\"5763\">#viral</h> <h id=\"7386\">#foryou</h> <h id=\"6047\">#ideatimes</h> <h id=\"8399\">#fypシ</h> <h id=\"3588\">#wow</h> <h id=\"2205\">#omg</h> <h id=\"9439\">#fy</h>",
                                "text_extra": [
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5763",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7386",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1704977768903686",
                                    "hashtag_name": "ideatimes",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6047",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8399",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7353",
                                    "hashtag_name": "wow",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3588",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1603",
                                    "hashtag_name": "omg",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2205",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "153828",
                                    "hashtag_name": "fy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9439",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 291,
                                "item_total": 798,
                                "mix_id": "7026480684818615087",
                                "name": "Trending"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out IdeaTime⭐Everywhere😎's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out IdeaTime⭐Everywhere😎’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out IdeaTime⭐Everywhere😎’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@ideatimes/video/7073828685526076714?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7073828685526076714&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.9936,2147.0163]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7073828685526076714",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"lvl1_category_id\":\"\",\"word_type_version_map\":\"\",\"hot_level\":\"0\",\"sug_user_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"video_id\":\"\",\"visualize_sug_product_id\":\"\",\"word_type_list\":\"\",\"ecom_intent\":\"0\",\"lvl3_cate_list\":\"\",\"ecom_trigger_info\":\"\",\"is_ramandan_promotion\":\"\",\"predict_ctr_score\":0.0036691153294161555,\"generate_time\":\"0\",\"poi_card_id_list\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall\",\"is_time_sensitive\":\"0\",\"ecom_trigger_info_map\":\"\",\"words_type_to_dmp_list\":\"\"}",
                                        "word": "idea time",
                                        "word_id": "2937815724607605216",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"video_id\":\"\",\"word_type_version_map\":\"\",\"predict_ctr_score\":0.007381370432037036,\"is_time_sensitive\":\"0\",\"visualize_sug_product_id\":\"\",\"lvl3_cate_list\":\"\",\"poi_card_id_list\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall\",\"hot_level\":\"0\",\"word_type_list\":\"\",\"generate_time\":\"0\",\"ecom_trigger_info_map\":\"\",\"ecom_trigger_info\":\"\",\"words_type_to_voucher_ids\":\"\",\"is_ramandan_promotion\":\"\",\"sug_user_id\":\"\",\"lvl1_category_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_intent\":\"0\"}",
                                        "word": "idea time",
                                        "word_id": "2937815724607605216",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 29,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 23,
                                  "tag_id": "5763",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 37,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 30,
                                  "tag_id": "7386",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 48,
                                  "hashtag_id": "1704977768903686",
                                  "hashtag_name": "ideatimes",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 38,
                                  "tag_id": "6047",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 54,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 49,
                                  "tag_id": "8399",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 59,
                                  "hashtag_id": "7353",
                                  "hashtag_name": "wow",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 55,
                                  "tag_id": "3588",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 64,
                                  "hashtag_id": "1603",
                                  "hashtag_name": "omg",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 60,
                                  "tag_id": "2205",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 68,
                                  "hashtag_id": "153828",
                                  "hashtag_name": "fy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 65,
                                  "tag_id": "9439",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": true,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 0,
                                "share_type": 1,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6983289086387782661",
                              "handle": "ideatimes",
                              "displayName": "IdeaTime⭐Everywhere😎",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7313408426648797226~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=823076dc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=8x5x0ShOuPD2gBooMkypIv9sPWs%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7612004657069640990",
                            "caption": "#fyp #makemefamous #fypシ #content #fffffffffffyyyyyyyyyyypppppppppppp",
                            "createdAt": "2026-02-28T19:46:09.000Z",
                            "url": "https://www.tiktok.com/@user071612000/video/7612004657069640990",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast8-p-0068-tx2/osdhC6IgQIAThfRezFLqNu6ocfv7VIAjGCojGI~tplv-tiktokx-dmt-logom:tos-useast8-i-0068-tx2/o0DGAqFeQEWRnIEJffjiI7zIIvx2oAGmA1AAFT.image?dr=9230&refresh_token=c8ed4a99&x-expires=1779343200&x-signature=kynGdlsVPTCJem8vQFjkC0zVS4Q%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 24939,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 197724,
                              "likes": 18965,
                              "comments": 26,
                              "shares": 684,
                              "saves": 2065
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/c5b2869d2a5b5e969d0a38d68f9b67c6/6a0ea821/video/tos/maliva/tos-maliva-ve-0068c799-us/ocAkRpgmfABOQ5DwEhVjXREAeFRm0osC6VEIEn/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=824&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=OzM1NWk1OjM4NWdpZWVnN0BpajN1aWw5cnZuOTMzaTczNEAwMTY2NC8xNjIxMjEwMy01YSNnaDQxMmQ0X2VhLS1kMTJzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/c5aa83beb9b14ff39cd4fd55db518d01/6a0ea821/video/tos/maliva/tos-maliva-ve-0068c799-us/ogRELEnDAACBeX6Ff1pREQAkIRj5hoEg0w6GzV/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=929&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NWg5aTc5NTZlZjM0Nmg7ZkBpajN1aWw5cnZuOTMzaTczNEBjYmIyX2MyNjYxLjM1MC9eYSNnaDQxMmQ0X2VhLS1kMTJzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "the feeling of...",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=b446fdee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t9BEMg%2F3bwqBGq6p6UiqTqh2Oak%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=e7099a4a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qUPepvcnJP7hwS%2BKwGpNTwnY0Yg%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=389ee2de&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=99w8EbME86KGYSzgC0r%2FgYFd8Os%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "tmcbmpz",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "tomcbumpz",
                                    "sec_uid": "MS4wLjABAAAAR6ZKDDqUU9jt90vgQa-3VKl365tPPFEKuj_pmB6x4oJ5zDfPK1db3ndw7HSMtwY1",
                                    "status": 1,
                                    "uid": "6773881268544488454"
                                  },
                                  {
                                    "avatar": {
                                      "uri": "tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=3c4697c2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jo8ZMwFHh3JKIbJARqNfEzh%2FFjo%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=cf9ebcd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vxuY891cWYoVf1R2hpQZ2E7AAtI%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=08516ef2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Wth7tSIiaupaSckxzyBmlF43Hjs%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "drezzdon",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "дрездон",
                                    "sec_uid": "MS4wLjABAAAAKfcz2DZaL0zS8HBLRwq3Ti7INPGWtfcOhv4phpzKf03Z-fM1j86J9RyAD0ZbqAeN",
                                    "status": 1,
                                    "uid": "7276728957456909354"
                                  }
                                ],
                                "audition_duration": 50,
                                "author": "tomcbumpz & drezzdon",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7283c46a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=xFZ64KOSl4MH%2FjyhAQqhYYc6674%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=53496797&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PAskpKclwtgbUSKTQT6BKyQ29vw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c9e714df&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=liqPimoy7C3hAASvlQdsHZN7JvM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=9d4e8474&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gqnbAfjQ%2BBI3n6iFgIZ4CbUe85k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1d03901e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BK6JfW%2Fa5UjP7n1SQmfzEJb%2FDig%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93aa5c4b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=QiwL15OSqSMhTo2PZJqvbwr5fT4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1745111078,
                                "dmv_auto_show": false,
                                "duration": 50,
                                "duration_high_precision": {
                                  "audition_duration_precision": 50,
                                  "duration_precision": 50,
                                  "shoot_duration_precision": 50,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0.90340483,\"beats\":{\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUBt0foekgWZDIAIAxzECVBNjAHFI9CGocwcAA\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ocGGeAvAIACAIBLAQVNFWjReMgNzCraPeIBxu4\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUAIAj4BInyaEcPCdeWGeBezgrFLAARAA4tQIM\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-10.473928,\"music_vid\":\"v10ad6g50000d024g8fog65s68g01530\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7495187799755295000,
                                "id_str": "7495187799755294721",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "tomcbumpz & drezzdon",
                                  "chorus_info": {
                                    "duration_ms": 59136,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 110000,
                                  "h5_url": "",
                                  "id": "7495191347017140240",
                                  "performers": null,
                                  "title": "i had a feeling"
                                },
                                "meme_song_info": {},
                                "mid": "7495187799755294721",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1746144000,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/oQwXAiiA0A0OSlQ8BBAIw6MAiMQIoMfsCWiMEG",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/oQwXAiiA0A0OSlQ8BBAIw6MAiMQIoMfsCWiMEG"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 60,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 50,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUXtBa7QKICQyAenS4EiSfAc4gE1RBDDoIJZAF",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUXtBa7QKICQyAenS4EiSfAc4gE1RBDDoIJZAF"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  150
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  9
                                ],
                                "title": "i had a feeling",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 1,
                                "type": 1
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyp",
                                  "cid": "229207",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=229207",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyp on TikTok!",
                                    "share_desc_info": "Check out #fyp on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyp",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp?_r=1&name=fyp&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=229207&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0001314964293661872}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": "[{\"start_x\":0.4071,\"color\":-5994149,\"layer\":0,\"end_time\":-1,\"border_color\":\"0xFFFFFF\",\"align\":0,\"speaker_id\":\"\",\"stream_speaker_id\":\"\",\"text_str\":\"when i find something out but im not shocked because \",\"transform_y\":-0.11440002918243408,\"start_time\":0,\"scale\":0.4422,\"bg_mode\":1,\"rotation\":0,\"transform_x\":0.25380003452301025,\"start_y\":0.1348,\"text_style\":0,\"is_voice_clone\":false,\"font_resource_id\":\"6792500966827495950\",\"voice_resource_id\":\"\"}]"
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "live",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "text",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7612004657069640990",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7612004657069641000
                                ],
                                "GroupdIdList1": [
                                  7612004657069641000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "when i find something out but im not shocked because ",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.2875,
                                    "source_width": 0.8897435897435897,
                                    "text_color": "#FFA4895B",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.6269,\"end_time\":25016.665,\"y\":0.5572,\"h\":0.1348,\"start_time\":0,\"isRatioCoord\":true,\"r\":0,\"w\":0.4071,\"s\":0.4422}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": true,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "the feeling of...",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=b446fdee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t9BEMg%2F3bwqBGq6p6UiqTqh2Oak%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=e7099a4a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qUPepvcnJP7hwS%2BKwGpNTwnY0Yg%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=389ee2de&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=99w8EbME86KGYSzgC0r%2FgYFd8Os%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "tmcbmpz",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "tomcbumpz",
                                    "sec_uid": "MS4wLjABAAAAR6ZKDDqUU9jt90vgQa-3VKl365tPPFEKuj_pmB6x4oJ5zDfPK1db3ndw7HSMtwY1",
                                    "status": 1,
                                    "uid": "6773881268544488454"
                                  },
                                  {
                                    "avatar": {
                                      "uri": "tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=3c4697c2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jo8ZMwFHh3JKIbJARqNfEzh%2FFjo%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=cf9ebcd8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vxuY891cWYoVf1R2hpQZ2E7AAtI%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/66cc40630188f0aa06ed39ceced77668~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=08516ef2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Wth7tSIiaupaSckxzyBmlF43Hjs%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "drezzdon",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "дрездон",
                                    "sec_uid": "MS4wLjABAAAAKfcz2DZaL0zS8HBLRwq3Ti7INPGWtfcOhv4phpzKf03Z-fM1j86J9RyAD0ZbqAeN",
                                    "status": 1,
                                    "uid": "7276728957456909354"
                                  }
                                ],
                                "audition_duration": 50,
                                "author": "tomcbumpz & drezzdon",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7283c46a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=xFZ64KOSl4MH%2FjyhAQqhYYc6674%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=53496797&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PAskpKclwtgbUSKTQT6BKyQ29vw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c9e714df&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=liqPimoy7C3hAASvlQdsHZN7JvM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=9d4e8474&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gqnbAfjQ%2BBI3n6iFgIZ4CbUe85k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1d03901e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BK6JfW%2Fa5UjP7n1SQmfzEJb%2FDig%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/e1a5345e395dfc24ec7a806dc4bb1c31~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93aa5c4b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=QiwL15OSqSMhTo2PZJqvbwr5fT4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1745111078,
                                "dmv_auto_show": false,
                                "duration": 50,
                                "duration_high_precision": {
                                  "audition_duration_precision": 50,
                                  "duration_precision": 50,
                                  "shoot_duration_precision": 50,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0.90340483,\"beats\":{\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUBt0foekgWZDIAIAxzECVBNjAHFI9CGocwcAA\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ocGGeAvAIACAIBLAQVNFWjReMgNzCraPeIBxu4\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUAIAj4BInyaEcPCdeWGeBezgrFLAARAA4tQIM\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-10.473928,\"music_vid\":\"v10ad6g50000d024g8fog65s68g01530\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7495187799755295000,
                                "id_str": "7495187799755294721",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "tomcbumpz & drezzdon",
                                  "chorus_info": {
                                    "duration_ms": 59136,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEmw77SMB2QWi9o0saRAAbmSBiEgEAiEAAAAfB.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 110000,
                                  "h5_url": "",
                                  "id": "7495191347017140240",
                                  "performers": null,
                                  "title": "i had a feeling"
                                },
                                "meme_song_info": {},
                                "mid": "7495187799755294721",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1746144000,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/oQwXAiiA0A0OSlQ8BBAIw6MAiMQIoMfsCWiMEG",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/oQwXAiiA0A0OSlQ8BBAIw6MAiMQIoMfsCWiMEG"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 60,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 50,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUXtBa7QKICQyAenS4EiSfAc4gE1RBDDoIJZAF",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oUXtBa7QKICQyAenS4EiSfAc4gE1RBDDoIJZAF"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  150
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  9
                                ],
                                "title": "i had a feeling",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 24916,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 1,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"66\">#fyp</h> <h id=\"73\">#makemefamous</h> <h id=\"86\">#fypシ</h> <h id=\"105\">#content</h> <h id=\"130\">#fffffffffffyyyyyyyyyyypppppppppppp</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "66",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42733",
                                    "hashtag_name": "makemefamous",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "73",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "86",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "153587",
                                    "hashtag_name": "content",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "105",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1692170121508869",
                                    "hashtag_name": "fffffffffffyyyyyyyyyyypppppppppppp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "130",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out 𝓎.'s video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out 𝓎.’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out 𝓎.’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@user071612000/video/7612004657069640990?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7612004657069640990&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501095830658745, \\\"1\\\": 4.5010933219333165, \\\"0\\\": 4.501071682566005}\",\"PACK_VOD:audio_loudness_info_ios\":\"{\\\"1\\\": 0.0002968604523306782, \\\"2\\\": 0.0006060498072687343, \\\"-1\\\": 2.9107127305046327e-06}\",\"PACK_VOD:audio_meta\":\"{\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.96],\\\"drr\\\":1.9,\\\"rcd\\\":[0],\\\"mp\\\":-6.78,\\\"be\\\":[10.8,2869.3],\\\"ocf\\\":[-11.1074,-1.3845,-8.0795,-15.6791,-19.8047,-26.9316,-34.9921,-48.2204,-56.114,-60],\\\"do\\\":0.0001,\\\"il\\\":-15.6},\\\"ts\\\":[\\\"tag_01010226\\\",\\\"tag_01000100\\\",\\\"tag_01010211\\\",\\\"tag_01010229\\\",\\\"tag_01000511\\\"],\\\"trs\\\":[0.86,0.37,0.18,0.16,0.12]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10075\",\"PACK_VOD:vod_sr_class_v30_score\":\"47.001\",\"play_time_prob_dist\":\"[800,0.6993,3522.639]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7612004657069640990",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"words_type_to_dmp_list\":\"\",\"poi_card_id_list\":\"\",\"video_id\":\"\",\"generate_time\":\"0\",\"sug_user_id\":\"\",\"lvl1_category_id\":\"\",\"lvl3_cate_list\":\"\",\"is_ramandan_promotion\":\"\",\"recall_reason\":\"global_video_top_counter_recall,video_sar_top_counter_passive_recall,global_video_sar_top_counter_passive_recall\",\"predict_ctr_score\":0.008316116661908197,\"ecom_trigger_info_map\":\"\",\"hot_level\":\"0\",\"ecom_intent\":\"0\",\"word_type_list\":\"\",\"visualize_sug_product_id\":\"\",\"word_type_version_map\":\"\",\"ecom_trigger_info\":\"\",\"words_type_to_voucher_ids\":\"\",\"is_time_sensitive\":\"0\"}",
                                        "word": "when i found out something",
                                        "word_id": "6362458860320527925",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "66",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 18,
                                  "hashtag_id": "42733",
                                  "hashtag_name": "makemefamous",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "73",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 19,
                                  "tag_id": "86",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 33,
                                  "hashtag_id": "153587",
                                  "hashtag_name": "content",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "105",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 69,
                                  "hashtag_id": "1692170121508869",
                                  "hashtag_name": "fffffffffffyyyyyyyyyyypppppppppppp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 34,
                                  "tag_id": "130",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "en",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7376888307697943595",
                              "handle": "user071612000",
                              "displayName": "𝓎.",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/110cb2977204fb67f407dbb305fb7120~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0337a044&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Qam81lbWbtvQB5fhkCPSVhrHDy0%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7425979194170952993",
                            "caption": "🩷#pourtoi #foryou #voorjou #fürdich #fypシ #viral",
                            "createdAt": "2024-10-15T12:32:08.000Z",
                            "url": "https://www.tiktok.com/@anissa.amaniii/video/7425979194170952993",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-p-0037-euttp/okAUrOFIMLEfHuMOAeAIjYILxe0UqcIeGGAEgZ~tplv-tiktokx-origin.image?dr=1347&refresh_token=50eb5ddb&x-expires=1779343200&x-signature=FT9rRUq%2F8cuXj%2F6vt4fyFV0tbgU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover&item=7425979194170952993",
                            "durationMs": 35572,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 446129,
                              "likes": 49609,
                              "comments": 165,
                              "shares": 4577,
                              "saves": 4971
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/7c4c07a8040deceedc9ffa8626772fdf/6a0ea82c/video/tos/useast2a/tos-useast2a-ve-0068c001-euttp/okAUMOFIMLIfHINOAeQEjYILdeo4cCIeGGAEgZ/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1887&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NmUzNWc0Z2lmOzgzOzVmZEBpM3k7a2o5cjw5djMzZjczM0AvLTRfXzQ0XmExYDYwX2AxYSMtbS40MmRjLjRgLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 35,
                                "author": "🫀",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=44ae2a0d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GPRiFTnvH3iWUlZ6doHPBPoKOCY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=39669176&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qjbtqPoCpDLLsEVyk9%2BKILGuTA4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d06bd0d3&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=goY649IuqhlVpP98%2FtRSyUa3ag4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f153952f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=HhVQnQzuE7Iozu7XE7Ncs0MPhJ0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b007cb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1By%2Fza5%2FHgmcaS7MX%2Bk0Sk11qmM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e13b8b44&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1meTUkf7wXIFLChlb31Cx6hHuT0%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=25204466&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=irUksAfxQVuKrfuWagHLMKCLMXg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=4f8aa446&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iNLGOzc3WNvlHAR4mB39tIRK00k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=3ee86463&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fKhjPqKb60CmyCQ%2FeVAiaVfaJ5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=44ae2a0d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GPRiFTnvH3iWUlZ6doHPBPoKOCY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=39669176&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qjbtqPoCpDLLsEVyk9%2BKILGuTA4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d06bd0d3&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=goY649IuqhlVpP98%2FtRSyUa3ag4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f153952f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=HhVQnQzuE7Iozu7XE7Ncs0MPhJ0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b007cb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1By%2Fza5%2FHgmcaS7MX%2Bk0Sk11qmM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e13b8b44&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1meTUkf7wXIFLChlb31Cx6hHuT0%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1678625998,
                                "dmv_auto_show": false,
                                "duration": 35,
                                "duration_high_precision": {
                                  "audition_duration_precision": 35.552624,
                                  "duration_precision": 35.552624,
                                  "shoot_duration_precision": 35.552624,
                                  "video_duration_precision": 35.552624
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":35,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7209643718872288517,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cg6spjbc77u7jnavla5g\",\"owner_id\":7079401807151809541,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7209643710924049000,
                                "id_str": "7209643710924049157",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=eaabcdeb&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=uRFa0sTHEmmSZenJyHxo194mEac%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=ca95fe78&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=8JPxF%2Fz15w%2BwfEHj050fSLK5aDc%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=12549abe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iDkUfs1uQEpU7%2FjBsyJXNHQo8Mk%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "kouz.1",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "kouz1",
                                      "sec_uid": "MS4wLjABAAAA9Z7La65jkqxLNtprgqN7N-HYKYl51Slno4LbPec6ibS3o0lEjr3yNofjIp8hUH1G",
                                      "status": 1,
                                      "uid": "6851944789764654085"
                                    },
                                    {
                                      "avatar": {
                                        "uri": "tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=88ad76a9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=M2oD%2BfUECul0%2BXtAHIhNN9jO7K8%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=d836007a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h2FqqUZXmyRfGLCNA4SyfDWq3Mk%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=9df965c7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W2XeuPPHU5I2TKJVg%2Be5l%2BlFYbc%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "jungeli_",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": false,
                                      "is_visible": false,
                                      "nick_name": "JUNGELI",
                                      "sec_uid": "MS4wLjABAAAAegzZg5zmqYYdCq1Aw8m527rYltr7O5qYwh95esBn0ScChTA2yKx6WMHy8CTKelmf",
                                      "status": 1,
                                      "uid": "6779308162710406149"
                                    }
                                  ],
                                  "author": "Kouz1 & Jungeli",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Love (French Remix) - Sped up\"",
                                  "mixed_title": "original sound - speed.upma (Contains music from: Love (French Remix) - Sped up - Kouz1 & Jungeli)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Love (French Remix) - Sped up",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Kouz1 & Jungeli",
                                  "chorus_info": {
                                    "duration_ms": 34560,
                                    "start_ms": 52800
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 159132,
                                  "h5_url": "",
                                  "id": "7388085589284800513",
                                  "performers": null,
                                  "title": "Love (French Remix) - Sped up"
                                },
                                "meme_song_info": {},
                                "mid": "7209643710924049157",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "speed.upma",
                                "owner_id": "7079401807151809541",
                                "owner_nickname": "🫀",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7209643732704987910.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7209643732704987910.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAC881MDeWlEvrVP-CVqj55zqD3RiXfsShlWgzoxEuhamIBkVy6Ty9ERqs-az1UwFM",
                                "shoot_duration": 35,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/b70fdc7828606408dbfc0d090b13ea5a.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/b70fdc7828606408dbfc0d090b13ea5a.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - speed.upma",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 35
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "download_mask_panel": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": [
                                  {
                                    "action_id": "create_sticker",
                                    "code": 1,
                                    "extra": "216",
                                    "show_type": 1,
                                    "toast_msg": "Create sticker isn’t available for this video"
                                  },
                                  {
                                    "action_id": "share_to_story",
                                    "code": 1,
                                    "extra": "116",
                                    "show_type": 0
                                  }
                                ],
                                "share_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 1,
                                  "toast_msg": "This action isn’t allowed for this post",
                                  "transcode": 1
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "pourtoi",
                                  "cid": "2852101",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=2852101",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #pourtoi on TikTok!",
                                    "share_desc_info": "Check out #pourtoi on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: pourtoi",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/pourtoi?_r=1&name=pourtoi&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=2852101&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00036984818292466976}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 2,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "high_quality_upload",
                                  "beautify_used",
                                  "select_music",
                                  "prop"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 7423777791277092000,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7425979194170952993",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7425979194170953000
                                ],
                                "GroupdIdList1": [
                                  7425979194170953000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 1,
                                "allow_create_sticker": {
                                  "disable_toast": "Create sticker isn’t available for this video",
                                  "status": 1
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "moments_mode_info": {
                                "is_moments": 0
                              },
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 35,
                                "author": "🫀",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=44ae2a0d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GPRiFTnvH3iWUlZ6doHPBPoKOCY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=39669176&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qjbtqPoCpDLLsEVyk9%2BKILGuTA4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d06bd0d3&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=goY649IuqhlVpP98%2FtRSyUa3ag4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f153952f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=HhVQnQzuE7Iozu7XE7Ncs0MPhJ0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b007cb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1By%2Fza5%2FHgmcaS7MX%2Bk0Sk11qmM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e13b8b44&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1meTUkf7wXIFLChlb31Cx6hHuT0%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=25204466&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=irUksAfxQVuKrfuWagHLMKCLMXg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=4f8aa446&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iNLGOzc3WNvlHAR4mB39tIRK00k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=3ee86463&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fKhjPqKb60CmyCQ%2FeVAiaVfaJ5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=44ae2a0d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GPRiFTnvH3iWUlZ6doHPBPoKOCY%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=39669176&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qjbtqPoCpDLLsEVyk9%2BKILGuTA4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d06bd0d3&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=goY649IuqhlVpP98%2FtRSyUa3ag4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f153952f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=HhVQnQzuE7Iozu7XE7Ncs0MPhJ0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b007cb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1By%2Fza5%2FHgmcaS7MX%2Bk0Sk11qmM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/11bc2c7a4c24c633ad263e184d632966~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e13b8b44&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1meTUkf7wXIFLChlb31Cx6hHuT0%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1678625998,
                                "dmv_auto_show": false,
                                "duration": 35,
                                "duration_high_precision": {
                                  "audition_duration_precision": 35.552624,
                                  "duration_precision": 35.552624,
                                  "shoot_duration_precision": 35.552624,
                                  "video_duration_precision": 35.552624
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":35,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7209643718872288517,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cg6spjbc77u7jnavla5g\",\"owner_id\":7079401807151809541,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7209643710924049000,
                                "id_str": "7209643710924049157",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=eaabcdeb&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=uRFa0sTHEmmSZenJyHxo194mEac%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=ca95fe78&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=8JPxF%2Fz15w%2BwfEHj050fSLK5aDc%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/373213b518ba62e55ce25eaf84ea9c78~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=12549abe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iDkUfs1uQEpU7%2FjBsyJXNHQo8Mk%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "kouz.1",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "kouz1",
                                      "sec_uid": "MS4wLjABAAAA9Z7La65jkqxLNtprgqN7N-HYKYl51Slno4LbPec6ibS3o0lEjr3yNofjIp8hUH1G",
                                      "status": 1,
                                      "uid": "6851944789764654085"
                                    },
                                    {
                                      "avatar": {
                                        "uri": "tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=88ad76a9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=M2oD%2BfUECul0%2BXtAHIhNN9jO7K8%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=d836007a&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h2FqqUZXmyRfGLCNA4SyfDWq3Mk%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/ab6b7c9468969136cf705a28713f9fdc~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=9df965c7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W2XeuPPHU5I2TKJVg%2Be5l%2BlFYbc%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "jungeli_",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": false,
                                      "is_visible": false,
                                      "nick_name": "JUNGELI",
                                      "sec_uid": "MS4wLjABAAAAegzZg5zmqYYdCq1Aw8m527rYltr7O5qYwh95esBn0ScChTA2yKx6WMHy8CTKelmf",
                                      "status": 1,
                                      "uid": "6779308162710406149"
                                    }
                                  ],
                                  "author": "Kouz1 & Jungeli",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Love (French Remix) - Sped up\"",
                                  "mixed_title": "original sound - speed.upma (Contains music from: Love (French Remix) - Sped up - Kouz1 & Jungeli)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Love (French Remix) - Sped up",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Kouz1 & Jungeli",
                                  "chorus_info": {
                                    "duration_ms": 34560,
                                    "start_ms": 52800
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o0AwEiJK2oYLr1BAXU5ZNYWAAUC3Cz5lAEiv8.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 159132,
                                  "h5_url": "",
                                  "id": "7388085589284800513",
                                  "performers": null,
                                  "title": "Love (French Remix) - Sped up"
                                },
                                "meme_song_info": {},
                                "mid": "7209643710924049157",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "speed.upma",
                                "owner_id": "7079401807151809541",
                                "owner_nickname": "🫀",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7209643732704987910.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7209643732704987910.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAC881MDeWlEvrVP-CVqj55zqD3RiXfsShlWgzoxEuhamIBkVy6Ty9ERqs-az1UwFM",
                                "shoot_duration": 35,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/b70fdc7828606408dbfc0d090b13ea5a.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/b70fdc7828606408dbfc0d090b13ea5a.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - speed.upma",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 35
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 35566,
                              "music_selected_from": "single_song",
                              "music_title_style": 1,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "🩷<h id=\"1\">#pourtoi</h> <h id=\"8\">#foryou</h> <h id=\"21\">#voorjou</h> <h id=\"40\">#fürdich</h> <h id=\"65\">#fypシ</h> <h id=\"96\">#viral</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "2852101",
                                    "hashtag_name": "pourtoi",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "6830763",
                                    "hashtag_name": "voorjou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "21",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5457735",
                                    "hashtag_name": "fürdich",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "40",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "65",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "96",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "DE",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out أنيسة✨'s video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out أنيسة✨’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out أنيسة✨’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@anissa.amaniii/video/7425979194170952993?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7425979194170952993&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "video_60",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10071\",\"play_time_prob_dist\":\"[800,0.6028,3948.3287]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7425979194170952993",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 10,
                                  "hashtag_id": "2852101",
                                  "hashtag_name": "pourtoi",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 2,
                                  "tag_id": "1",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 18,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 11,
                                  "tag_id": "8",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 27,
                                  "hashtag_id": "6830763",
                                  "hashtag_name": "voorjou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 19,
                                  "tag_id": "21",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 36,
                                  "hashtag_id": "5457735",
                                  "hashtag_name": "fürdich",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 28,
                                  "tag_id": "40",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 42,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 37,
                                  "tag_id": "65",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 49,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 43,
                                  "tag_id": "96",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7250893481765241883",
                              "handle": "anissa.amaniii",
                              "displayName": "أنيسة✨",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/941357c39fdcd9276d5b43aaea19b2cf~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=7195c10e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LqbWSQfHeXkRXRdqM%2BqWjcazadY%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7334590701495209218",
                            "caption": "#fypシ #pppppppppppppppp #fyp #🥹🥹🥹🥹🥹❤️‍",
                            "createdAt": "2024-02-12T05:58:04.000Z",
                            "url": "https://www.tiktok.com/@bronorn58/video/7334590701495209218",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-p-0037/ogEAjIYy8sBxmM8UitAvBEZVsmJLbAsi2RicP~tplv-tiktokx-origin.image?dr=1347&refresh_token=63f3c89a&x-expires=1779343200&x-signature=8jmYpvir1n4eE6II%2FKbIeF9x%2F30%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 255500,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 857,
                              "likes": 118,
                              "comments": 15,
                              "shares": 3,
                              "saves": 12
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/587bb808626a564481a357e50c861ffe/6a0ea908/video/tos/alisg/tos-alisg-pve-0037c001/owqRlyEOYC5G1TQqEZHwcVgQDfAeFBhiWBilbI/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1066&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZmQ4NmZkOThlOTRpNmY8M0BpamtqZWw5cnZ1cTMzODczNEA2NTYuLTM0NTAxMzMyYF8uYSNeajJyMmQ0MDFgLS1kMS1zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00058000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/0ce18f440f51480af14a1d4e0c7c298f/6a0ea908/video/tos/alisg/tos-alisg-pve-0037c001/oQ6YsLZ8bJRW3iiPUxoQcysBVAs8EVIQQEBAm/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=526&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=MzdkPDY4NDc2NTw1NTg4N0BpamtqZWw5cnZ1cTMzODczNEBiYmJiMy00XzIxXjM1Xy02YSNeajJyMmQ0MDFgLS1kMS1zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00058000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Dj Melody Spectre Enakeun",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 0,
                                "author": "Ryan A WDF",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~720x720.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=BXY3ndvYE%2B2dcpkJ7WWO83e6w4I%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=dQrekEYybSlxkg%2F%2FvFD8lVpwb0w%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~100x100.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=%2B1yYwVcN9yF%2F5pKvVpgnkK%2BAwHY%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1673327879,
                                "dmv_auto_show": false,
                                "duration": 221,
                                "duration_high_precision": {
                                  "audition_duration_precision": 0,
                                  "duration_precision": 221.571,
                                  "shoot_duration_precision": 0,
                                  "video_duration_precision": 0
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":1.2816502,\"beats\":{\"audio_effect_onset\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/086e6af70f3a46e8bfb720b0a7367219?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=iE%2Fsvgxt1c0ZYMjBAj%2F0fiOLfL0%3D\",\"beats_tracker\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/b0107491f98246d888f5119943bcfff3?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=pwAXqmH7k%2BusaQp2a6WXYDe3z8I%3D\",\"energy_trace\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/2468338409b84fe89350b206f7bc4665?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=%2FsZisQlRHImmUYLCivUoQ2%2FWFZ4%3D\",\"merged_beats\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/ce825c251df24605a0f583f176b5bcd5?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=RUGJgb2QEaBNXG8FtHyxOe6gRLQ%3D\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"filter_reason\":\"not_commerce\",\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-6.5794296,\"music_vid\":\"v10ad6g50000cobudtnog65qg3v3c0sg\",\"original_song_url\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-ve-2774/oM4DiABi2Ia60sQwg1WCAmMfC559BvXAovIzPX?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=khcZCXy9BJJ6gVWHD%2BdmyirpsIA%3D\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7186888502351497000,
                                "id_str": "7186888502351497218",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "Spanish",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Ryan A WDF",
                                  "chorus_info": {
                                    "duration_ms": 29760,
                                    "start_ms": 33024
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                    "url_list": [
                                      "https://p77-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=h4L1TeR4mzenmDdu8P8MMQRoQnM%3D",
                                      "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=dQrekEYybSlxkg%2F%2FvFD8lVpwb0w%3D"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 221571,
                                  "h5_url": "",
                                  "id": "7186888501647017986",
                                  "performers": null,
                                  "title": "Dj El Perdon X Melody Viral"
                                },
                                "meme_song_info": {},
                                "mid": "7186888502351497218",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "The copyright owner hasn’t made this sound available in your country",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "",
                                  "url_list": [],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 0,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf19-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/e3c53663523a423b9846c7e37ea2e2cb?lk3s=08d74b56&x-expires=1779280617&x-signature=J%2BuoATDXDH9z74RSG8qy9kssMRk%3D",
                                  "url_list": [
                                    "https://sf19-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/e3c53663523a423b9846c7e37ea2e2cb?lk3s=08d74b56&x-expires=1779280617&x-signature=J%2BuoATDXDH9z74RSG8qy9kssMRk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  153
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3,
                                  1
                                ],
                                "title": "Dj El Perdon X Melody Viral",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 0
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fypシ",
                                  "cid": "1637342470396934",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1637342470396934",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fypシ on TikTok!",
                                    "share_desc_info": "Check out #fypシ on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fypシ",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp%E3%82%B7?_r=1&name=fyp%E3%82%B7&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=1637342470396934&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.01750291715285881}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "text",
                                  "editor_pro"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 2,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7334590701495209218",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7334590701495209000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "😟😟😟ញុមបាញ់អន់ណាស់🙏🏻😌",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.07744565217391304,
                                    "source_width": 0.8953301127214172,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "km",
                                    "text_size": 28
                                  },
                                  "track_info": "[{\"x\":0.5378,\"end_time\":255528.794,\"p\":null,\"y\":0.2484,\"h\":0.081,\"isRatioCoord\":true,\"start_time\":0,\"r\":0,\"w\":0.7984,\"s\":0.8638}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": true,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "{\"music_detail_fail_reason\":\"copyright_offline\",\"music_detail_fail_type\":6,\"music_detail_fail_toast\":\"This sound isn’t available.\"}",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Dj Melody Spectre Enakeun",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 0,
                                "author": "Ryan A WDF",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~720x720.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=BXY3ndvYE%2B2dcpkJ7WWO83e6w4I%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=dQrekEYybSlxkg%2F%2FvFD8lVpwb0w%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                  "url_list": [
                                    "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~100x100.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=%2B1yYwVcN9yF%2F5pKvVpgnkK%2BAwHY%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1673327879,
                                "dmv_auto_show": false,
                                "duration": 221,
                                "duration_high_precision": {
                                  "audition_duration_precision": 0,
                                  "duration_precision": 221.571,
                                  "shoot_duration_precision": 0,
                                  "video_duration_precision": 0
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":1.2816502,\"beats\":{\"audio_effect_onset\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/086e6af70f3a46e8bfb720b0a7367219?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=iE%2Fsvgxt1c0ZYMjBAj%2F0fiOLfL0%3D\",\"beats_tracker\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/b0107491f98246d888f5119943bcfff3?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=pwAXqmH7k%2BusaQp2a6WXYDe3z8I%3D\",\"energy_trace\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/2468338409b84fe89350b206f7bc4665?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=%2FsZisQlRHImmUYLCivUoQ2%2FWFZ4%3D\",\"merged_beats\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/ce825c251df24605a0f583f176b5bcd5?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=RUGJgb2QEaBNXG8FtHyxOe6gRLQ%3D\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"filter_reason\":\"not_commerce\",\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-6.5794296,\"music_vid\":\"v10ad6g50000cobudtnog65qg3v3c0sg\",\"original_song_url\":\"https://sf16-music-sign.tiktokcdn.com/obj/tos-alisg-ve-2774/oM4DiABi2Ia60sQwg1WCAmMfC559BvXAovIzPX?lk3s=08d74b56\\u0026x-expires=1779280617\\u0026x-signature=khcZCXy9BJJ6gVWHD%2BdmyirpsIA%3D\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7186888502351497000,
                                "id_str": "7186888502351497218",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "Spanish",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Ryan A WDF",
                                  "chorus_info": {
                                    "duration_ms": 29760,
                                    "start_ms": 33024
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge",
                                    "url_list": [
                                      "https://p77-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=h4L1TeR4mzenmDdu8P8MMQRoQnM%3D",
                                      "https://p16-sign-sg.tiktokcdn.com/tos-alisg-v-2774/o855vAAEMADzvheXChFEAbD1aLFzoWAEEAf3ge~200x200.jpeg?lk3s=08d74b56&x-expires=1779280617&x-signature=dQrekEYybSlxkg%2F%2FvFD8lVpwb0w%3D"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 221571,
                                  "h5_url": "",
                                  "id": "7186888501647017986",
                                  "performers": null,
                                  "title": "Dj El Perdon X Melody Viral"
                                },
                                "meme_song_info": {},
                                "mid": "7186888502351497218",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "The copyright owner hasn’t made this sound available in your country",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "",
                                  "url_list": [],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 0,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf19-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/e3c53663523a423b9846c7e37ea2e2cb?lk3s=08d74b56&x-expires=1779280617&x-signature=J%2BuoATDXDH9z74RSG8qy9kssMRk%3D",
                                  "url_list": [
                                    "https://sf19-music-sign.tiktokcdn.com/obj/tos-alisg-v-2774/e3c53663523a423b9846c7e37ea2e2cb?lk3s=08d74b56&x-expires=1779280617&x-signature=J%2BuoATDXDH9z74RSG8qy9kssMRk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  153
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3,
                                  1
                                ],
                                "title": "Dj El Perdon X Melody Viral",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 0
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 255428,
                              "music_selected_from": "edit_page_recommend",
                              "music_title_style": 1,
                              "music_volume": "100.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"13\">#fypシ</h> <h id=\"20\">#pppppppppppppppp</h> <h id=\"33\">#fyp</h> <h id=\"52\">#🥹🥹🥹🥹🥹❤️‍</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "13",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "14337619",
                                    "hashtag_name": "pppppppppppppppp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "20",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "33",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7071725582928576518",
                                    "hashtag_name": "🥹🥹🥹🥹🥹❤️‍",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "52",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "KH",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out BRO NORN 58 🤗's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out BRO NORN 58 🤗’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out BRO NORN 58 🤗’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@bronorn58/video/7334590701495209218?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7334590701495209218&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.373,8876.7247]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7334590701495209218",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 5,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "13",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 23,
                                  "hashtag_id": "14337619",
                                  "hashtag_name": "pppppppppppppppp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 6,
                                  "tag_id": "20",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 28,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 24,
                                  "tag_id": "33",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 43,
                                  "hashtag_id": "7071725582928576518",
                                  "hashtag_name": "🥹🥹🥹🥹🥹❤️‍",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 29,
                                  "tag_id": "52",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "km",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 1,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7334386208661947393",
                              "handle": "bronorn58",
                              "displayName": "BRO NORN 58 🤗",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/01024afc97919b1a594dcd22d120fc8d~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ad02c3e3&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BKJ12unXEoYnjDhokejq9PaiNXU%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7626651318853176590",
                            "caption": "#titkok #fypシ #movie",
                            "createdAt": "2026-04-09T07:03:58.000Z",
                            "url": "https://www.tiktok.com/@rakkivskops/video/7626651318853176590",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/oYpXSYXsSB7E0AiR4DAIC17BD1EzgTfr3eTBiY~tplv-tiktokx-origin.image?dr=1347&refresh_token=40cf48e6&x-expires=1779343200&x-signature=rpUdZ%2FkJPOdLkJJjt8zHWh6DiQs%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 45789,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 19646,
                              "likes": 62,
                              "comments": 4,
                              "shares": 3,
                              "saves": 3
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/92c9aadf3cc4a6eb164c8b4b7c86b991/6a0ea836/video/tos/maliva/tos-maliva-ve-0068c799-us/o0B6AZ71EiTFsE0QIpiB4tfYEKPFgezCDSXSAR/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=923&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NTozPDUzaDY0aTo0ZmRkaEBpM3VmM3I5cjxuOjMzZzczNEBhYy0vYDYvNmIxYTIuMGNgYSNgLmpqMmRjcl9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/449c784f3f43d2459cbc75d556927835/6a0ea836/video/tos/maliva/tos-maliva-ve-0068c799-us/og74Zpg7fABMQCBSEElXesEgziRQ01zFASiIDY/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=986&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=aGZmaGVlZ2UzaTo2OjU6NkBpM3VmM3I5cjxuOjMzZzczNEAuX2IxMTI0NmExMTMvNTIuYSNgLmpqMmRjcl9hLS1kMS9zcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "you not the same (slowed down version)",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=f4df7dec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=V9mqRJ5JLAiTlVUrtB4zF7QOJNI%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=1284b798&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=19bJJBVoTEy%2FYggFyiHxPtyYB7M%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=1974799c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Y1YQyA7fWwIbWXQCLMpvc4wM%2Bk0%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "tilekidsad",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "TileKid 🎵",
                                    "sec_uid": "MS4wLjABAAAAoMhT0fVDGBo4gjAOoRIhBFcyK5PAzrj87bmLbhcEupyXEL2h6BUIy5UlGLCXmX9t",
                                    "status": 1,
                                    "uid": "6868641637922325506"
                                  }
                                ],
                                "audition_duration": 60,
                                "author": "tilekid",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=93d0302e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9f%2BOr6iG%2FpvpXM%2Fus39EupNmvww%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=97d1661b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=aJmQ%2FH%2BtjmltXRFD6wisDWbqQV4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=9b1ca8c5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iTYV3opCE1ByZRNF4%2FtVl0t8ZFg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f2322704&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=CjXax9hIpypsmZBVzHZWbiJ0JOc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=46e969af&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=NBKbArwSAN%2BvjtAuqEqKJnA0ThU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=122e5369&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Nj9LGXNpBvzMbnwKpLEcoi4k4cI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1616453108,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":43.65,\"amplitude_peak\":0.8112816,\"apple_song_id\":1559657075,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/371c46c4c38f4841911c4391df48d023\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/da50844f843641da84df6139e9ddaaaa\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/723f505b44be41fbaa842c2b5a01ac84\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/7a0811d8a0224043b4de5089270f686a\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-15.476207,\"music_vid\":\"v10ad6g50000cfm9vo3c77u9evordp10\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6942613216073648000,
                                "id_str": "6942613216073648130",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "tilekid",
                                  "chorus_info": {
                                    "duration_ms": 18239,
                                    "start_ms": 102720
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 159855,
                                  "h5_url": "",
                                  "id": "6942608086536292353",
                                  "performers": null,
                                  "title": "you not the same - slowed down version"
                                },
                                "meme_song_info": {},
                                "mid": "6942613216073648130",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1617321600,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o4HrhAL2neIC2U1mAfsPv25fRBeP4dAGK3LXkF",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o4HrhAL2neIC2U1mAfsPv25fRBeP4dAGK3LXkF"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 1,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df645c682d584fdea11b6998b262dbc3",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df645c682d584fdea11b6998b262dbc3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  152
                                ],
                                "tag_list": null,
                                "title": "you not the same - slowed down version",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "titkok",
                                  "cid": "35126845",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=35126845",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #titkok on TikTok!",
                                    "share_desc_info": "Check out #titkok on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: titkok",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/titkok?_r=1&name=titkok&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=35126845&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00020360378703043877}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 2,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7175284563671928069",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7521204762268798000,
                                  7513210455662284000,
                                  7267518797718785000,
                                  7175284563671928000,
                                  7398017262575275000,
                                  7266258330551717000,
                                  7250565102842236000,
                                  7508647462400314000,
                                  7626651318853176000,
                                  7519831621403414000,
                                  7291924921079582000,
                                  7258588701486239000,
                                  7249693661456354000,
                                  7571762422579547000,
                                  7465148386065305000,
                                  7263918017971490000
                                ],
                                "GroupdIdList1": [
                                  7521204762268798000,
                                  7513210455662284000,
                                  7267518797718785000,
                                  7175284563671928000,
                                  7398017262575275000,
                                  7258588701486239000,
                                  7571762422579547000,
                                  7519831621403414000,
                                  7626651318853176000,
                                  7266258330551717000,
                                  7263918017971490000,
                                  7508647462400314000,
                                  7291924921079582000,
                                  7249693661456354000,
                                  7250565102842236000,
                                  7465148386065305000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "you not the same (slowed down version)",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=f4df7dec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=V9mqRJ5JLAiTlVUrtB4zF7QOJNI%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=1284b798&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=19bJJBVoTEy%2FYggFyiHxPtyYB7M%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=1974799c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Y1YQyA7fWwIbWXQCLMpvc4wM%2Bk0%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "tilekidsad",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "TileKid 🎵",
                                    "sec_uid": "MS4wLjABAAAAoMhT0fVDGBo4gjAOoRIhBFcyK5PAzrj87bmLbhcEupyXEL2h6BUIy5UlGLCXmX9t",
                                    "status": 1,
                                    "uid": "6868641637922325506"
                                  }
                                ],
                                "audition_duration": 60,
                                "author": "tilekid",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=93d0302e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9f%2BOr6iG%2FpvpXM%2Fus39EupNmvww%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=97d1661b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=aJmQ%2FH%2BtjmltXRFD6wisDWbqQV4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=9b1ca8c5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iTYV3opCE1ByZRNF4%2FtVl0t8ZFg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f2322704&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=CjXax9hIpypsmZBVzHZWbiJ0JOc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=46e969af&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=NBKbArwSAN%2BvjtAuqEqKJnA0ThU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/d9c450436bc533f6152d588a0e625e53~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=122e5369&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Nj9LGXNpBvzMbnwKpLEcoi4k4cI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1616453108,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":43.65,\"amplitude_peak\":0.8112816,\"apple_song_id\":1559657075,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/371c46c4c38f4841911c4391df48d023\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/da50844f843641da84df6139e9ddaaaa\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/723f505b44be41fbaa842c2b5a01ac84\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/7a0811d8a0224043b4de5089270f686a\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-15.476207,\"music_vid\":\"v10ad6g50000cfm9vo3c77u9evordp10\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6942613216073648000,
                                "id_str": "6942613216073648130",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "tilekid",
                                  "chorus_info": {
                                    "duration_ms": 18239,
                                    "start_ms": 102720
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/okbIgzsILaA5BemElFHStnEAgD2yfUCZZABOFQ.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 159855,
                                  "h5_url": "",
                                  "id": "6942608086536292353",
                                  "performers": null,
                                  "title": "you not the same - slowed down version"
                                },
                                "meme_song_info": {},
                                "mid": "6942613216073648130",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1617321600,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o4HrhAL2neIC2U1mAfsPv25fRBeP4dAGK3LXkF",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/o4HrhAL2neIC2U1mAfsPv25fRBeP4dAGK3LXkF"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 1,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df645c682d584fdea11b6998b262dbc3",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/df645c682d584fdea11b6998b262dbc3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  152
                                ],
                                "tag_list": null,
                                "title": "you not the same - slowed down version",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 45779,
                              "music_selected_from": "video_capsule_recommend",
                              "music_title_style": 0,
                              "music_volume": "1.070336",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"438\">#titkok</h> <h id=\"445\">#fypシ</h> <h id=\"458\">#movie</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "35126845",
                                    "hashtag_name": "titkok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "438",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "445",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "9960",
                                    "hashtag_name": "movie",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "458",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out rakkivskops's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out rakkivskops’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out rakkivskops’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@rakkivskops/video/7626651318853176590?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7626651318853176590&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_meta\":\"{\\\"19df3fc87eaf9166634f0331a579ca7f\\\":{\\\"Md5\\\":\\\"19df3fc87eaf9166634f0331a579ca7f\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.96],\\\"drr\\\":22.6,\\\"rcd\\\":[0.2],\\\"mp\\\":-14.62,\\\"be\\\":[16.1,11606.4],\\\"ocf\\\":[-5.7469,-8.5026,-6.9353,-6.385,-9.4901,-14.9825,-19.042,-25.3164,-32.6424,-51.7761],\\\"il\\\":-36.8}}},\\\"b3d19016e6465dcc7b2eb5cf1c934214\\\":{\\\"Md5\\\":\\\"b3d19016e6465dcc7b2eb5cf1c934214\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.96],\\\"drr\\\":22.7,\\\"rcd\\\":[0.2],\\\"mp\\\":-14.49,\\\"be\\\":[16.1,11617.2],\\\"ocf\\\":[-5.7966,-8.4197,-6.9774,-6.3634,-9.4488,-14.9726,-19.0478,-25.3327,-32.6824,-51.7081],\\\"il\\\":-36.8}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.9],\\\"drr\\\":23.5,\\\"rcd\\\":[0],\\\"mp\\\":-15.8,\\\"be\\\":[16.1,11552.6],\\\"ocf\\\":[-5.2821,-8.006,-7.1538,-6.8415,-9.9972,-15.174,-19.227,-25.4535,-32.0973,-54.8597],\\\"il\\\":-36.7},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_00010202\\\",\\\"tag_03010303\\\",\\\"tag_02030012\\\",\\\"tag_01010226\\\"],\\\"trs\\\":[0.76,0.14,0.13,0.12,0.08]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10045\",\"PACK_VOD:vod_sr_class_v30_score\":\"56.598\",\"play_time_prob_dist\":\"[800,0.5554,4274.788]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7626651318853176590",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"video_id\":\"\",\"is_ramandan_promotion\":\"\",\"ecom_trigger_info_map\":\"\",\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"poi_card_id_list\":\"\",\"generate_time\":\"1746341658\",\"hot_level\":\"0\",\"is_time_sensitive\":\"0\",\"visualize_sug_product_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_intent\":\"0\",\"ecom_trigger_info\":\"\",\"lvl3_cate_list\":\"\",\"predict_ctr_score\":0.006707973110341364,\"recall_reason\":\"global_video_sar_top_counter_passive_recall\",\"word_type_list\":\"\",\"word_type_version_map\":\"\",\"words_type_to_voucher_ids\":\"\"}",
                                        "word": "movie clips videos",
                                        "word_id": "4620178828210123788",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"is_ramandan_promotion\":\"\",\"ecom_intent\":\"0\",\"hot_level\":\"0\",\"sug_user_id\":\"\",\"predict_ctr_score\":0.017127914904498703,\"word_type_list\":\"\",\"visualize_sug_product_id\":\"\",\"generate_time\":\"1746341658\",\"poi_card_id_list\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall\",\"ecom_trigger_info_map\":\"\",\"ecom_trigger_info\":\"\",\"words_type_to_dmp_list\":\"\",\"lvl1_category_id\":\"\",\"is_time_sensitive\":\"0\",\"word_type_version_map\":\"\",\"video_id\":\"\",\"lvl3_cate_list\":\"\",\"words_type_to_voucher_ids\":\"\"}",
                                        "word": "movie clips videos",
                                        "word_id": "4620178828210123788",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 7,
                                  "hashtag_id": "35126845",
                                  "hashtag_name": "titkok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "438",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 13,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 8,
                                  "tag_id": "445",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 20,
                                  "hashtag_id": "9960",
                                  "hashtag_name": "movie",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 14,
                                  "tag_id": "458",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7623611336144978958",
                              "handle": "rakkivskops",
                              "displayName": "rakkivskops",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/62922594cf7fdda70e5e6393533db41f~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=4ca120fe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=6kTMr0OSd3hGspUNWx2CrHcqYkI%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7147782607852408069",
                            "caption": "#movie #foryou #film #statue #trend #omg #LearnOnTikTok #nelsonosamwanze #makeviral #learnfromme #nelsino17 #fy #fördig #fypシ #showlove",
                            "createdAt": "2022-09-26T20:07:09.000Z",
                            "url": "https://www.tiktok.com/@nelsino17/video/7147782607852408069",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/0da84c17d9d443178f975274ba324a28~tplv-tiktokx-origin.image?dr=1347&refresh_token=81086a53&x-expires=1779343200&x-signature=pOhZAkTtqhi4i04Xr6pW5Bgf3iA%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&sc=cover&biz_tag=tt_video",
                            "durationMs": 15974,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 64024,
                              "likes": 1600,
                              "comments": 10,
                              "shares": 7,
                              "saves": 159
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/3a87572be7eed4cb311abd142761b4f2/6a0ea818/video/tos/useast2a/tos-useast2a-pve-0068/14fa8b5639874e62af8e081328d4c4b7/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=584&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NmY8MzY2OzxpZGhnaWhnO0BpM2hzZTc6ZmkzZjMzNzczM0AwYjRjYS5jNi4xX2JhYC9jYSNhX2tkcjRfX21gLS1kMTZzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/3f8731afea7194bffcb4213c847394aa/6a0ea818/video/tos/useast2a/tos-useast2a-ve-0068c001/fad78907a2ec4f469d94491d05af5a6c/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=547&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=aTM3aWdnZmY4Ojc4aDk4N0BpM2hzZTc6ZmkzZjMzNzczM0BhX2A1LWMwNjUxMy0vMTRfYSNhX2tkcjRfX21gLS1kMTZzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00078000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "movie",
                                  "cid": "9960",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "Is it drama, comedy, or action? Show us the #Movie you are currently watching 🍿",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "musically-maliva-obj/f985b0123891a188ff34f5cb39ae3e48.jpeg",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=9960",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #movie on TikTok!",
                                    "share_desc_info": "Check out #movie on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: movie",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/movie?_r=1&name=movie&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=9960&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0001561914282144196}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7137730454915976453",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 15800,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"92\">#movie</h> <h id=\"3713\">#foryou</h> <h id=\"6105\">#film</h> <h id=\"8939\">#statue</h> <h id=\"2127\">#trend</h> <h id=\"8023\">#omg</h> <h id=\"5535\">#LearnOnTikTok</h> <h id=\"8204\">#nelsonosamwanze</h> <h id=\"1694\">#makeviral</h> <h id=\"3215\">#learnfromme</h> <h id=\"2457\">#nelsino17</h> <h id=\"9018\">#fy</h> <h id=\"4907\">#fördig</h> <h id=\"8500\">#fypシ</h> <h id=\"9679\">#showlove</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "9960",
                                    "hashtag_name": "movie",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "92",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3713",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "28707",
                                    "hashtag_name": "film",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6105",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "18230",
                                    "hashtag_name": "statue",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8939",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "44895",
                                    "hashtag_name": "trend",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2127",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1603",
                                    "hashtag_name": "omg",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8023",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1636483010861062",
                                    "hashtag_name": "learnontiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5535",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1698804236793862",
                                    "hashtag_name": "nelsonosamwanze",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8204",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "334403",
                                    "hashtag_name": "makeviral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1694",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "6692374",
                                    "hashtag_name": "learnfromme",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3215",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1702729322451974",
                                    "hashtag_name": "nelsino17",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2457",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "153828",
                                    "hashtag_name": "fy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9018",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "16237969",
                                    "hashtag_name": "fördig",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "4907",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8500",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20583",
                                    "hashtag_name": "showlove",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9679",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "SE",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Nelsiono3's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Nelsiono3’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Nelsiono3’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@nelsino17/video/7147782607852408069?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7147782607852408069&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.756,2237.0099]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7147782607852408069",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"recall_reason\":\"video_title_orion_qse_recall,global_video_sar_top_counter_passive_recall\",\"is_time_sensitive\":\"0\",\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"ecom_intent\":\"0\",\"is_ramandan_promotion\":\"\",\"ecom_trigger_info\":\"\",\"video_id\":\"\",\"predict_ctr_score\":0.004235716461162349,\"lvl3_cate_list\":\"\",\"ecom_trigger_info_map\":\"\",\"word_type_version_map\":\"\",\"generate_time\":\"1755179372\",\"visualize_sug_product_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"word_type_list\":\"\",\"words_type_to_dmp_list\":\"\",\"hot_level\":\"0\"}",
                                        "word": "omg movie scene",
                                        "word_id": "2162711892538629960",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"ecom_trigger_info_map\":\"\",\"visualize_sug_product_id\":\"\",\"recall_reason\":\"video_title_orion_qse_recall,global_video_sar_top_counter_passive_recall\",\"video_id\":\"\",\"hot_level\":\"0\",\"predict_ctr_score\":0.009900325727123292,\"lvl3_cate_list\":\"\",\"is_time_sensitive\":\"0\",\"is_ramandan_promotion\":\"\",\"words_type_to_voucher_ids\":\"\",\"generate_time\":\"1755179372\",\"ecom_intent\":\"0\",\"word_type_version_map\":\"\",\"poi_card_id_list\":\"\",\"sug_user_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info\":\"\",\"word_type_list\":\"\",\"lvl1_category_id\":\"\"}",
                                        "word": "omg movie scene",
                                        "word_id": "2162711892538629960",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 6,
                                  "hashtag_id": "9960",
                                  "hashtag_name": "movie",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "92",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 14,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 7,
                                  "tag_id": "3713",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 20,
                                  "hashtag_id": "28707",
                                  "hashtag_name": "film",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 15,
                                  "tag_id": "6105",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 28,
                                  "hashtag_id": "18230",
                                  "hashtag_name": "statue",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 21,
                                  "tag_id": "8939",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 35,
                                  "hashtag_id": "44895",
                                  "hashtag_name": "trend",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 29,
                                  "tag_id": "2127",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 40,
                                  "hashtag_id": "1603",
                                  "hashtag_name": "omg",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 36,
                                  "tag_id": "8023",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 55,
                                  "hashtag_id": "1636483010861062",
                                  "hashtag_name": "learnontiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 41,
                                  "tag_id": "5535",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 72,
                                  "hashtag_id": "1698804236793862",
                                  "hashtag_name": "nelsonosamwanze",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 56,
                                  "tag_id": "8204",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 83,
                                  "hashtag_id": "334403",
                                  "hashtag_name": "makeviral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 73,
                                  "tag_id": "1694",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 96,
                                  "hashtag_id": "6692374",
                                  "hashtag_name": "learnfromme",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 84,
                                  "tag_id": "3215",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 107,
                                  "hashtag_id": "1702729322451974",
                                  "hashtag_name": "nelsino17",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 97,
                                  "tag_id": "2457",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 111,
                                  "hashtag_id": "153828",
                                  "hashtag_name": "fy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 108,
                                  "tag_id": "9018",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 119,
                                  "hashtag_id": "16237969",
                                  "hashtag_name": "fördig",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 112,
                                  "tag_id": "4907",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 125,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 120,
                                  "tag_id": "8500",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 135,
                                  "hashtag_id": "20583",
                                  "hashtag_name": "showlove",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 126,
                                  "tag_id": "9679",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6953686001169810438",
                              "handle": "nelsino17",
                              "displayName": "Nelsiono3",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-giso/1289c3d9cbe357ce0d2807c9e52a6a3a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0a11fd02&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=UhSyQBlbNVRlD05kI3l%2BmefcDW4%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7302072251929595168",
                            "caption": "#fyp #foryou #foryoupage #fypシ #funny #tiktok ☺️☺️",
                            "createdAt": "2023-11-16T14:49:49.000Z",
                            "url": "https://www.tiktok.com/@helmut.stiewe75/video/7302072251929595168",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-p-0037-euttp/oAQieiQDlEgdEsIlAYB5QVIsfvEisBDPCDsRVF~tplv-tiktokx-origin.image?dr=1347&refresh_token=59be047f&x-expires=1779343200&x-signature=jg9Fb3vkZSRzojwFTyOHPBi7Aug%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover&item=7302072251929595168",
                            "durationMs": 15967,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 12133,
                              "likes": 368,
                              "comments": 2,
                              "shares": 5,
                              "saves": 92
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/f6f9f8f3f818ed92b04f381c206d5faf/6a0ea818/video/no1a/mps/logo/v2/r/p/v0f044gc0000clb2nk7og65m112b2160/ad210341745a45d98216d1dd989f7d7b/038df3306e572e2328f179cba2e43253/mp4/main.mp4?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=0&eid=1286&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZWdpO2c0OTU8OGQ3NDY0Z0BpMzRlNHA5cm41bzMzZjczM0A0NDY2YWEuNWExMjQxLS9eYSMzLy8uMmQ0a19gLS1kMWNzcw%3D%3D&l=20260520063657E2B6D5ABC0E6B40093B5&definition=720p&du=16&item_id=7302072251929595168&l=20260520063657E2B6D5ABC0E6B40093B5&logo_type=tiktok_m&user_text=helmut.stiewe75&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/92fe62c794046177a2657b489f2b63eb/6a0ea818/video/tos/no1a/tos-no1a-ve-68c710-no/o8NBYEPExrTWBE0VnAIBiWMxSQBCZ00LwBH2i/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=827&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ODQ3ZWllaWc1PDY5ODUzPEBpMzRlNHA5cm41bzMzZjczM0BjNi0tMzA0NTAxYS4xLV9hYSMzLy8uMmQ0a19gLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyp",
                                  "cid": "229207",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=229207",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyp on TikTok!",
                                    "share_desc_info": "Check out #fyp on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyp",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp?_r=1&name=fyp&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=229207&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00016483969339817027}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7302072251929595168",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7302072251929595000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 15916,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "100.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"199\">#fyp</h> <h id=\"200\">#foryou</h> <h id=\"201\">#foryoupage</h> <h id=\"202\">#fypシ</h> <h id=\"203\">#funny</h> <h id=\"204\">#tiktok</h> ☺️☺️",
                                "text_extra": [
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "199",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "200",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "201",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "202",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "203",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "204",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "IT",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Helmut Stiewe's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Helmut Stiewe’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Helmut Stiewe’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@helmut.stiewe75/video/7302072251929595168?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7302072251929595168&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "upload",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.756,2237.0099]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7302072251929595168",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "199",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 12,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "200",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "201",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "202",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 37,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "203",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 45,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 38,
                                  "tag_id": "204",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7296170447384445985",
                              "handle": "helmut.stiewe75",
                              "displayName": "Helmut Stiewe",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/c8eac13bb7dc3a6181f3170b7e8537fb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=71c13aef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3N6OnUcFgDAIiWTvKpQxtXR7k0k%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7641847733875182879",
                            "caption": "୭ৎ ࣪ 𝐍𝖾ω ρⱺ𝗌𝗍 !ㅤ✦  ݁ 「 bru im not even that loud at night like my mom is being dramatic.. 」  ⏤ㅤ۪ ୧ ۪⠀ׂㅤ.  ꨄ︎ : ꒰ #SAKUYA ꒱ . 𓂅 ◌ ° —— ::  . . . . . . . . . . . . . . . . . . . . . . . . . 𝗍α𝗀𝗌 :: #fypシ #xyzbca #nctwish",
                            "createdAt": "2026-05-20T05:52:21.000Z",
                            "url": "https://www.tiktok.com/@.leeknowsaki/video/7641847733875182879",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast8-p-0068-tx2/o0BCiBJKwIAq6Axu9ATYNfAPmAixZBBA1EUIAi~tplv-tiktokx-origin.image?dr=1347&refresh_token=77cf3e65&x-expires=1779343200&x-signature=RhIFAG8UDKP7xiYM92OR0brQPiw%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 15034,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 97,
                              "likes": 11,
                              "comments": 0,
                              "shares": 0,
                              "saves": 0
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/6a29e925a2ae2ab0967fdfb284aa18a4/6a0ea818/video/tos/maliva/tos-maliva-ve-0068c799-us/ogC9I2iCFuqjgdWNiQBAEXBxIZ1ATAsCCqiUf9/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1138&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=Njc5Mzk7NzY6OjM4ZTw2aEBpM3dtdWs5cmtuOzMzaTczNEAzYzRfLWJhXi4xYTM0MmItYSNvbmZgMmRzazNhLS1kMTJzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/2ac8c3b1e4662bca1164b88ddd8b8125/6a0ea818/video/tos/maliva/tos-maliva-ve-0068c799-us/oIwITM1HgmFRUeNF31eGeQYGePALAUSAJIuoR5/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1270&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZmVnM2lnNjUzaDY6Z2U7NEBpM3dtdWs5cmtuOzMzaTczNEBhY2NeLTVgNV4xNjUzYl4tYSNvbmZgMmRzazNhLS1kMTJzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "zonamusik90an",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d81e6765&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1kO3cfAcLraNiFGu9vNyMXo6waE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=722d3e77&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2n5YBq6G32W3WdQT%2FtOhyb3hcCs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=08da93a4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0gdzzGse7EcveYi1dTOKJOEAx2E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=df4e3834&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RdcwjE3VAszdRc2TCPRiEwXZCBw%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2c600f79&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C2dJB99vSSGuripHMhZXwveqdgM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ce13a184&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WDVHqtBORl26D%2B4SQa6tPLkS%2FTI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=9f7c8eaf&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=75SwGZRZ9LvTjyMrtf1pJct1RFM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=1bc4e655&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=lOP5R8GoHA0jHMppzFQsk1MQ61A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=dcbb1998&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=COB2ip8tlnihjyXtoposXE3WWtw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d81e6765&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1kO3cfAcLraNiFGu9vNyMXo6waE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=722d3e77&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2n5YBq6G32W3WdQT%2FtOhyb3hcCs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=08da93a4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0gdzzGse7EcveYi1dTOKJOEAx2E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=df4e3834&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RdcwjE3VAszdRc2TCPRiEwXZCBw%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2c600f79&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C2dJB99vSSGuripHMhZXwveqdgM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ce13a184&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WDVHqtBORl26D%2B4SQa6tPLkS%2FTI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1697029972,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60.081627,
                                  "duration_precision": 60.081627,
                                  "shoot_duration_precision": 60.081627,
                                  "video_duration_precision": 60.081627
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":25,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7288688155421691142,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000ckj9ukrc77u8uk6kf1fg\",\"owner_id\":7030451081512223771,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7288688214754004000,
                                "id_str": "7288688214754003717",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=3dcfb784&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2hRb%2BIFpPa6TLUDEtXzKkr1e3Lg%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=0316c8da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=T8%2BOebC7trljm7HaH8u6gvW4GxQ%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=223de724&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gRohgTAdWh1XguQSl%2F8ybpvoSZA%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "lennykravitz",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Lenny Kravitz",
                                      "sec_uid": "MS4wLjABAAAAlxVBmJ_En3Rwdwxa1LsNkvXW3c5gQhktQzE8bsrD_RzbYllNCqcrVHKbo-LRL6Fe",
                                      "status": 1,
                                      "uid": "6870563452671853574"
                                    }
                                  ],
                                  "author": "Lenny Kravitz",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"It Ain't Over 'Til It's Over - Remastered 2012\"",
                                  "mixed_title": "original sound - zonamusik90an (Contains music from: It Ain't Over 'Til It's Over - Remastered 2012 - Lenny Kravitz)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "It Ain't Over 'Til It's Over - Remastered 2012",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Lenny Kravitz",
                                  "chorus_info": {
                                    "duration_ms": 23424,
                                    "start_ms": 99072
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 242580,
                                  "h5_url": "",
                                  "id": "6732421731773859841",
                                  "performers": null,
                                  "title": "It Ain't Over 'Til It's Over - Remastered 2012"
                                },
                                "meme_song_info": {},
                                "mid": "7288688214754003717",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "zonamusik90an",
                                "owner_id": "7030451081512223771",
                                "owner_nickname": "zonamusik90an",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7288688219882670853.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7288688219882670853.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAHB-VoJzr-j746gwScJxMNT_HyQsIs1Ljv5aoco6lkVqemIuJFsGbKYYh15ax7qUR",
                                "shoot_duration": 60,
                                "source_platform": 24,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6e002e17964595913417cb9f51f4b1c1.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6e002e17964595913417cb9f51f4b1c1.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - zonamusik90an",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "sakuya",
                                  "cid": "10958944",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=10958944",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #sakuya on TikTok!",
                                    "share_desc_info": "Check out #sakuya on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: sakuya",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/sakuya?_r=1&name=sakuya&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=10958944&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "[\"୭ৎ ࣪ \\ud835\\udc0d\\ud835\\uddbeω ρⱺ\\ud835\\uddcc\\ud835\\uddcd !ㅤ✦  ݁ 「 bru im not even that loud at night like my mom is being dramatic.. 」 \",\"⏤ㅤ۪ ୧ ۪⠀ׂㅤ.  ꨄ︎ : ꒰ #SAKUYA ꒱\",\". \\ud80c\\udc85 ◌ ° —— :: \",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\".\",\"\\ud835\\uddcdα\\ud835\\uddc0\\ud835\\uddcc :: #fypシ #xyzbca #nctwish \"]",
                              "content_desc_extra": [
                                {
                                  "end": 27,
                                  "hashtag_id": "10958944",
                                  "hashtag_name": "sakuya",
                                  "is_commerce": false,
                                  "line_idx": 1,
                                  "start": 20,
                                  "tag_id": "51",
                                  "type": 1
                                },
                                {
                                  "end": 16,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "line_idx": 28,
                                  "start": 11,
                                  "tag_id": "168",
                                  "type": 1
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "1652484531221509",
                                  "hashtag_name": "xyzbca",
                                  "is_commerce": false,
                                  "line_idx": 28,
                                  "start": 17,
                                  "tag_id": "181",
                                  "type": 1
                                },
                                {
                                  "end": 33,
                                  "hashtag_id": "1680939265588226",
                                  "hashtag_name": "nctwish",
                                  "is_commerce": false,
                                  "line_idx": 28,
                                  "start": 25,
                                  "tag_id": "200",
                                  "type": 1
                                }
                              ],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": "[{\"start_x\":0.3621,\"rotation\":0,\"start_time\":0,\"scale\":0.3932,\"is_voice_clone\":false,\"text_style\":0,\"speaker_id\":\"\",\"layer\":0,\"bg_mode\":1,\"color\":-7170146,\"align\":0,\"text_str\":\"when my mom yells \\n“ ya deja de gritar tan fuerte en la noche pq ni ￼dejas dormir￼” but my name is yuliana so I know she wasn’t talking about me \",\"border_color\":\"0xFFFFFF\",\"voice_resource_id\":\"\",\"transform_x\":0,\"font_resource_id\":\"7561731318275379729\",\"stream_speaker_id\":\"\",\"transform_y\":0,\"end_time\":15016,\"start_y\":0.118}]"
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "high_quality_upload",
                                  "select_music",
                                  "editor_pro",
                                  "text"
                                ]
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7641847733875182879",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "when my mom yells \n“ ya deja de gritar tan fuerte en la noche pq ni ￼dejas dormir￼” but my name is yuliana so I know she wasn’t talking about me ",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.28430232558139534,
                                    "source_width": 0.8930232558139535,
                                    "text_color": "#FF92979E",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":15016.665,\"y\":0.5,\"h\":0.118,\"start_time\":0,\"isRatioCoord\":true,\"r\":0,\"w\":0.3621,\"s\":0.3932}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": true,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "zonamusik90an",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d81e6765&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1kO3cfAcLraNiFGu9vNyMXo6waE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=722d3e77&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2n5YBq6G32W3WdQT%2FtOhyb3hcCs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=08da93a4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0gdzzGse7EcveYi1dTOKJOEAx2E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=df4e3834&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RdcwjE3VAszdRc2TCPRiEwXZCBw%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2c600f79&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C2dJB99vSSGuripHMhZXwveqdgM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ce13a184&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WDVHqtBORl26D%2B4SQa6tPLkS%2FTI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=9f7c8eaf&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=75SwGZRZ9LvTjyMrtf1pJct1RFM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=1bc4e655&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=lOP5R8GoHA0jHMppzFQsk1MQ61A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=dcbb1998&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=COB2ip8tlnihjyXtoposXE3WWtw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d81e6765&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1kO3cfAcLraNiFGu9vNyMXo6waE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=722d3e77&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2n5YBq6G32W3WdQT%2FtOhyb3hcCs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=08da93a4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0gdzzGse7EcveYi1dTOKJOEAx2E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=df4e3834&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RdcwjE3VAszdRc2TCPRiEwXZCBw%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2c600f79&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C2dJB99vSSGuripHMhZXwveqdgM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2952dc1d6a48c38a31659b9b00ac4670~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ce13a184&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WDVHqtBORl26D%2B4SQa6tPLkS%2FTI%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1697029972,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60.081627,
                                  "duration_precision": 60.081627,
                                  "shoot_duration_precision": 60.081627,
                                  "video_duration_precision": 60.081627
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":25,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7288688155421691142,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000ckj9ukrc77u8uk6kf1fg\",\"owner_id\":7030451081512223771,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7288688214754004000,
                                "id_str": "7288688214754003717",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=3dcfb784&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2hRb%2BIFpPa6TLUDEtXzKkr1e3Lg%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=0316c8da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=T8%2BOebC7trljm7HaH8u6gvW4GxQ%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/3916780f141ccab33a3bd00893966512~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=223de724&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=gRohgTAdWh1XguQSl%2F8ybpvoSZA%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "lennykravitz",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Lenny Kravitz",
                                      "sec_uid": "MS4wLjABAAAAlxVBmJ_En3Rwdwxa1LsNkvXW3c5gQhktQzE8bsrD_RzbYllNCqcrVHKbo-LRL6Fe",
                                      "status": 1,
                                      "uid": "6870563452671853574"
                                    }
                                  ],
                                  "author": "Lenny Kravitz",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"It Ain't Over 'Til It's Over - Remastered 2012\"",
                                  "mixed_title": "original sound - zonamusik90an (Contains music from: It Ain't Over 'Til It's Over - Remastered 2012 - Lenny Kravitz)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "It Ain't Over 'Til It's Over - Remastered 2012",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Lenny Kravitz",
                                  "chorus_info": {
                                    "duration_ms": 23424,
                                    "start_ms": 99072
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oEAAsnEIIBgo8ekfTkFQknELqvlY6tCYDBkZA3.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 242580,
                                  "h5_url": "",
                                  "id": "6732421731773859841",
                                  "performers": null,
                                  "title": "It Ain't Over 'Til It's Over - Remastered 2012"
                                },
                                "meme_song_info": {},
                                "mid": "7288688214754003717",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "zonamusik90an",
                                "owner_id": "7030451081512223771",
                                "owner_nickname": "zonamusik90an",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7288688219882670853.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7288688219882670853.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAHB-VoJzr-j746gwScJxMNT_HyQsIs1Ljv5aoco6lkVqemIuJFsGbKYYh15ax7qUR",
                                "shoot_duration": 60,
                                "source_platform": 24,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6e002e17964595913417cb9f51f4b1c1.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6e002e17964595913417cb9f51f4b1c1.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - zonamusik90an",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 15016,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "୭ৎ ࣪ 𝐍𝖾ω ρⱺ𝗌𝗍 !ㅤ✦  ݁ 「 bru im not even that loud at night like my mom is being dramatic.. 」 <br>⏤ㅤ۪ ୧ ۪⠀ׂㅤ.  ꨄ︎ : ꒰ <h id=\"51\">#SAKUYA</h> ꒱<br>. 𓂅 ◌ ° —— :: <br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>.<br>𝗍α𝗀𝗌 :: <h id=\"168\">#fypシ</h> <h id=\"181\">#xyzbca</h> <h id=\"200\">#nctwish</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "10958944",
                                    "hashtag_name": "sakuya",
                                    "is_commerce": false,
                                    "tag_id": "51",
                                    "type": 1
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "tag_id": "168",
                                    "type": 1
                                  },
                                  {
                                    "hashtag_id": "1652484531221509",
                                    "hashtag_name": "xyzbca",
                                    "is_commerce": false,
                                    "tag_id": "181",
                                    "type": 1
                                  },
                                  {
                                    "hashtag_id": "1680939265588226",
                                    "hashtag_name": "nctwish",
                                    "is_commerce": false,
                                    "tag_id": "200",
                                    "type": 1
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out 𝓨 ᥫ᭡.'s video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out 𝓨 ᥫ᭡.’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out 𝓨 ᥫ᭡.’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@.leeknowsaki/video/7641847733875182879?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7641847733875182879&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10088\",\"play_time_prob_dist\":\"[800,0.7986,2736.8291]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7641847733875182879",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 124,
                                  "hashtag_id": "10958944",
                                  "hashtag_name": "sakuya",
                                  "is_commerce": false,
                                  "start": 117,
                                  "tag_id": "51",
                                  "type": 1
                                },
                                {
                                  "end": 209,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "start": 204,
                                  "tag_id": "168",
                                  "type": 1
                                },
                                {
                                  "end": 217,
                                  "hashtag_id": "1652484531221509",
                                  "hashtag_name": "xyzbca",
                                  "is_commerce": false,
                                  "start": 210,
                                  "tag_id": "181",
                                  "type": 1
                                },
                                {
                                  "end": 226,
                                  "hashtag_id": "1680939265588226",
                                  "hashtag_name": "nctwish",
                                  "is_commerce": false,
                                  "start": 218,
                                  "tag_id": "200",
                                  "type": 1
                                }
                              ],
                              "text_sticker_major_lang": "en",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7169363469090358315",
                              "handle": ".leeknowsaki",
                              "displayName": "𝓨 ᥫ᭡.",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/0aa6f213b127ccb4ef1899d002e2817a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=f8e5f7d7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BdgfqxTiLLEe%2BBEJckJSvOCROpY%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7164731765687422214",
                            "caption": "#foryou #rudovlaskamarii #fypシ #tiktok #trend #trendy #parati #xyzbca #funny #funnyvideos #🤣 #🤣🤣🤣",
                            "createdAt": "2022-11-11T12:18:35.000Z",
                            "url": "https://www.tiktok.com/@rudovlaskamarii/video/7164731765687422214",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/ogJECp0vhfAQrtBoIILzkLLXxSPZ7ExuWg1NAZ~tplv-tiktokx-origin.image?dr=1347&refresh_token=4986a3db&x-expires=1779343200&x-signature=U2hFQvb55VK9OuyDrO4SeR0bAPg%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&sc=cover&biz_tag=tt_video&s=CHALLENGE_AWEME",
                            "durationMs": 7730,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 79097,
                              "likes": 443,
                              "comments": 4,
                              "shares": 98,
                              "saves": 308
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/527c3e447e7f7a5191c4e5ffd00f1d4c/6a0ea810/video/tos/maliva/tos-maliva-ve-0068c800-us/ooz1ShEQ7UPtLfKCSk3N1LrZnXBvAIoQuxIxAg/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1371&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=Zmk1N2hnNjo5aDg0ZDhnaEBpamxnZzc6Zjg2ZzMzNzczM0AuYWAvNTIuNjYxYzQzNWAvYSNrYjY1cjRnb2tgLS1kMTZzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00070000",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Remember - Acoustic / Sped Up (with David Guetta)",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=7989cf68&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fWkOUEhyeqnX6GVsMi%2BLXWEjZic%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=aa9ceeab&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TxjPlH%2BnreMwHczuGN2q0C3L74w%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=dda17a23&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0cN%2BzQetVKoPMaqLMy0pX5bmGQI%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "puqqwppo",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "Nam Trinh",
                                    "sec_uid": "MS4wLjABAAAAZ7RzjbdxAYH5y1CJSM6U1ZDrswdnpbDc15NopLHqxQ7vlxEHpOqiqrISMAMF2-PZ",
                                    "status": 1,
                                    "uid": "7470916422412633096"
                                  }
                                ],
                                "audition_duration": 26,
                                "author": "Becky Hill & Speed Radio & xxtristanxo",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ff3fae18&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=OPSb%2BsaWk5xL9GZHNDmb0gEeTvs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=95d81e35&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=%2FGPsSsIhXkEm0aQ%2Fcja7Wfx15sY%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=190c0a18&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Kii7T0Moo7IPLbkJPBJqSw0%2BBnQ%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ed0cd1d7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=VIFarVm%2FED98%2B3HfFEyBT7srO70%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1dad6686&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=R%2FUHJ564S97%2FsxHt5U1wYShBQgw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=e9306ee9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=spiQPpPWztE4HmwmRX1MqBaLNJ4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1666622530,
                                "dmv_auto_show": false,
                                "duration": 26,
                                "duration_high_precision": {
                                  "audition_duration_precision": 26.23,
                                  "duration_precision": 26.23,
                                  "shoot_duration_precision": 26.23,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0.7629123,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/29528563fd604f0a82309b627cec3d90\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/6d6d6361250b401a9b2bc5aaa7a073af\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/c43e398cae8a47d7ae03309e32a6570e\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/649599fe9f1947808a9e1104fa1a76d7\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-13.869435,\"music_vid\":\"v10ad6g50000cdba8dbc77ua6phmlv4g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7080096568119987000,
                                "id_str": "7080096568119986946",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Becky Hill & Speed Radio & xxtristanxo",
                                  "chorus_info": {
                                    "duration_ms": 42047,
                                    "start_ms": 92160
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 154194,
                                  "h5_url": "",
                                  "id": "7156620189935601666",
                                  "performers": null,
                                  "title": "Remember - Acoustic / Sped Up (with David Guetta)"
                                },
                                "meme_song_info": {},
                                "mid": "7080096568119986946",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1666310400,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/95d461d1ea484fa7bdca1a5fedeaae17",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/95d461d1ea484fa7bdca1a5fedeaae17"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 34.88,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 26,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEEedAAoRGBNTieaCSLIAOGvamFzFcAII1eOGv",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEEedAAoRGBNTieaCSLIAOGvamFzFcAII1eOGv"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  153
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  11
                                ],
                                "title": "Remember - Acoustic / Sped Up (with David Guetta)",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": [
                                {
                                  "actions": [
                                    {
                                      "action_type": 1,
                                      "icon": {
                                        "height": 720,
                                        "uri": "tiktok-obj/28px_primary_create_onDark3x.png",
                                        "url_list": [
                                          "https://p16-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                          "https://p19-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                          "https://p16-common.tiktokcdn-eu.com/tiktok-obj/28px_primary_create_onDark3x.png~tplv-tiktokx-origin.jpeg?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474"
                                        ],
                                        "url_prefix": null,
                                        "width": 720
                                      },
                                      "schema": "shoot"
                                    }
                                  ],
                                  "anchor_strong": null,
                                  "component_key": "anchor_effect",
                                  "description": "Effects",
                                  "extra": {
                                    "effect_source": 1,
                                    "is_commerce": 0,
                                    "resource_id": 7132473850863818000
                                  },
                                  "icon": {
                                    "height": 720,
                                    "uri": "tiktok-obj/20px_anchor_effect3x.png",
                                    "url_list": [
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_effect3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p19-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_effect3x.png~tplv-tiktokx-origin.image?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474",
                                      "https://p16-common.tiktokcdn-eu.com/tiktok-obj/20px_anchor_effect3x.png~tplv-tiktokx-origin.jpeg?biz_tag=anchor.effect&dr=10423&idc=no1a&ps=933b5bde&shcp=34ff8df6&shp=d05b14bd&t=4d5b0474"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "id": "3142092",
                                  "keyword": "BLUEY",
                                  "log_extra": "{\"anchor_id\":\"3142164\",\"anchor_name\":\"BLUEY\",\"anchor_type\":\"prop\",\"has_friends_info\":\"0\"}",
                                  "thumbnail": {
                                    "height": 64,
                                    "uri": "6cc6954646953fe834010f45ec18b7cb",
                                    "url_list": [
                                      "https://lf16-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/6cc6954646953fe834010f45ec18b7cb",
                                      "https://lf19-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/6cc6954646953fe834010f45ec18b7cb"
                                    ],
                                    "url_prefix": null,
                                    "width": 64
                                  },
                                  "type": 28
                                }
                              ],
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "download_mask_panel": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 1,
                                  "toast_msg": "This action isn’t allowed for this post",
                                  "transcode": 1
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_playlist"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "foryou",
                                  "cid": "42164",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=42164",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #foryou on TikTok!",
                                    "share_desc_info": "Check out #foryou on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: foryou",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/foryou?_r=1&name=foryou&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=42164&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00005057081810940997}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 2,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 6953523461427858000,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7164731765687422214",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7164731765687422000
                                ],
                                "GroupdIdList1": [
                                  7164731765687422000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Remember - Acoustic / Sped Up (with David Guetta)",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=7989cf68&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fWkOUEhyeqnX6GVsMi%2BLXWEjZic%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=aa9ceeab&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TxjPlH%2BnreMwHczuGN2q0C3L74w%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/fbd79d7820e2ef9b42a63cbf3b71286a~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=dda17a23&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0cN%2BzQetVKoPMaqLMy0pX5bmGQI%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "puqqwppo",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": false,
                                    "is_visible": false,
                                    "nick_name": "Nam Trinh",
                                    "sec_uid": "MS4wLjABAAAAZ7RzjbdxAYH5y1CJSM6U1ZDrswdnpbDc15NopLHqxQ7vlxEHpOqiqrISMAMF2-PZ",
                                    "status": 1,
                                    "uid": "7470916422412633096"
                                  }
                                ],
                                "audition_duration": 26,
                                "author": "Becky Hill & Speed Radio & xxtristanxo",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=f4578008&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wkaavuJ32ri0PXNQeIR3i9rMKWg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e21bfdd1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=dDRUtL7pYsilNNlaXehWZY%2Bf70o%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=32dc473b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Zk3uAG8mVmcJzK9TwWWLsnhPL3c%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a9b21cc4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=khgv5LisLaDQ0b49UNAHoAIBtKo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=37d6669e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j0%2BpzDL3h6AudOFFuL2HetHWics%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/977038aa01bf71d3f47b40a227be702d~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=584cbbe4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=%2FB1j74AExuwtpaupHcQhgZ8rAEU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1666622530,
                                "dmv_auto_show": false,
                                "duration": 26,
                                "duration_high_precision": {
                                  "audition_duration_precision": 26.23,
                                  "duration_precision": 26.23,
                                  "shoot_duration_precision": 26.23,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0.7629123,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/29528563fd604f0a82309b627cec3d90\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/6d6d6361250b401a9b2bc5aaa7a073af\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/c43e398cae8a47d7ae03309e32a6570e\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/649599fe9f1947808a9e1104fa1a76d7\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-13.869435,\"music_vid\":\"v10ad6g50000cdba8dbc77ua6phmlv4g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 7080096568119987000,
                                "id_str": "7080096568119986946",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Becky Hill & Speed Radio & xxtristanxo",
                                  "chorus_info": {
                                    "duration_ms": 42047,
                                    "start_ms": 92160
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIANQEXEDfJ0sBz1gEfRCdAA8F34AmBt4mVZ02.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 154194,
                                  "h5_url": "",
                                  "id": "7156620189935601666",
                                  "performers": null,
                                  "title": "Remember - Acoustic / Sped Up (with David Guetta)"
                                },
                                "meme_song_info": {},
                                "mid": "7080096568119986946",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1666310400,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/95d461d1ea484fa7bdca1a5fedeaae17",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/95d461d1ea484fa7bdca1a5fedeaae17"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 34.88,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 26,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEEedAAoRGBNTieaCSLIAOGvamFzFcAII1eOGv",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEEedAAoRGBNTieaCSLIAOGvamFzFcAII1eOGv"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  153
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  11
                                ],
                                "title": "Remember - Acoustic / Sped Up (with David Guetta)",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 7566,
                              "music_selected_from": "single_song",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"1403\">#foryou</h> <h id=\"4\">#rudovlaskamarii</h> <h id=\"1117\">#fypシ</h> <h id=\"5300\">#tiktok</h> <h id=\"9337\">#trend</h> <h id=\"2636\">#trendy</h> <h id=\"3282\">#parati</h> <h id=\"9749\">#xyzbca</h> <h id=\"8581\">#funny</h> <h id=\"5911\">#funnyvideos</h> <h id=\"3772\">#🤣</h> <h id=\"6735\">#🤣🤣🤣</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1403",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7090848158321737733",
                                    "hashtag_name": "rudovlaskamarii",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "4",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1117",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5300",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "44895",
                                    "hashtag_name": "trend",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9337",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "56243",
                                    "hashtag_name": "trendy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2636",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "65243",
                                    "hashtag_name": "parati",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3282",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1652484531221509",
                                    "hashtag_name": "xyzbca",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9749",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8581",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "107738",
                                    "hashtag_name": "funnyvideos",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5911",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1592200791961606",
                                    "hashtag_name": "🤣",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3772",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1592197588750342",
                                    "hashtag_name": "🤣🤣🤣",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6735",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 14,
                                "item_total": 152,
                                "mix_id": "7247481637792303899",
                                "name": "Sranda"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "CZ",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out rudovlaskamarii's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out rudovlaskamarii’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out rudovlaskamarii’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@rudovlaskamarii/video/7164731765687422214?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7164731765687422214&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:haven_archive\":\"{\\\"62ef28f85d0e40f1ac6d218c6d15a660\\\":\\\"1\\\",\\\"eeab474cee7d44e9892eefcd25d7b06f\\\":\\\"1\\\"}\",\"play_time_prob_dist\":\"[800,1.0299,1960.0274]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7164731765687422214",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "sticker_detail": {
                                "attributions": null,
                                "children": null,
                                "icon_url": {
                                  "height": 720,
                                  "uri": "6cc6954646953fe834010f45ec18b7cb",
                                  "url_list": [
                                    "https://lf16-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/6cc6954646953fe834010f45ec18b7cb",
                                    "https://lf19-effectcdn-sg.tiktokcdn.com/obj/ies.fe.effect.alisg/6cc6954646953fe834010f45ec18b7cb"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "id": "3142092",
                                "linked_anchors": null,
                                "name": "BLUEY",
                                "owner_id": "7073704969287828486",
                                "sec_uid": "MS4wLjABAAAAKAzQUN-La9V7II_FwdibWc4WMlN6Aa5FQ1lhet6ahOsdDkw9KjBFOA0XPYIj81ah",
                                "tags": null
                              },
                              "stickers": "3142092",
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 7,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "1403",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "7090848158321737733",
                                  "hashtag_name": "rudovlaskamarii",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 8,
                                  "tag_id": "4",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "1117",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 38,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "5300",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 45,
                                  "hashtag_id": "44895",
                                  "hashtag_name": "trend",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 39,
                                  "tag_id": "9337",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 53,
                                  "hashtag_id": "56243",
                                  "hashtag_name": "trendy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 46,
                                  "tag_id": "2636",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 61,
                                  "hashtag_id": "65243",
                                  "hashtag_name": "parati",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 54,
                                  "tag_id": "3282",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 69,
                                  "hashtag_id": "1652484531221509",
                                  "hashtag_name": "xyzbca",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 62,
                                  "tag_id": "9749",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 76,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 70,
                                  "tag_id": "8581",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 89,
                                  "hashtag_id": "107738",
                                  "hashtag_name": "funnyvideos",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 77,
                                  "tag_id": "5911",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 93,
                                  "hashtag_id": "1592200791961606",
                                  "hashtag_name": "🤣",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 90,
                                  "tag_id": "3772",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 101,
                                  "hashtag_id": "1592197588750342",
                                  "hashtag_name": "🤣🤣🤣",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 94,
                                  "tag_id": "6735",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6808535317404091398",
                              "handle": "rudovlaskamarii",
                              "displayName": "rudovlaskamarii",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/479814bd78cb2601a8c5e12edb04a14d~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=bf83564d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=tcC%2BBXbhSNzkh1PoWCu4H2UqXCs%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7241470958849051931",
                            "caption": "#fypシ #foryou ##tiktok #foryou #viral #comdey #😂😂😂",
                            "createdAt": "2023-06-06T07:25:56.000Z",
                            "url": "https://www.tiktok.com/@sus832a/video/7241470958849051931",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-p-0037-aiso/owy7AbtqnGzI87eI6eD3tKI4fEeQ1I8gwIjL9A~tplv-tiktokx-origin.image?dr=1347&refresh_token=3fbd820b&x-expires=1779343200&x-signature=juKRKd3KrFLjzyz%2FJ0LA6TN9%2FH0%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover&item=7241470958849051931",
                            "durationMs": 14837,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 58784,
                              "likes": 162,
                              "comments": 6,
                              "shares": 12,
                              "saves": 26
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/ee3053daccf30e05ad0da40e151a9daa/6a0ea817/video/no1a/mps/logo/v2/r/p/v0f044gc0000chvduujc77uc6mltsmi0/5d49595cc8a44c2189f578088b716dbf/4f0e00c0439b9f5df8ad048fd0f52a38/mp4/main.mp4?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=0&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=aWc0ZTs7ODw0Zjc7Zjw8Z0BpM3B3cGY6ZnhnazMzZjczM0BfMzQ1LTRjNS8xXmAyMjEyYSNmcGkzcjRncnNgLS1kMWNzcw%3D%3D&l=20260520063657E2B6D5ABC0E6B40093B5&definition=720p&du=15&item_id=7241470958849051931&l=20260520063657E2B6D5ABC0E6B40093B5&logo_type=tiktok_m&user_text=sus832a&btag=e000b8000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/efdc5c2ce0eb3e029b4ec7357ce6b44c/6a0ea817/video/tos/no1a/tos-no1a-ve-68c710-no/oUe9geQ16nAxvqEPft8wGjIADI5gaEwfR9bl9D/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=686&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZjtnOWk3NzZoNjM8ODpnaUBpM3B3cGY6ZnhnazMzZjczM0BhMWFiMzQzX14xLS02YWI0YSNmcGkzcjRncnNgLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e000b8000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fypシ",
                                  "cid": "1637342470396934",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1637342470396934",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fypシ on TikTok!",
                                    "share_desc_info": "Check out #fypシ on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fypシ",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp%E3%82%B7?_r=1&name=fyp%E3%82%B7&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=1637342470396934&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00010206859009254218}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7241470958849051931",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7241470958849052000
                                ],
                                "GroupdIdList1": [
                                  7241470958849052000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 14833,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "1.699029",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"744\">#fypシ</h> <h id=\"751\">#foryou</h> #<h id=\"768\">#tiktok</h> <h id=\"787\">#foryou</h> <h id=\"812\">#viral</h> <h id=\"843\">#comdey</h> <h id=\"880\">#😂😂😂</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "744",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "751",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "768",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "787",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "812",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "27959",
                                    "hashtag_name": "comdey",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "843",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1592200084612101",
                                    "hashtag_name": "😂😂😂",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "880",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "FR",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out qmf7006632l's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out qmf7006632l’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out qmf7006632l’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@sus832a/video/7241470958849051931?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7241470958849051931&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "story",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:haven_archive\":\"{\\\"84083db2a2f24db7bb7db9f764fed9e6\\\":\\\"1\\\",\\\"9466405c91b242f39888c524285b17c3\\\":\\\"1\\\",\\\"ba912bf084f5468d8237fce467cdcb2d\\\":\\\"1\\\",\\\"bfb1dfbe906641f7be360d0c57b7fb23\\\":\\\"1\\\"}\",\"play_time_prob_dist\":\"[800,0.7986,2736.8291]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7241470958849051931",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 5,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "744",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 13,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 6,
                                  "tag_id": "751",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 22,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 15,
                                  "tag_id": "768",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 23,
                                  "tag_id": "787",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 37,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "812",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 45,
                                  "hashtag_id": "27959",
                                  "hashtag_name": "comdey",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 38,
                                  "tag_id": "843",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 53,
                                  "hashtag_id": "1592200084612101",
                                  "hashtag_name": "😂😂😂",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 46,
                                  "tag_id": "880",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7238892224707560474",
                              "handle": "sus832a",
                              "displayName": "qmf7006632l",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/1cce2f2ad7aa11a6ad580a02e4de7faa~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=365ae998&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=i4vJ56%2F3EP0fZBcbl2XjNQMaZR0%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7302813757124709665",
                            "caption": "#fyp #foryou #foryoupage #fypシ #funny #tiktok ☺️☺️",
                            "createdAt": "2023-11-18T14:47:14.000Z",
                            "url": "https://www.tiktok.com/@helmut.stiewe75/video/7302813757124709665",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-p-0037-euttp/o8nEnJbfDDzWOPAY9qF1QsIERAuCAKmfEuBl0M~tplv-tiktokx-origin.image?dr=1347&refresh_token=490af56d&x-expires=1779343200&x-signature=y94tXgGxmhZemyAPcnt59eDc9pY%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover&item=7302813757124709665",
                            "durationMs": 40889,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 5449,
                              "likes": 206,
                              "comments": 2,
                              "shares": 6,
                              "saves": 44
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/a137c3d141be0e907beb344f6f082c19/6a0ea831/video/tos/no1a/tos-no1a-ve-68c710-no/oMUjdsIKcIPVexePIeZNnHgQGeAcLGg3AE5KZI/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=890&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=OzhoaWU0OmgzZTc7aTw5PEBpM3VyeXE5cjxmbzMzZjczM0BhLWA0Yi4tNWMxLzA0LzRgYSNpLW02MmRramBgLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/273bb7a57ff15ebe989ab2456ff827df/6a0ea831/video/tos/no1a/tos-no1a-ve-68c710-no/oIRsIPEDQnfDAumQzlMYEbqEnEFbfRAWOmBv3Q/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=852&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=NDNnZTY2MzllPGg8NjVpO0BpM3VyeXE5cjxmbzMzZjczM0A1NjA0YTEyNl8xLjEvY15iYSNpLW02MmRramBgLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyp",
                                  "cid": "229207",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=229207",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyp on TikTok!",
                                    "share_desc_info": "Check out #fyp on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyp",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp?_r=1&name=fyp&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=229207&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00036703982382088455}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7302813757124709665",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 40868,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "100.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"177\">#fyp</h> <h id=\"178\">#foryou</h> <h id=\"179\">#foryoupage</h> <h id=\"180\">#fypシ</h> <h id=\"181\">#funny</h> <h id=\"182\">#tiktok</h> ☺️☺️",
                                "text_extra": [
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "177",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "178",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "179",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "180",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "181",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "182",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "IT",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Helmut Stiewe's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Helmut Stiewe’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Helmut Stiewe’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@helmut.stiewe75/video/7302813757124709665?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7302813757124709665&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "upload",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:haven_archive\":\"{\\\"02f6cff8ed2a445689e1636b420dd4ee\\\":\\\"1\\\",\\\"32c8aec98dad43638a56e5f0350f4fda\\\":\\\"1\\\",\\\"474bd47995c741219900757a76ab550f\\\":\\\"1\\\",\\\"b6cddfa6f8f64e28bc247ce54699a41d\\\":\\\"1\\\",\\\"dd1514fa69d6487ea8bea83b0c154c0d\\\":\\\"1\\\"}\",\"PACK_VOD:vod_sr_class_v30_score\":\"63.019\",\"play_time_prob_dist\":\"[800,0.5854,4288.3963]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7302813757124709665",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "177",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 12,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "178",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "179",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "180",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 37,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "181",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 45,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 38,
                                  "tag_id": "182",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7296170447384445985",
                              "handle": "helmut.stiewe75",
                              "displayName": "Helmut Stiewe",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/c8eac13bb7dc3a6181f3170b7e8537fb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=71c13aef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3N6OnUcFgDAIiWTvKpQxtXR7k0k%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7302456994282114337",
                            "caption": "#fyp #foryou #foryoupage #fypシ #funny #tiktok ☺️☺️",
                            "createdAt": "2023-11-17T15:42:48.000Z",
                            "url": "https://www.tiktok.com/@helmut.stiewe75/video/7302456994282114337",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-p-0037-euttp/oEajGIgmIOKCwTIfQEv25eLALregEGexkPAaNP~tplv-tiktokx-origin.image?dr=1347&refresh_token=22c159d5&x-expires=1779343200&x-signature=Oqe41o2VbIn1neieFDNMQjUMlv0%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover&item=7302456994282114337",
                            "durationMs": 57400,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 5628,
                              "likes": 353,
                              "comments": 2,
                              "shares": 10,
                              "saves": 46
                            },
                            "media": {
                              "downloadUrl": "https://v15m.tiktokcdn-eu.com/c693fbf4e27cb8884a5e58106d7b2fff/6a0ea842/video/tos/no1a/tos-no1a-ve-68c710-no/oMVzi4YHDEtgfXymAYFQPbRncBfrlGDIELQFEV/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=905&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=OTk8MzNoZ2Q2ZjY7NTM7OUBpamg5cnM5cjxybzMzZjczM0BhXy9gM2BhXi8xLy8xYGFeYSNjbGsuMmRzZ19gLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000",
                              "downloadWithoutWatermarkUrl": "https://v15m.tiktokcdn-eu.com/1728a1e21515bf0fa56104d979a76725/6a0ea842/video/tos/no1a/tos-no1a-ve-68c710-no/oYLKrgGwQGEIMqkLeIAgIcYLmxvPle5NAeOjeF/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=883&ft=td_Lr8QLodzR12NvSt86zIxRap8biq_45SY&mime_type=video_mp4&rc=ZTczZzZpPDc2OjNoZzo8NkBpamg5cnM5cjxybzMzZjczM0AxLzYtMDZeXzQxMTViMTReYSNjbGsuMmRzZ19gLS1kMWNzcw%3D%3D&vvpl=1&l=20260520063657E2B6D5ABC0E6B40093B5&btag=e00088000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyp",
                                  "cid": "229207",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=229207",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyp on TikTok!",
                                    "share_desc_info": "Check out #fyp on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyp",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp?_r=1&name=fyp&u_code=f02k839gi2l527&_d=f3g6il3819ibf3&share_challenge_id=229207&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00035536602700781805}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"20260520063657E2B6D5ABC0E6B40093B5\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "20260520063657E2B6D5ABC0E6B40093B5",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7302456994282114337",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Love You So",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "The King Khan & BBQ Show",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1566615649,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":29.82,\"amplitude_peak\":1.0848756,\"apple_song_id\":1623849957,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f2984f7f3ca3409985083f60f596e148\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f0fdb3fcb7c0406fb206962aa1a39e66\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/fc14ac801f24432486935917800570cf\",\"merged_beats\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/bf44c9fb4fe54c2b968dae13bbaaa172\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7563294256070034434,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-5.3688707,\"music_vid\":\"v10ad6g50000c6snlnbc77u0opcfohl0\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6728562975734516000,
                                "id_str": "6728562975734515713",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "The King Khan & BBQ Show",
                                  "chorus_info": {
                                    "duration_ms": 16511,
                                    "start_ms": 37248
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/6aa2532c996940c484c6513b9049d494.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 225928,
                                  "h5_url": "",
                                  "id": "7096858055781926913",
                                  "performers": null,
                                  "title": "Love You So"
                                },
                                "meme_song_info": {},
                                "mid": "6728562975734515713",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/6a790bec1bf640c185753440ca131a7e"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10036,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/683d6c65834a54d315bd4e942a21c57e.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  165
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  3
                                ],
                                "title": "Love You So",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 57350,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "100.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"199\">#fyp</h> <h id=\"200\">#foryou</h> <h id=\"201\">#foryoupage</h> <h id=\"202\">#fypシ</h> <h id=\"203\">#funny</h> <h id=\"204\">#tiktok</h> ☺️☺️",
                                "text_extra": [
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "199",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "200",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "201",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "202",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "203",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "204",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"IT\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "IT",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Helmut Stiewe's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Helmut Stiewe’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Helmut Stiewe’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@helmut.stiewe75/video/7302456994282114337?_r=1&u_code=f02k839gi2l527&preview_pb=0&sharer_language=en&_d=f3g6il3819ibf3&share_item_id=7302456994282114337&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "upload",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:haven_archive\":\"{\\\"4270855e77bd45d0a1790b8ec9862e6b\\\":\\\"1\\\",\\\"53e77fedc20c4375838192b349e6692d\\\":\\\"1\\\",\\\"563d828e50d94f11bb17fd329389eab1\\\":\\\"1\\\",\\\"b4b0f62d0fb84465941c3bdb60754f71\\\":\\\"1\\\",\\\"f7638d8e2dfa4f3d835e613088382e59\\\":\\\"1\\\"}\",\"play_time_prob_dist\":\"[800,0.5365,4912.6137]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7302456994282114337",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "199",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 12,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "200",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 24,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "201",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 30,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 25,
                                  "tag_id": "202",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 37,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "203",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 45,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 38,
                                  "tag_id": "204",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7296170447384445985",
                              "handle": "helmut.stiewe75",
                              "displayName": "Helmut Stiewe",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/c8eac13bb7dc3a6181f3170b7e8537fb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=71c13aef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3N6OnUcFgDAIiWTvKpQxtXR7k0k%3D",
                              "verified": true
                            }
                          }
                        ],
                        "totalVideos": 14,
                        "page": {
                          "nextCursor": "20",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_hashtag_search",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "paginated": {
                    "value": {
                      "data": {
                        "hashtag": "fyp",
                        "region": null,
                        "videos": [
                          {
                            "id": "7184519009763593478",
                            "caption": "#fifa #ronaldo #siuuuu #funny #fypシ 😅",
                            "createdAt": "2023-01-03T20:03:08.000Z",
                            "url": "https://www.tiktok.com/@emikoo7/video/7184519009763593478",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/e21d4729d6bc4783b19965c0e964f63a_1672776191~tplv-tiktokx-origin.image?dr=1347&refresh_token=dadc48ac&x-expires=1779343200&x-signature=NlR8W0qzn0XO4y8JpmUy44M%2F7Bo%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 10700,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 279117252,
                              "likes": 19476446,
                              "comments": 124653,
                              "shares": 3166842,
                              "saves": 1849075
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/3d666452b1709a5dc781f50fa0707fb5/6a0ea829/video/tos/useast2a/tos-useast2a-ve-0068c003/okz0nk6kUA42OIh6gtIiCSPgVTX2kopFQuABfx/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1242&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=OWdoODk3N2Y7aTVnOTVpZ0BpMzx1NGk6Zmw7aDMzNzczM0AyLTQvNDFgNTMxMmMtNC8xYSNvZTZrcjRfZ25gLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000b5000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/506a4e71f548a1767a13adc97950f330/6a0ea829/video/tos/useast2a/tos-useast2a-ve-0068c002/o4sn4gJnjBifTGx8DDGI8AQcEBd0btKQKRogeJ/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1190&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=OGkzZDM5OTc4ODRnOGloO0BpMzx1NGk6Zmw7aDMzNzczM0AuMjNhLi9fXl8xNjJiYF42YSNvZTZrcjRfZ25gLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e0007d000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "wastalk",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=771da6cd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=trdkDRUHPcgg%2FgHpu9GVyaxQYIo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7e2270ac&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q1L%2FixRHw6ROXgA%2Fm0zFaSc%2BiMs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=522da70b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LpglQiKyc1yixv8QY8RyYMbFOZM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1034709f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=veFcALN9CoHxLvKODxbT57uGGFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=67168e63&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XJDHuTzNfC2rMVYVlSk9Wcn00XA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5df87a7f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nxtd5QNWXTYlet5HS29MDElBXak%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f3b7dd2e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=MK9im%2BXyhZjW42CLE6D6AsV9DJ8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=76d02733&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iVX16cQyO8xsjnKS1mFiDAPi6ec%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=8c073311&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PDNxPovVskdPKFWC5x1BRDT2ejU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=771da6cd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=trdkDRUHPcgg%2FgHpu9GVyaxQYIo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7e2270ac&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q1L%2FixRHw6ROXgA%2Fm0zFaSc%2BiMs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=522da70b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LpglQiKyc1yixv8QY8RyYMbFOZM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1034709f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=veFcALN9CoHxLvKODxbT57uGGFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=67168e63&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XJDHuTzNfC2rMVYVlSk9Wcn00XA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5df87a7f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nxtd5QNWXTYlet5HS29MDElBXak%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1636920213,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11,
                                  "duration_precision": 11,
                                  "shoot_duration_precision": 11,
                                  "video_duration_precision": 11
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7030518764307270914,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v10942g50000c68mn4rc77u72h7mhm50\",\"owner_id\":6977082998375089153,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7030518669809667000,
                                "id_str": "7030518669809666817",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=528ddd37&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=967PA6gVi%2FXlqHFKNH9VBtUpkG0%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=d614709d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LW0yJ3Xyp59VCRbIlxrlWijzqDc%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=581f6b54&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=%2BCQv1EnmQgtcXYDphJXdXk%2FwWNM%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "bvnkayani",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": false,
                                      "is_visible": false,
                                      "nick_name": "BVNKAYANI",
                                      "sec_uid": "MS4wLjABAAAAC0nV-xf8KQSM4fZ2ujRVsLfHHp-OeE9kIVuV8gTL0J0EsnXOYVWjSnD8EdT4Oc1E",
                                      "status": 1,
                                      "uid": "7118769614426768390"
                                    }
                                  ],
                                  "author": "Dom vodica",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Benzema\"",
                                  "mixed_title": "original sound - wastalk (Contains music from: Benzema - Dom vodica)",
                                  "music_release_info": {
                                    "group_release_date": 1672185600,
                                    "is_new_release_song": false
                                  },
                                  "title": "Benzema",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Dom vodica",
                                  "chorus_info": {
                                    "duration_ms": 50688,
                                    "start_ms": 44352
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 105889,
                                  "h5_url": "",
                                  "id": "7180430127178729473",
                                  "performers": null,
                                  "title": "Benzema"
                                },
                                "meme_song_info": {},
                                "mid": "7030518669809666817",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "wastalk",
                                "owner_id": "6977082998375089153",
                                "owner_nickname": "wastalk",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/7030518668392270593.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/7030518668392270593.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAD2QyDbOc0fzwxVXETS06A31w1O9mC0aq9WD2qfCivJ7ludp15Vf3Qzv9376cIyF_",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/c30c80d5775e88c0361d6e11ec719b54.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/c30c80d5775e88c0361d6e11ec719b54.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - wastalk",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": [
                                  {
                                    "action_id": "create_sticker",
                                    "code": 1,
                                    "extra": "112",
                                    "show_type": 1,
                                    "toast_msg": "Create sticker isn’t available for this video"
                                  },
                                  {
                                    "action_id": "share_to_story",
                                    "code": 1,
                                    "extra": "116",
                                    "show_type": 0
                                  }
                                ],
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fifa",
                                  "cid": "7716",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=7716",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fifa on TikTok!",
                                    "share_desc_info": "Check out #fifa on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fifa",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fifa?_r=1&name=fifa&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=7716&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.000446597260136396}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 2,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 7177012409448615000,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7184519009763593478",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 1,
                                "allow_create_sticker": {
                                  "disable_toast": "Create sticker isn’t available for this video",
                                  "status": 1
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "wastalk",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=771da6cd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=trdkDRUHPcgg%2FgHpu9GVyaxQYIo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7e2270ac&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q1L%2FixRHw6ROXgA%2Fm0zFaSc%2BiMs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=522da70b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LpglQiKyc1yixv8QY8RyYMbFOZM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1034709f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=veFcALN9CoHxLvKODxbT57uGGFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=67168e63&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XJDHuTzNfC2rMVYVlSk9Wcn00XA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5df87a7f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nxtd5QNWXTYlet5HS29MDElBXak%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f3b7dd2e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=MK9im%2BXyhZjW42CLE6D6AsV9DJ8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=76d02733&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iVX16cQyO8xsjnKS1mFiDAPi6ec%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=8c073311&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PDNxPovVskdPKFWC5x1BRDT2ejU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=771da6cd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=trdkDRUHPcgg%2FgHpu9GVyaxQYIo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7e2270ac&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q1L%2FixRHw6ROXgA%2Fm0zFaSc%2BiMs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=522da70b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LpglQiKyc1yixv8QY8RyYMbFOZM%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=1034709f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=veFcALN9CoHxLvKODxbT57uGGFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=67168e63&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XJDHuTzNfC2rMVYVlSk9Wcn00XA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/4d7a9467a528bfdf1053951a19bf3223~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5df87a7f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nxtd5QNWXTYlet5HS29MDElBXak%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1636920213,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11,
                                  "duration_precision": 11,
                                  "shoot_duration_precision": 11,
                                  "video_duration_precision": 11
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7030518764307270914,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v10942g50000c68mn4rc77u72h7mhm50\",\"owner_id\":6977082998375089153,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7030518669809667000,
                                "id_str": "7030518669809666817",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=528ddd37&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=967PA6gVi%2FXlqHFKNH9VBtUpkG0%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=d614709d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LW0yJ3Xyp59VCRbIlxrlWijzqDc%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/2881eee18b7d630d7e1e413a64d5552f~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=581f6b54&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=%2BCQv1EnmQgtcXYDphJXdXk%2FwWNM%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "bvnkayani",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": false,
                                      "is_visible": false,
                                      "nick_name": "BVNKAYANI",
                                      "sec_uid": "MS4wLjABAAAAC0nV-xf8KQSM4fZ2ujRVsLfHHp-OeE9kIVuV8gTL0J0EsnXOYVWjSnD8EdT4Oc1E",
                                      "status": 1,
                                      "uid": "7118769614426768390"
                                    }
                                  ],
                                  "author": "Dom vodica",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Benzema\"",
                                  "mixed_title": "original sound - wastalk (Contains music from: Benzema - Dom vodica)",
                                  "music_release_info": {
                                    "group_release_date": 1672185600,
                                    "is_new_release_song": false
                                  },
                                  "title": "Benzema",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Dom vodica",
                                  "chorus_info": {
                                    "duration_ms": 50688,
                                    "start_ms": 44352
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ooBUFCAWHmCDpaAE9AiiSAwag5E1vcbARrYhw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 105889,
                                  "h5_url": "",
                                  "id": "7180430127178729473",
                                  "performers": null,
                                  "title": "Benzema"
                                },
                                "meme_song_info": {},
                                "mid": "7030518669809666817",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "wastalk",
                                "owner_id": "6977082998375089153",
                                "owner_nickname": "wastalk",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/7030518668392270593.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/7030518668392270593.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAD2QyDbOc0fzwxVXETS06A31w1O9mC0aq9WD2qfCivJ7ludp15Vf3Qzv9376cIyF_",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/c30c80d5775e88c0361d6e11ec719b54.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/c30c80d5775e88c0361d6e11ec719b54.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - wastalk",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 10680,
                              "music_selected_from": "single_song",
                              "music_title_style": 1,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"1\">#fifa</h> <h id=\"33\">#ronaldo</h> <h id=\"117\">#siuuuu</h> <h id=\"136\">#funny</h> <h id=\"161\">#fypシ</h> 😅",
                                "text_extra": [
                                  {
                                    "hashtag_id": "7716",
                                    "hashtag_name": "fifa",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "70501",
                                    "hashtag_name": "ronaldo",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "33",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "34136459",
                                    "hashtag_name": "siuuuu",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "117",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "136",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "161",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "DE",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out EmikoO's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out EmikoO’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out EmikoO’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@emikoo7/video/7184519009763593478?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7184519009763593478&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10003\",\"play_time_prob_dist\":\"[800,0.8053,1757.8101]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7184519009763593478",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 5,
                                  "hashtag_id": "7716",
                                  "hashtag_name": "fifa",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "1",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 14,
                                  "hashtag_id": "70501",
                                  "hashtag_name": "ronaldo",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 6,
                                  "tag_id": "33",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 22,
                                  "hashtag_id": "34136459",
                                  "hashtag_name": "siuuuu",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 15,
                                  "tag_id": "117",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 29,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 23,
                                  "tag_id": "136",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 35,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 30,
                                  "tag_id": "161",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7011797287178388486",
                              "handle": "emikoo7",
                              "displayName": "EmikoO",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/a2371a984a29abb53b2a3598b8b165f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=7fc85b56&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Uv6%2FKW%2FfGEnR6kLbxwMpREM8m3M%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "6968183552089345286",
                            "caption": "For my FOLLOWERS! #💜 #candy #candydrawer #asmr #restock #refill #chocolate #krystleklear #fypシ #FYP #foryoupage #foryou #viral #kids #kidstiktok",
                            "createdAt": "2021-05-30T20:31:04.000Z",
                            "url": "https://www.tiktok.com/@krystleklear1/video/6968183552089345286",
                            "thumbnailUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/f516ff2377054cd7a61557b099fceb3c_1622406666~tplv-tiktokx-dmt-logom:tos-maliva-p-0000/bbbc54e3717c41069e7f23f8e65d80e0.image?dr=9230&refresh_token=c2c1fa00&x-expires=1779343200&x-signature=UmH8kTVflmPbKj%2BSEXM6Tw50sRY%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 54913,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 218039718,
                              "likes": 18599867,
                              "comments": 230264,
                              "shares": 552935,
                              "saves": 670636
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/44c075814dde0086ad0491f89ed1d3fd/6a0ea855/video/tos/useast2a/tos-useast2a-ve-0068c001/751df2edafc249b2a7cfc4f522773a0e/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=2055&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=MzlmNDc6PDM2OmhoZzppM0BpM2w6bm53cWt5NTMzNzczM0BiNmMyLWJgXi0xMjZiLjEvYSNrbmcxX2ZkX21gLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "add_yours_info": {
                                "video_source": 1
                              },
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 54,
                                "author": "Krystle Klear245",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d4077316&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=I7eIi1E68v8l551mISDBmnH3sxM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7162b9a8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BLzDhBaZbNpRjdr8nXauhNprT7o%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=be7c2e7c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N8yWjDxOIkFmcSkYCOa2zydwR3Q%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2ec4e2da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Z9t5BR7QFxdXStdQbU77thWq4kA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ed3f88d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Zo9fHqWjyYXuqWQ6AaeaBN6VIAU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=50fff699&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fXmUpHjN1u3Lgc7oAe9zEHNbPdk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=46729233&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XzLOEek%2Fs9BuPLRHTZQk36%2Bpnwo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=bb98b801&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ztN7nE3yIgKgXB2MOWxiLN5Kn5U%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=82930d14&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=e%2BpKqwct8MW2FKVywLB3r8BcAdw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d4077316&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=I7eIi1E68v8l551mISDBmnH3sxM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7162b9a8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BLzDhBaZbNpRjdr8nXauhNprT7o%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=be7c2e7c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N8yWjDxOIkFmcSkYCOa2zydwR3Q%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2ec4e2da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Z9t5BR7QFxdXStdQbU77thWq4kA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ed3f88d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Zo9fHqWjyYXuqWQ6AaeaBN6VIAU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=50fff699&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fXmUpHjN1u3Lgc7oAe9zEHNbPdk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1622406675,
                                "dmv_auto_show": false,
                                "duration": 54,
                                "duration_high_precision": {
                                  "audition_duration_precision": 54,
                                  "duration_precision": 54,
                                  "shoot_duration_precision": 54,
                                  "video_duration_precision": 54
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":6968183552089345286,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000c2pvc32vmmn90i761s40\",\"owner_id\":6940064502084944901,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0,\"ugc_search\":1}",
                                "has_commerce_right": true,
                                "id": 6968183473228041000,
                                "id_str": "6968183473228040966",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "6968183473228040966",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "krystleklear1",
                                "owner_id": "6940064502084944901",
                                "owner_nickname": "Krystle Klear245",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6968183548935195398.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6968183548935195398.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAa_q_5O4hVBzE7x7ATRXXradVEuo4P3uda9N7qiOooCbBeOz2wtkb1ET4VoKAdhaB",
                                "shoot_duration": 54,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/62cb2786655c39e1b22238d8c0987024.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/62cb2786655c39e1b22238d8c0987024.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - krystleklear1",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 54
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "download_mask_panel": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 1,
                                  "toast_msg": "This action isn’t allowed for this post",
                                  "transcode": 1
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "💜",
                                  "cid": "1592171271843845",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1592171271843845",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #💜 on TikTok!",
                                    "share_desc_info": "Check out #💜 on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: 💜",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/%F0%9F%92%9C?_r=1&name=%F0%9F%92%9C&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=1592171271843845&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0010560644735377984}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 2,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 0,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "6968183552089345286",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 54,
                                "author": "Krystle Klear245",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d4077316&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=I7eIi1E68v8l551mISDBmnH3sxM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7162b9a8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BLzDhBaZbNpRjdr8nXauhNprT7o%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=be7c2e7c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N8yWjDxOIkFmcSkYCOa2zydwR3Q%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2ec4e2da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Z9t5BR7QFxdXStdQbU77thWq4kA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ed3f88d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Zo9fHqWjyYXuqWQ6AaeaBN6VIAU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=50fff699&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fXmUpHjN1u3Lgc7oAe9zEHNbPdk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=46729233&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XzLOEek%2Fs9BuPLRHTZQk36%2Bpnwo%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=bb98b801&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ztN7nE3yIgKgXB2MOWxiLN5Kn5U%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=82930d14&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=e%2BpKqwct8MW2FKVywLB3r8BcAdw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=d4077316&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=I7eIi1E68v8l551mISDBmnH3sxM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=7162b9a8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BLzDhBaZbNpRjdr8nXauhNprT7o%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=be7c2e7c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N8yWjDxOIkFmcSkYCOa2zydwR3Q%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2ec4e2da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Z9t5BR7QFxdXStdQbU77thWq4kA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ed3f88d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Zo9fHqWjyYXuqWQ6AaeaBN6VIAU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=50fff699&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fXmUpHjN1u3Lgc7oAe9zEHNbPdk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1622406675,
                                "dmv_auto_show": false,
                                "duration": 54,
                                "duration_high_precision": {
                                  "audition_duration_precision": 54,
                                  "duration_precision": 54,
                                  "shoot_duration_precision": 54,
                                  "video_duration_precision": 54
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":6968183552089345286,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000c2pvc32vmmn90i761s40\",\"owner_id\":6940064502084944901,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0,\"ugc_search\":1}",
                                "has_commerce_right": true,
                                "id": 6968183473228041000,
                                "id_str": "6968183473228040966",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "6968183473228040966",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "krystleklear1",
                                "owner_id": "6940064502084944901",
                                "owner_nickname": "Krystle Klear245",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6968183548935195398.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6968183548935195398.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAa_q_5O4hVBzE7x7ATRXXradVEuo4P3uda9N7qiOooCbBeOz2wtkb1ET4VoKAdhaB",
                                "shoot_duration": 54,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/62cb2786655c39e1b22238d8c0987024.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/62cb2786655c39e1b22238d8c0987024.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - krystleklear1",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 54
                              },
                              "music_begin_time_in_ms": 0,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "For my FOLLOWERS! <h id=\"1212\">#💜</h> <h id=\"107\">#candy</h> <h id=\"2499\">#candydrawer</h> <h id=\"5416\">#asmr</h> <h id=\"5881\">#restock</h> <h id=\"9578\">#refill</h> <h id=\"8279\">#chocolate</h> <h id=\"8868\">#krystleklear</h> <h id=\"8533\">#fypシ</h> <h id=\"8156\">#FYP</h> <h id=\"2105\">#foryoupage</h> <h id=\"9726\">#foryou</h> <h id=\"7475\">#viral</h> <h id=\"3610\">#kids</h> <h id=\"1875\">#kidstiktok</h>",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1592171271843845",
                                    "hashtag_name": "💜",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1212",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "9189",
                                    "hashtag_name": "candy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "107",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "67787504",
                                    "hashtag_name": "candydrawer",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2499",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1248236",
                                    "hashtag_name": "asmr",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5416",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "633901",
                                    "hashtag_name": "restock",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5881",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "25030",
                                    "hashtag_name": "refill",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9578",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "12763",
                                    "hashtag_name": "chocolate",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8279",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1700318314056710",
                                    "hashtag_name": "krystleklear",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8868",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8533",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8156",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2105",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9726",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7475",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5436",
                                    "hashtag_name": "kids",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3610",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1583772005372942",
                                    "hashtag_name": "kidstiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1875",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Krystle Klear245's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Krystle Klear245’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Krystle Klear245’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@krystleklear1/video/6968183552089345286?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=6968183552089345286&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10039\",\"play_time_prob_dist\":\"[800,0.5458,4981.5166]\"}"
                              },
                              "sort_label": "",
                              "special_mode": 1,
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "6968183552089345286",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"generate_time\":\"0\",\"lvl1_category_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"predict_ctr_score\":0.002718434865713149,\"hot_level\":\"0\",\"word_type_list\":\"\",\"lvl3_cate_list\":\"\",\"word_type_version_map\":\"\",\"is_time_sensitive\":\"0\",\"ecom_trigger_info_map\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall,global_video_top_counter_recall,video_sar_top_counter_passive_recall\",\"visualize_sug_product_id\":\"\",\"ecom_intent\":\"2\",\"video_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info\":\"\",\"sug_user_id\":\"\",\"is_ramandan_promotion\":\"\"}",
                                        "word": "snack drawer restock containers",
                                        "word_id": "6672571126201344733",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 21,
                                  "hashtag_id": "1592171271843845",
                                  "hashtag_name": "💜",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 18,
                                  "tag_id": "1212",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 28,
                                  "hashtag_id": "9189",
                                  "hashtag_name": "candy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 22,
                                  "tag_id": "107",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 41,
                                  "hashtag_id": "67787504",
                                  "hashtag_name": "candydrawer",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 29,
                                  "tag_id": "2499",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 47,
                                  "hashtag_id": "1248236",
                                  "hashtag_name": "asmr",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 42,
                                  "tag_id": "5416",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 56,
                                  "hashtag_id": "633901",
                                  "hashtag_name": "restock",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 48,
                                  "tag_id": "5881",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 64,
                                  "hashtag_id": "25030",
                                  "hashtag_name": "refill",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 57,
                                  "tag_id": "9578",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 75,
                                  "hashtag_id": "12763",
                                  "hashtag_name": "chocolate",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 65,
                                  "tag_id": "8279",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 89,
                                  "hashtag_id": "1700318314056710",
                                  "hashtag_name": "krystleklear",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 76,
                                  "tag_id": "8868",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 95,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 90,
                                  "tag_id": "8533",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 100,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 96,
                                  "tag_id": "8156",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 112,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 101,
                                  "tag_id": "2105",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 120,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 113,
                                  "tag_id": "9726",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 127,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 121,
                                  "tag_id": "7475",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 133,
                                  "hashtag_id": "5436",
                                  "hashtag_name": "kids",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 128,
                                  "tag_id": "3610",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 145,
                                  "hashtag_id": "1583772005372942",
                                  "hashtag_name": "kidstiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 134,
                                  "tag_id": "1875",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": 3,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6940064502084944901",
                              "handle": "krystleklear1",
                              "displayName": "Krystle Klear245",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/6000460e5349722338c9346c95764cd9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2ec4e2da&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Z9t5BR7QFxdXStdQbU77thWq4kA%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7126718425287691563",
                            "caption": "Congrats Marianna & Carl  💍♥️ #harrystyles #loveontour #hslot #harrystylesloveontour #hslotlisbon #loveontourlisbon #proposal #Love #loml #harrystylesvids #harrystylesedit #harryshouse #youarehome #youarehomeharrystyles #onedirection #hs #hshq #1d #tpwk #viral #xyzbca #foryou #fy #fyp #fypシ",
                            "createdAt": "2022-08-01T01:47:21.000Z",
                            "url": "https://www.tiktok.com/@francis.tpwk/video/7126718425287691563",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/6c867d4b1a864a8982b92e46fe25e02b_1659318458~tplv-tiktokx-origin.image?dr=1347&refresh_token=debe7630&x-expires=1779343200&x-signature=lvZC%2FGeAcpjlH8%2BKyvv%2B8ZrPlZQ%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 111779,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 103484572,
                              "likes": 18501040,
                              "comments": 99184,
                              "shares": 256982,
                              "saves": 1471711
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/da6896277877418b938a1b2619fa1822/6a0ea88e/video/tos/maliva/tos-maliva-ve-0068c799-us/44a0a9de41964fe7a106c34b32e846d5/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=1431&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=ZjY2Nzo3PGY2NDk7aDQ1ZkBpajozdGQ6Zm5sZTMzZzczNEBgNTMwLzMxX2IxYi5gLTUuYSNpZWU2cjRvcWdgLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/28c4b5da972d7433084ff8486f4cc494/6a0ea88e/video/tos/maliva/tos-maliva-ve-0068c799-us/36b20ad90530499f9f30dc07a99ae7c4/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=1423&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=ZzZnOmU5OzRnODhlOzwzZEBpajozdGQ6Zm5sZTMzZzczNEBjMzMtMDYzXmExNGA2NjFjYSNpZWU2cjRvcWdgLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "The Essential Elvis Presley",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "Elvis Presley",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7317046642253758470",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=cf0a8caa&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=uVIlhFqLp%2FS7GZRQZJQpb0cQIfM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=fb355545&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RUev%2FZAznu1C6f3f3irjYrU%2FRBU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=11182238&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SU%2F12PBsxwcaWuYbmbmmF9W6r2k%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7317046642253758470",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c0b3aac2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=6xQ%2FA6q5hrqf8dTUp6ZirZyfuJA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2e5cef7b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0dVwzZ6bNlOPj9mScJgcxe%2Ba6hI%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=15ec111c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=v2bII67JGypK0N%2BGlcdGtQX3U%2BU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1559131573,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":28.29,\"amplitude_peak\":1.0805856,\"apple_song_id\":217635636,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/65f6d47c58984b80ae90da7c29e2ef0a\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/1b337f49abb7471bb3c0bcdbca195fdf\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/754db0f4ace64d7cae4226414e14b96f\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/3b6171cdefa54afdb977e2b8c71d388c\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-12.577581,\"music_vid\":\"v10ad6g50000d6aapqfog65o8qbu229g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6696419118423214000,
                                "id_str": "6696419118423214081",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Elvis Presley",
                                  "chorus_info": {
                                    "duration_ms": 26304,
                                    "start_ms": 83712
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 177387,
                                  "h5_url": "",
                                  "id": "6696407822294321153",
                                  "performers": null,
                                  "title": "Can't Help Falling In Love"
                                },
                                "meme_song_info": {},
                                "mid": "6696419118423214081",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1032825600,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ogEZfkMUwODSaBDhBgfTFjCQOzICO1xpBKlprt",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ogEZfkMUwODSaBDhBgfTFjCQOzICO1xpBKlprt"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 48,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okiH9A006BVSgQuAi91oDsAAh2VfE76AWE9QEB",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okiH9A006BVSgQuAi91oDsAAh2VfE76AWE9QEB"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  154,
                                  153,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  11,
                                  34,
                                  4
                                ],
                                "title": "Can't Help Falling In Love",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "component_key_placeholder"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "HarryStyles",
                                  "cid": "18591",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=18591",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #harrystyles on TikTok!",
                                    "share_desc_info": "Check out #harrystyles on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: harrystyles",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/harrystyles?_r=1&name=harrystyles&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=18591&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0009584423850156137}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 2,
                              "follow_up_publish_from_id": 7125807607306112000,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7126718425287691563",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "interaction_tag_info": {
                                "interest_level": 1,
                                "tagged_users": [
                                  {
                                    "avatar_168x168": {
                                      "data_size": 0,
                                      "height": 720,
                                      "uri": "tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=f66bea37&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Ob7DCC9zIS1ZF3vB1tlqtLuOpLQ%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=8c0007ab&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=l56bM6jhsRZl6ZZtwN7pu%2FJhpHw%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=e9dd86fc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=XyPLMy6PXup565j8ilpvqZ52T3w%3D"
                                      ],
                                      "url_prefix": null,
                                      "width": 720
                                    },
                                    "avatar_thumb": {
                                      "data_size": 0,
                                      "height": 720,
                                      "uri": "tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a7bdcac7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ukStnqtmg%2FrZ%2BICsUkEfC7e6AJ0%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=615521d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=LIjlL0AJxPIzDh%2F0mmBgzJgwyto%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/d062dfc2badc475f0cf94e49c38d75a3~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=d77b4230&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3FwSy482VogCOxUEZLRN0EIWzN8%3D"
                                      ],
                                      "url_prefix": null,
                                      "width": 720
                                    },
                                    "custom_verify": "Verified account",
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "interest_level": 1,
                                    "invitation_status": 0,
                                    "is_business_account": false,
                                    "nickname": "HSHQ",
                                    "uid": "6738864848179299333",
                                    "unique_id": "hshq"
                                  },
                                  {
                                    "avatar_168x168": {
                                      "data_size": 0,
                                      "height": 720,
                                      "uri": "tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=2e2029eb&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jRj7tLmRP2qCexS%2BpWdXtKEsQak%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=559fe1ee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=%2F%2FzE6WuH%2BIFW65dZRACgqA3HQ4U%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=46c317b4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wRuskUyLyX5a8LNCOJqxo32PUP0%3D"
                                      ],
                                      "url_prefix": null,
                                      "width": 720
                                    },
                                    "avatar_thumb": {
                                      "data_size": 0,
                                      "height": 720,
                                      "uri": "tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=70916961&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RcEaIdjE11o6CMCmmUUm0Zb9HPw%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=23c8263c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=xY8usBcAV8X%2B4mon1cxrysZ3Zwg%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/b7cc2728ebf24335fc4cc1df0e302f65~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ffa95d07&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=f8FOn%2FH5X0z1x7QLY241yrvk%2FFM%3D"
                                      ],
                                      "url_prefix": null,
                                      "width": 720
                                    },
                                    "enterprise_verify_reason": "verified account",
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "interest_level": 1,
                                    "invitation_status": 0,
                                    "is_business_account": false,
                                    "nickname": "Pleasing",
                                    "uid": "6956674095393358854",
                                    "unique_id": "pleasing"
                                  }
                                ],
                                "video_label_text": ""
                              },
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "The Essential Elvis Presley",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "Elvis Presley",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7317046642253758470",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=cf0a8caa&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=uVIlhFqLp%2FS7GZRQZJQpb0cQIfM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=fb355545&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=RUev%2FZAznu1C6f3f3irjYrU%2FRBU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=11182238&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SU%2F12PBsxwcaWuYbmbmmF9W6r2k%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7317046642253758470",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c0b3aac2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=6xQ%2FA6q5hrqf8dTUp6ZirZyfuJA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=2e5cef7b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0dVwzZ6bNlOPj9mScJgcxe%2Ba6hI%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7317046642253758470~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=15ec111c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=v2bII67JGypK0N%2BGlcdGtQX3U%2BU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1559131573,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":28.29,\"amplitude_peak\":1.0805856,\"apple_song_id\":217635636,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/65f6d47c58984b80ae90da7c29e2ef0a\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/1b337f49abb7471bb3c0bcdbca195fdf\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/754db0f4ace64d7cae4226414e14b96f\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/3b6171cdefa54afdb977e2b8c71d388c\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-12.577581,\"music_vid\":\"v10ad6g50000d6aapqfog65o8qbu229g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6696419118423214000,
                                "id_str": "6696419118423214081",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Elvis Presley",
                                  "chorus_info": {
                                    "duration_ms": 26304,
                                    "start_ms": 83712
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/owCAnF8r9pZ2DT1AZfCB0stegQEWBCAE5prkEO.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 177387,
                                  "h5_url": "",
                                  "id": "6696407822294321153",
                                  "performers": null,
                                  "title": "Can't Help Falling In Love"
                                },
                                "meme_song_info": {},
                                "mid": "6696419118423214081",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 1032825600,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ogEZfkMUwODSaBDhBgfTFjCQOzICO1xpBKlprt",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ogEZfkMUwODSaBDhBgfTFjCQOzICO1xpBKlprt"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 48,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okiH9A006BVSgQuAi91oDsAAh2VfE76AWE9QEB",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okiH9A006BVSgQuAi91oDsAAh2VfE76AWE9QEB"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  154,
                                  153,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  11,
                                  34,
                                  4
                                ],
                                "title": "Can't Help Falling In Love",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 111600,
                              "music_selected_from": "single_song",
                              "music_title_style": 0,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "Congrats Marianna &amp; Carl  💍♥️ <h id=\"2162\">#harrystyles</h> <h id=\"7724\">#loveontour</h> <h id=\"7939\">#hslot</h> <h id=\"7684\">#harrystylesloveontour</h> <h id=\"2271\">#hslotlisbon</h> <h id=\"3932\">#loveontourlisbon</h> <h id=\"5133\">#proposal</h> <h id=\"1679\">#Love</h> <h id=\"7408\">#loml</h> <h id=\"1257\">#harrystylesvids</h> <h id=\"451\">#harrystylesedit</h> <h id=\"5058\">#harryshouse</h> <h id=\"7179\">#youarehome</h> <h id=\"850\">#youarehomeharrystyles</h> <h id=\"9446\">#onedirection</h> <h id=\"2823\">#hs</h> <h id=\"8299\">#hshq</h> <h id=\"3012\">#1d</h> <h id=\"2956\">#tpwk</h> <h id=\"8478\">#viral</h> <h id=\"7804\">#xyzbca</h> <h id=\"4886\">#foryou</h> <h id=\"6226\">#fy</h> <h id=\"814\">#fyp</h> <h id=\"996\">#fypシ</h>",
                                "text_extra": [
                                  {
                                    "hashtag_id": "18591",
                                    "hashtag_name": "harrystyles",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2162",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1634580553024513",
                                    "hashtag_name": "loveontour",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7724",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1604895220600838",
                                    "hashtag_name": "hslot",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7939",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1650092607234054",
                                    "hashtag_name": "harrystylesloveontour",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7684",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1667223211735046",
                                    "hashtag_name": "hslotlisbon",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2271",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1667226876705798",
                                    "hashtag_name": "loveontourlisbon",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3932",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "136146",
                                    "hashtag_name": "proposal",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5133",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "4231",
                                    "hashtag_name": "love",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1679",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7595",
                                    "hashtag_name": "loml",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7408",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1649872828350470",
                                    "hashtag_name": "harrystylesvids",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1257",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "25620",
                                    "hashtag_name": "harrystylesedit",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "451",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "17698213",
                                    "hashtag_name": "harryshouse",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5058",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1082249",
                                    "hashtag_name": "youarehome",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7179",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7073866164295860230",
                                    "hashtag_name": "youarehomeharrystyles",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "850",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "996",
                                    "hashtag_name": "onedirection",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9446",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "40916",
                                    "hashtag_name": "hs",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2823",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "33070693",
                                    "hashtag_name": "hshq",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8299",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7726",
                                    "hashtag_name": "1d",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3012",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1598907916025861",
                                    "hashtag_name": "tpwk",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2956",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8478",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1652484531221509",
                                    "hashtag_name": "xyzbca",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7804",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "4886",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "153828",
                                    "hashtag_name": "fy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6226",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "814",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "996",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 14,
                                "item_total": 59,
                                "mix_id": "7139717105871588138",
                                "name": "hslot 2022 Euro"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "LK",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out francis.tpwk's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out francis.tpwk’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out francis.tpwk’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@francis.tpwk/video/7126718425287691563?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7126718425287691563&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.3962,7851.9346]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7126718425287691563",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"is_time_sensitive\":\"0\",\"sug_user_id\":\"\",\"recall_reason\":\"global_video_top_counter_recall,video_sar_top_counter_passive_recall,global_video_sar_top_counter_passive_recall\",\"ecom_intent\":\"0\",\"word_type_list\":\"\",\"hot_level\":\"0\",\"predict_ctr_score\":0.0033454878704068385,\"ecom_trigger_info\":\"\",\"poi_card_id_list\":\"\",\"word_type_version_map\":\"\",\"words_type_to_dmp_list\":\"\",\"is_ramandan_promotion\":\"\",\"lvl3_cate_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"lvl1_category_id\":\"\",\"ecom_trigger_info_map\":\"\",\"visualize_sug_product_id\":\"\",\"video_id\":\"\",\"generate_time\":\"0\"}",
                                        "word": "can't help falling in love harry styles",
                                        "word_id": "910133717643934772",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 43,
                                  "hashtag_id": "18591",
                                  "hashtag_name": "harrystyles",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "2162",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 55,
                                  "hashtag_id": "1634580553024513",
                                  "hashtag_name": "loveontour",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 44,
                                  "tag_id": "7724",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 62,
                                  "hashtag_id": "1604895220600838",
                                  "hashtag_name": "hslot",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 56,
                                  "tag_id": "7939",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 85,
                                  "hashtag_id": "1650092607234054",
                                  "hashtag_name": "harrystylesloveontour",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 63,
                                  "tag_id": "7684",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 98,
                                  "hashtag_id": "1667223211735046",
                                  "hashtag_name": "hslotlisbon",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 86,
                                  "tag_id": "2271",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 116,
                                  "hashtag_id": "1667226876705798",
                                  "hashtag_name": "loveontourlisbon",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 99,
                                  "tag_id": "3932",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 126,
                                  "hashtag_id": "136146",
                                  "hashtag_name": "proposal",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 117,
                                  "tag_id": "5133",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 132,
                                  "hashtag_id": "4231",
                                  "hashtag_name": "love",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 127,
                                  "tag_id": "1679",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 138,
                                  "hashtag_id": "7595",
                                  "hashtag_name": "loml",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 133,
                                  "tag_id": "7408",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 155,
                                  "hashtag_id": "1649872828350470",
                                  "hashtag_name": "harrystylesvids",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 139,
                                  "tag_id": "1257",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 172,
                                  "hashtag_id": "25620",
                                  "hashtag_name": "harrystylesedit",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 156,
                                  "tag_id": "451",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 185,
                                  "hashtag_id": "17698213",
                                  "hashtag_name": "harryshouse",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 173,
                                  "tag_id": "5058",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 197,
                                  "hashtag_id": "1082249",
                                  "hashtag_name": "youarehome",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 186,
                                  "tag_id": "7179",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 220,
                                  "hashtag_id": "7073866164295860230",
                                  "hashtag_name": "youarehomeharrystyles",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 198,
                                  "tag_id": "850",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 234,
                                  "hashtag_id": "996",
                                  "hashtag_name": "onedirection",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 221,
                                  "tag_id": "9446",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 238,
                                  "hashtag_id": "40916",
                                  "hashtag_name": "hs",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 235,
                                  "tag_id": "2823",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 244,
                                  "hashtag_id": "33070693",
                                  "hashtag_name": "hshq",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 239,
                                  "tag_id": "8299",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 248,
                                  "hashtag_id": "7726",
                                  "hashtag_name": "1d",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 245,
                                  "tag_id": "3012",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 254,
                                  "hashtag_id": "1598907916025861",
                                  "hashtag_name": "tpwk",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 249,
                                  "tag_id": "2956",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 261,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 255,
                                  "tag_id": "8478",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 269,
                                  "hashtag_id": "1652484531221509",
                                  "hashtag_name": "xyzbca",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 262,
                                  "tag_id": "7804",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 277,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 270,
                                  "tag_id": "4886",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 281,
                                  "hashtag_id": "153828",
                                  "hashtag_name": "fy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 278,
                                  "tag_id": "6226",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 286,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 282,
                                  "tag_id": "814",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 292,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 287,
                                  "tag_id": "996",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6967127965972890630",
                              "handle": "francis.tpwk",
                              "displayName": "francis.tpwk",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7345098869002207274~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fc81424f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=pplAXuoD1DRqBjubzdNlPjz8Pd4%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7184568534595374378",
                            "caption": "Obsessed with you! 😂😂 #funny #relatable #fyp #fypシ #notjayswift",
                            "createdAt": "2023-01-03T23:15:33.000Z",
                            "url": "https://www.tiktok.com/@not.jayswift/video/7184568534595374378",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/bb6c147623f54988974b32ff71a2322b~tplv-tiktokx-origin.image?dr=1347&refresh_token=f26bade6&x-expires=1779343200&x-signature=z2byAi2aBuxpHes%2B3Um0zayePQ4%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 6940,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 109408566,
                              "likes": 17729668,
                              "comments": 65579,
                              "shares": 1517940,
                              "saves": 2263752
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/b5e902b61ea7908fdce292a4a28e1223/6a0ea825/video/tos/maliva/tos-maliva-ve-0068c799-us/8202560708f0435b8b100eb279cfdcf7/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=992&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NDU5ZzNlMzxnOWY1ZjxmZUBpajdwNmQ6ZndlaDMzZzczNEA1YjYzYDY0X14xLV9fMF5eYSNeZGNscjRfYW5gLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000bd000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/54d34baafb25bb9aead3f652f6ec5aa8/6a0ea825/video/tos/maliva/tos-maliva-ve-0068c799-us/ccfe923e6d68466397207a9c75911fff/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=956&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=aGVmPDw8OGc5ZmQ7O2U1OUBpajdwNmQ6ZndlaDMzZzczNEAxMTYwLzQtNV8xNTM2LzVhYSNeZGNscjRfYW5gLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000bd000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 6,
                                "author": "lissieoni",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e10ecb21&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t6hX9hhaiuMsf%2Bq7aCCS1f%2Fu5dk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ccdb459d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Fp0%2BCvY6wb82A1Wg4YHMsPxRyuk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0647f102&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WkIt4CRTZRtadrS3lFFMwHyqDR4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=970843ef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WWfMinRyKNueFkfIKfnjE9LCR3Y%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93271913&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=KbHksldCDY%2B%2BWGzyyAHOEo9itnw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=faa588b1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qVuovOyzxlyrQaHxbGK4HO63gw8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=d19ee2b6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YZfmYEpeWwTwyxQc4tXQjdfQtR4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=703f7025&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=6QM6KBs5xVXWd4jbk2HosJVNFtU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=2b126a04&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Anm%2BEiOQBVLK1kMnPcmi3MxxR0w%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e10ecb21&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t6hX9hhaiuMsf%2Bq7aCCS1f%2Fu5dk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ccdb459d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Fp0%2BCvY6wb82A1Wg4YHMsPxRyuk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0647f102&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WkIt4CRTZRtadrS3lFFMwHyqDR4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=970843ef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WWfMinRyKNueFkfIKfnjE9LCR3Y%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93271913&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=KbHksldCDY%2B%2BWGzyyAHOEo9itnw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=faa588b1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qVuovOyzxlyrQaHxbGK4HO63gw8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1659226806,
                                "dmv_auto_show": false,
                                "duration": 6,
                                "duration_high_precision": {
                                  "audition_duration_precision": 6.348,
                                  "duration_precision": 6.348,
                                  "shoot_duration_precision": 6.348,
                                  "video_duration_precision": 6.348
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":4,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7126324840138575110,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cbisld3c77ub9pa0h750\",\"owner_id\":6944396544091915270,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7126324816604401000,
                                "id_str": "7126324816604400390",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "សាន ផានិត",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"ឈឺណាស់\"",
                                  "mixed_title": "why is everyone using my sound (Contains music from: ឈឺណាស់ - សាន ផានិត)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "ឈឺណាស់",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "សាន ផានិត",
                                  "chorus_info": {
                                    "duration_ms": 25152,
                                    "start_ms": 73344
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 222523,
                                  "h5_url": "",
                                  "id": "7386599751449151489",
                                  "performers": null,
                                  "title": "ឈឺណាស់"
                                },
                                "meme_song_info": {},
                                "mid": "7126324816604400390",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "lissieoni",
                                "owner_id": "6944396544091915270",
                                "owner_nickname": "lissieoni",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7126324829384379142.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7126324829384379142.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAaipAar72eEqrp8QEQ0_wtWk8hQFcUwm5cplFvY7GtHModivnpcWOay2hWGhGob_X",
                                "shoot_duration": 6,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/33e23e3ffdd6e10d8c6f2f41876ec145.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/33e23e3ffdd6e10d8c6f2f41876ec145.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "why is everyone using my sound",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "Funny",
                                  "cid": "5424",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "What's so #Funny?",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "tiktok-obj/be28720eebca22cdd301d2ea221af814.png",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=5424",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #funny on TikTok!",
                                    "share_desc_info": "Check out #funny on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: funny",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/funny?_r=1&name=funny&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=5424&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0005993954806061529}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7184568534595374378",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7184568534595374000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "OBSESSED WITH YOU?!",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.07150000000000001,
                                    "source_width": 0.872,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":3924.562053,\"p\":-1,\"y\":0.1542,\"h\":0.1135,\"isRatioCoord\":true,\"start_time\":1950.388414,\"r\":0,\"w\":0.9147,\"s\":1}]",
                                  "type": 18
                                },
                                {
                                  "attr": "",
                                  "index": 1,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "YES!",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.07150000000000001,
                                    "source_width": 0.21777777777777782,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":5264.462915,\"p\":-1,\"y\":0.1538,\"h\":0.1135,\"isRatioCoord\":true,\"start_time\":4630.190502,\"r\":0,\"w\":0.2604,\"s\":1}]",
                                  "type": 18
                                },
                                {
                                  "attr": "",
                                  "index": 2,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "YES I AM!",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.07150000000000001,
                                    "source_width": 0.3884444444444444,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":6778.789,\"p\":-1,\"y\":0.154,\"h\":0.1135,\"isRatioCoord\":true,\"start_time\":5407.174626,\"r\":0,\"w\":0.4311,\"s\":1}]",
                                  "type": 18
                                },
                                {
                                  "attr": "",
                                  "index": 3,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "ME?",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.07150000000000001,
                                    "source_width": 0.20444444444444448,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "en",
                                    "text_size": 0
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":1514.325722,\"p\":-1,\"y\":0.1538,\"h\":0.1135,\"isRatioCoord\":true,\"start_time\":356.778731,\"r\":0,\"w\":0.2471,\"s\":1}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": true,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 6,
                                "author": "lissieoni",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e10ecb21&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t6hX9hhaiuMsf%2Bq7aCCS1f%2Fu5dk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ccdb459d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Fp0%2BCvY6wb82A1Wg4YHMsPxRyuk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0647f102&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WkIt4CRTZRtadrS3lFFMwHyqDR4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=970843ef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WWfMinRyKNueFkfIKfnjE9LCR3Y%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93271913&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=KbHksldCDY%2B%2BWGzyyAHOEo9itnw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=faa588b1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qVuovOyzxlyrQaHxbGK4HO63gw8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=d19ee2b6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YZfmYEpeWwTwyxQc4tXQjdfQtR4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=703f7025&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=6QM6KBs5xVXWd4jbk2HosJVNFtU%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=2b126a04&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Anm%2BEiOQBVLK1kMnPcmi3MxxR0w%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e10ecb21&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=t6hX9hhaiuMsf%2Bq7aCCS1f%2Fu5dk%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ccdb459d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Fp0%2BCvY6wb82A1Wg4YHMsPxRyuk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0647f102&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WkIt4CRTZRtadrS3lFFMwHyqDR4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=970843ef&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WWfMinRyKNueFkfIKfnjE9LCR3Y%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=93271913&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=KbHksldCDY%2B%2BWGzyyAHOEo9itnw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/be2d25feb7f9343f3793897cc6729994~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=faa588b1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qVuovOyzxlyrQaHxbGK4HO63gw8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1659226806,
                                "dmv_auto_show": false,
                                "duration": 6,
                                "duration_high_precision": {
                                  "audition_duration_precision": 6.348,
                                  "duration_precision": 6.348,
                                  "shoot_duration_precision": 6.348,
                                  "video_duration_precision": 6.348
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":4,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7126324840138575110,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cbisld3c77ub9pa0h750\",\"owner_id\":6944396544091915270,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7126324816604401000,
                                "id_str": "7126324816604400390",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "សាន ផានិត",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"ឈឺណាស់\"",
                                  "mixed_title": "why is everyone using my sound (Contains music from: ឈឺណាស់ - សាន ផានិត)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "ឈឺណាស់",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "សាន ផានិត",
                                  "chorus_info": {
                                    "duration_ms": 25152,
                                    "start_ms": 73344
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oADAUAAINIDf4KGOCHLIACGjaBFzebAQQuehgw.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 222523,
                                  "h5_url": "",
                                  "id": "7386599751449151489",
                                  "performers": null,
                                  "title": "ឈឺណាស់"
                                },
                                "meme_song_info": {},
                                "mid": "7126324816604400390",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "lissieoni",
                                "owner_id": "6944396544091915270",
                                "owner_nickname": "lissieoni",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7126324829384379142.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7126324829384379142.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAaipAar72eEqrp8QEQ0_wtWk8hQFcUwm5cplFvY7GtHModivnpcWOay2hWGhGob_X",
                                "shoot_duration": 6,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/33e23e3ffdd6e10d8c6f2f41876ec145.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/33e23e3ffdd6e10d8c6f2f41876ec145.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "why is everyone using my sound",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 6778,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "Obsessed with you! 😂😂 <h id=\"1\">#funny</h> <h id=\"28\">#relatable</h> <h id=\"113\">#fyp</h> <h id=\"217\">#fypシ</h> <h id=\"869\">#notjayswift</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "6888",
                                    "hashtag_name": "relatable",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "28",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "113",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "217",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7130724594087886890",
                                    "hashtag_name": "notjayswift",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "869",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out not.jayswift's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out not.jayswift’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out not.jayswift’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@not.jayswift/video/7184568534595374378?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7184568534595374378&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10003\",\"play_time_prob_dist\":\"[800,0.904,1177.8784]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7184568534595374378",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"lvl3_cate_list\":\"\",\"poi_card_id_list\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info\":\"\",\"ecom_intent\":\"0\",\"word_type_list\":\"\",\"visualize_sug_product_id\":\"\",\"is_ramandan_promotion\":\"\",\"ecom_trigger_info_map\":\"\",\"sug_user_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"predict_ctr_score\":0.004468121249005146,\"is_time_sensitive\":\"0\",\"generate_time\":\"0\",\"hot_level\":\"0\",\"word_type_version_map\":\"\",\"lvl1_category_id\":\"\",\"video_id\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall,video_sar_top_counter_passive_recall,global_video_top_counter_recall\"}",
                                        "word": "me obsessed with you original song",
                                        "word_id": "4990641050322315594",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"words_type_to_voucher_ids\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall,video_sar_top_counter_passive_recall,global_video_top_counter_recall\",\"is_ramandan_promotion\":\"\",\"word_type_version_map\":\"\",\"lvl1_category_id\":\"\",\"video_id\":\"\",\"ecom_trigger_info\":\"\",\"poi_card_id_list\":\"\",\"predict_ctr_score\":0.011185718005256827,\"hot_level\":\"0\",\"lvl3_cate_list\":\"\",\"ecom_intent\":\"0\",\"is_time_sensitive\":\"0\",\"sug_user_id\":\"\",\"generate_time\":\"0\",\"visualize_sug_product_id\":\"\",\"ecom_trigger_info_map\":\"\",\"word_type_list\":\"\",\"words_type_to_dmp_list\":\"\"}",
                                        "word": "me obsessed with you original song",
                                        "word_id": "4990641050322315594",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 30,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 24,
                                  "tag_id": "1",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 41,
                                  "hashtag_id": "6888",
                                  "hashtag_name": "relatable",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 31,
                                  "tag_id": "28",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 46,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 42,
                                  "tag_id": "113",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 52,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 47,
                                  "tag_id": "217",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 65,
                                  "hashtag_id": "7130724594087886890",
                                  "hashtag_name": "notjayswift",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 53,
                                  "tag_id": "869",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "en",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7116995673179309099",
                              "handle": "not.jayswift",
                              "displayName": "not.jayswift",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7313164879836233774~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ff03dd02&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nRj5iaTCt0WMIXyeAmnRkQyv8RI%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7329913220632694022",
                            "caption": "Muhammad nabina! 🖤🎧 #fypシ #UمAR #viral #islamicstatus #darkedit #nasheed #foryou #foryoupage #beautyofkaaba #islam #islam___information #muslim #Allah #اللہ",
                            "createdAt": "2024-01-30T15:26:56.000Z",
                            "url": "https://www.tiktok.com/@islam___information/video/7329913220632694022",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/68be4dc9c12e4528b171dd112986f351_1706628463~tplv-tiktokx-origin.image?dr=1347&refresh_token=62e85e46&x-expires=1779343200&x-signature=5MPQa34qzyDsCvJvQT2OtQC7oOU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 60140,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 106593727,
                              "likes": 17553380,
                              "comments": 258758,
                              "shares": 559791,
                              "saves": 1626371
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/bbb6e4d0c499bf2715a016f53d49ffbf/6a0ea85b/video/tos/useast2a/tos-useast2a-ve-0068c004/oIlVJyyUKBpQRAFRvBAItwNgRuE6QpfteUKDES/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1180&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=Z2g8aGQ7ZWQ5ZzU1ZDw6OUBpam5uOHE5cjVrcDMzNzczM0A0YF40XjE2NWMxNmA2YDYxYSNoLWtpMmRrXnBgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/d9a2993d11ad056b88736f9f7afc61b0/6a0ea85b/video/tos/useast2a/tos-useast2a-ve-0068c002/o0vXFIBIC3QET9kBGUQEFiSq9v5UAZWEpVbAi/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=585&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=ZmQ2ZTxkZjo8MzY1aDc5ZUBpam5uOHE5cjVrcDMzNzczM0BeY18vYmAtXjAxMzIvL2BjYSNoLWtpMmRrXnBgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00055000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "𝙐م𝘼𝙍",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=bc828c3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=r7H3Re1UAO1z%2FnZ8H5P8xWDKqBE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=404dd5fe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YC7PgCSzmrvVqdKLOrOD7IoiorM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=79e3ded7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yZJ91kts5jN4ua%2Fo54OKgROJH0E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=83d278ce&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C54TZ0xdOTcB%2BfzFxzDXUMynwiM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=81170088&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iBBxIhXpWfxX4clESftgqxV1XCk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ac16091b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Ip7o8J6o5TStPhSxYG86G3rTqEw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=2a42da95&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=At%2FoWP%2BU0EiUCfT7JT4bsOD5wFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=3e958c1c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Y%2BaQp%2Bc04eqsLiXxOEo88kT9olw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=77d07380&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=i5cPKic836bKjklWLZWwCtDVsZk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=bc828c3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=r7H3Re1UAO1z%2FnZ8H5P8xWDKqBE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=404dd5fe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YC7PgCSzmrvVqdKLOrOD7IoiorM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=79e3ded7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yZJ91kts5jN4ua%2Fo54OKgROJH0E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=83d278ce&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C54TZ0xdOTcB%2BfzFxzDXUMynwiM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=81170088&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iBBxIhXpWfxX4clESftgqxV1XCk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ac16091b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Ip7o8J6o5TStPhSxYG86G3rTqEw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1706628467,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60.18606,
                                  "duration_precision": 60.18606,
                                  "shoot_duration_precision": 60.18606,
                                  "video_duration_precision": 60.18606
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":18,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7329913220632694022,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cmshasnog65s9gvks7mg\",\"owner_id\":7220843814571115526,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7329913436077297000,
                                "id_str": "7329913436077296390",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=8831d2b2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1ZAI34FxX84QamRjjEx%2BgxS%2FTVA%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=4498d950&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zukASVATtrR6OdKqrvPNaxHX7dU%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=8f4fa501&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ejonD6h7%2FgRc4ZbZoyf3%2BWhe%2B0I%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "hamadahelal",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Hamada Helal",
                                      "sec_uid": "MS4wLjABAAAAGUtd8cIiYTnXfp_6hWKCUTOYNfr1qTzW5xR4ZmAoO1Qh-XZMy5XtiHUkYfsFFgY0",
                                      "status": 1,
                                      "uid": "6780758570029302790"
                                    }
                                  ],
                                  "author": "Hamada Helal",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Mohamed Nabina\"",
                                  "mixed_title": "original sound - islam___information (Contains music from: Mohamed Nabina - Hamada Helal)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Mohamed Nabina",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Hamada Helal",
                                  "chorus_info": {
                                    "duration_ms": 25343,
                                    "start_ms": 220224
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 275970,
                                  "h5_url": "",
                                  "id": "7005985018270976002",
                                  "performers": null,
                                  "title": "Mohamed Nabina"
                                },
                                "meme_song_info": {},
                                "mid": "7329913436077296390",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "islam___information",
                                "owner_id": "7220843814571115526",
                                "owner_nickname": "𝙐م𝘼𝙍",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7329913439563221765.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7329913439563221765.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAC55I6EvmJpPtB1GBEgwe5yw-ZMm6kw21Dz8NeF6DW96uHhbY8wzcXUOnt_EyRWNr",
                                "shoot_duration": 60,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6c45929ccf7f1c2029c0f42869ee0eae.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6c45929ccf7f1c2029c0f42869ee0eae.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - islam___information",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fypシ",
                                  "cid": "1637342470396934",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1637342470396934",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fypシ on TikTok!",
                                    "share_desc_info": "Check out #fypシ on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fypシ",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp%E3%82%B7?_r=1&name=fyp%E3%82%B7&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=1637342470396934&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.002427516208341228}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": "[]"
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "high_quality_upload",
                                  "select_music"
                                ]
                              },
                              "desc_language": "pl",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7329913220632694022",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7329913220632694000
                                ],
                                "GroupdIdList1": [
                                  7329913220632694000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": true,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "𝙐م𝘼𝙍",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=bc828c3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=r7H3Re1UAO1z%2FnZ8H5P8xWDKqBE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=404dd5fe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YC7PgCSzmrvVqdKLOrOD7IoiorM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=79e3ded7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yZJ91kts5jN4ua%2Fo54OKgROJH0E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=83d278ce&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C54TZ0xdOTcB%2BfzFxzDXUMynwiM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=81170088&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iBBxIhXpWfxX4clESftgqxV1XCk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ac16091b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Ip7o8J6o5TStPhSxYG86G3rTqEw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=2a42da95&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=At%2FoWP%2BU0EiUCfT7JT4bsOD5wFs%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=3e958c1c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Y%2BaQp%2Bc04eqsLiXxOEo88kT9olw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=77d07380&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=i5cPKic836bKjklWLZWwCtDVsZk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=bc828c3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=r7H3Re1UAO1z%2FnZ8H5P8xWDKqBE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=404dd5fe&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YC7PgCSzmrvVqdKLOrOD7IoiorM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=79e3ded7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yZJ91kts5jN4ua%2Fo54OKgROJH0E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=83d278ce&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C54TZ0xdOTcB%2BfzFxzDXUMynwiM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=81170088&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=iBBxIhXpWfxX4clESftgqxV1XCk%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=ac16091b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Ip7o8J6o5TStPhSxYG86G3rTqEw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1706628467,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60.18606,
                                  "duration_precision": 60.18606,
                                  "shoot_duration_precision": 60.18606,
                                  "video_duration_precision": 60.18606
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":18,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7329913220632694022,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cmshasnog65s9gvks7mg\",\"owner_id\":7220843814571115526,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7329913436077297000,
                                "id_str": "7329913436077296390",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=8831d2b2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1ZAI34FxX84QamRjjEx%2BgxS%2FTVA%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=4498d950&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zukASVATtrR6OdKqrvPNaxHX7dU%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/39424b1f90b5a8c20ba60d924c04e9e8~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=8f4fa501&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ejonD6h7%2FgRc4ZbZoyf3%2BWhe%2B0I%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "hamadahelal",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Hamada Helal",
                                      "sec_uid": "MS4wLjABAAAAGUtd8cIiYTnXfp_6hWKCUTOYNfr1qTzW5xR4ZmAoO1Qh-XZMy5XtiHUkYfsFFgY0",
                                      "status": 1,
                                      "uid": "6780758570029302790"
                                    }
                                  ],
                                  "author": "Hamada Helal",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Mohamed Nabina\"",
                                  "mixed_title": "original sound - islam___information (Contains music from: Mohamed Nabina - Hamada Helal)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Mohamed Nabina",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Hamada Helal",
                                  "chorus_info": {
                                    "duration_ms": 25343,
                                    "start_ms": 220224
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIiovQAbNAAWBCYADVAlazYRU8XExErAzyi0a.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 275970,
                                  "h5_url": "",
                                  "id": "7005985018270976002",
                                  "performers": null,
                                  "title": "Mohamed Nabina"
                                },
                                "meme_song_info": {},
                                "mid": "7329913436077296390",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "islam___information",
                                "owner_id": "7220843814571115526",
                                "owner_nickname": "𝙐م𝘼𝙍",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7329913439563221765.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7329913439563221765.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAC55I6EvmJpPtB1GBEgwe5yw-ZMm6kw21Dz8NeF6DW96uHhbY8wzcXUOnt_EyRWNr",
                                "shoot_duration": 60,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6c45929ccf7f1c2029c0f42869ee0eae.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/6c45929ccf7f1c2029c0f42869ee0eae.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - islam___information",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 60133,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "100.000000",
                              "original_client_text": {
                                "markup_text": "Muhammad nabina! 🖤🎧 <h id=\"1\">#fypシ</h> <h id=\"3\">#UمAR</h> <h id=\"5\">#viral</h> <h id=\"7\">#islamicstatus</h> <h id=\"9\">#darkedit</h> <h id=\"11\">#nasheed</h> <h id=\"13\">#foryou</h> <h id=\"15\">#foryoupage</h> <h id=\"17\">#beautyofkaaba</h> <h id=\"19\">#islam</h> <h id=\"21\">#islam___information</h> <h id=\"23\">#muslim</h> <h id=\"25\">#Allah</h> <h id=\"27\">#اللہ</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1657043485724674",
                                    "hashtag_name": "uمar",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1609316738656261",
                                    "hashtag_name": "islamicstatus",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "8385323",
                                    "hashtag_name": "darkedit",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "824569",
                                    "hashtag_name": "nasheed",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "11",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "13",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "15",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1635974055591957",
                                    "hashtag_name": "beautyofkaaba",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "17",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "350677",
                                    "hashtag_name": "islam",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "19",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7220866066262523910",
                                    "hashtag_name": "islam___information",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "21",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5813",
                                    "hashtag_name": "muslim",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "23",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "202706",
                                    "hashtag_name": "allah",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "25",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1599100714361862",
                                    "hashtag_name": "اللہ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "27",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 10,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "PK",
                              "retry_type": 0,
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out 𝙐م𝘼𝙍's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out 𝙐م𝘼𝙍’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out 𝙐م𝘼𝙍’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@islam___information/video/7329913220632694022?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7329913220632694022&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10075\",\"play_time_prob_dist\":\"[800,0.5782,4253.5122]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7329913220632694022",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 27,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 22,
                                  "tag_id": "1",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 33,
                                  "hashtag_id": "1657043485724674",
                                  "hashtag_name": "uمar",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 28,
                                  "tag_id": "3",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 40,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 34,
                                  "tag_id": "5",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 55,
                                  "hashtag_id": "1609316738656261",
                                  "hashtag_name": "islamicstatus",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 41,
                                  "tag_id": "7",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 65,
                                  "hashtag_id": "8385323",
                                  "hashtag_name": "darkedit",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 56,
                                  "tag_id": "9",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 74,
                                  "hashtag_id": "824569",
                                  "hashtag_name": "nasheed",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 66,
                                  "tag_id": "11",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 82,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 75,
                                  "tag_id": "13",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 94,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 83,
                                  "tag_id": "15",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 109,
                                  "hashtag_id": "1635974055591957",
                                  "hashtag_name": "beautyofkaaba",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 95,
                                  "tag_id": "17",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 116,
                                  "hashtag_id": "350677",
                                  "hashtag_name": "islam",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 110,
                                  "tag_id": "19",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 137,
                                  "hashtag_id": "7220866066262523910",
                                  "hashtag_name": "islam___information",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 117,
                                  "tag_id": "21",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 145,
                                  "hashtag_id": "5813",
                                  "hashtag_name": "muslim",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 138,
                                  "tag_id": "23",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 152,
                                  "hashtag_id": "202706",
                                  "hashtag_name": "allah",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 146,
                                  "tag_id": "25",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 158,
                                  "hashtag_id": "1599100714361862",
                                  "hashtag_name": "اللہ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 153,
                                  "tag_id": "27",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7220843814571115526",
                              "handle": "islam___information",
                              "displayName": "𝙐م𝘼𝙍",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/ce3c8294053992533938add50acd2c87~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=83d278ce&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C54TZ0xdOTcB%2BfzFxzDXUMynwiM%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7172966006208351493",
                            "caption": "his laugh #paradonobailao #neymar #neymarjr #10 #neymarjr10 #football #championsleague #cl #barcelona #interview #edit #neymaredit #fyp #foryou #fypシ #viral",
                            "createdAt": "2022-12-03T16:51:35.000Z",
                            "url": "https://www.tiktok.com/@thxfooty/video/7172966006208351493",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/ec4f08b9409d44c99aabaf756e34a0b7_1670086297~tplv-tiktokx-origin.image?dr=1347&refresh_token=32383f2f&x-expires=1779343200&x-signature=6D4F%2FV%2F4d1JKHZ8lXoQxE%2B1L%2FmQ%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 11534,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 124789377,
                              "likes": 17538221,
                              "comments": 72599,
                              "shares": 464950,
                              "saves": 1966091
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/c99c933dbd6394d9a19e3d7be1d02bcc/6a0ea82a/video/tos/useast2a/tos-useast2a-ve-0068c003/oQ4fqgEgjsBzx3DWBe8DQvn4EiARsEDoQ8bFJ3/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1446&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=PGhmO2k0PGQ4MzxpaDs2ZkBpM3U5Omk6ZnhxaDMzNzczM0AzMDEuYmFhNTIxY2NhYjYuYSNsMi1jcjQwazJgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000b5000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/f1206e7387b21fa587e6fb9c6c1e462b/6a0ea82a/video/tos/useast2a/tos-useast2a-ve-0068c001/oQjio9vfRI3ABL5Eh4HteBAXAR8TtJbwaQGnvD/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1267&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=ZjlkZ2VlZjdmZTc2NTU2Z0BpM3U5Omk6ZnhxaDMzNzczM0BhMzRjMC1jXy4xYDQ2LWM2YSNsMi1jcjQwazJgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000b5000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "thxfooty 🐐",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0444ce72&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ckWZw79Un3JTStxYj2Xsk%2FuQ2mA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ef893881&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JkJC%2F%2FeY4ku8nr5wcu4L%2FDYVX1Q%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c79f8be5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h3ti%2FXCb%2B%2FIkN%2BPpng2N%2BHblH6g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b51c58b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=k1%2FMWRtatFGGank4QT8UlXTBzT4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afb541e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=if7v3OkeoY5q0qunESdH%2F1eexa4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=4dafa228&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=l9%2B0D6oaFOgAzlPVyMn%2BqCkDJX8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=6289a3ee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FEJnXLIi2Xddvp%2F0HX2HmOggaN4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=8523f744&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rDKgnEbFLODckJWxMlHTMQEoGf0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f6931e07&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C6SrsWrfKxfeA8v8aIZ%2F%2F9inM7U%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0444ce72&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ckWZw79Un3JTStxYj2Xsk%2FuQ2mA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ef893881&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JkJC%2F%2FeY4ku8nr5wcu4L%2FDYVX1Q%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c79f8be5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h3ti%2FXCb%2B%2FIkN%2BPpng2N%2BHblH6g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b51c58b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=k1%2FMWRtatFGGank4QT8UlXTBzT4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afb541e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=if7v3OkeoY5q0qunESdH%2F1eexa4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=4dafa228&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=l9%2B0D6oaFOgAzlPVyMn%2BqCkDJX8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1670086302,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11.52,
                                  "duration_precision": 11.52,
                                  "shoot_duration_precision": 11.52,
                                  "video_duration_precision": 11.52
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":3,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7172966006208351493,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000ce5nt6bc77u87aoibaog\",\"owner_id\":7103035350830187526,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0,\"ugc_search\":1}",
                                "has_commerce_right": true,
                                "id": 7172966013142224000,
                                "id_str": "7172966013142223621",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Ghost Noob",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Bailão\"",
                                  "mixed_title": "original sound - thxfooty (Contains music from: Bailão - Ghost Noob)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Bailão",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Ghost Noob",
                                  "chorus_info": {
                                    "duration_ms": 20543,
                                    "start_ms": 41088
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 81909,
                                  "h5_url": "",
                                  "id": "7607263431271450625",
                                  "performers": null,
                                  "title": "Bailão"
                                },
                                "meme_song_info": {},
                                "mid": "7172966013142223621",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "thxfooty",
                                "owner_id": "7103035350830187526",
                                "owner_nickname": "thxfooty 🐐",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7172966025388968710.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7172966025388968710.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAUDIRb_yacVRIz5FtHf2CRc78Vuhp1qzvcPKT5F-zodwBvTkF7pDgZ3RpAf8Iuqmr",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/76a1f34d23ced61541770ce4e72fc406.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/76a1f34d23ced61541770ce4e72fc406.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - thxfooty",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "component_key_placeholder"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "paradonobailao",
                                  "cid": "1607244175503366",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1607244175503366",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #paradonobailao on TikTok!",
                                    "share_desc_info": "Check out #paradonobailao on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: paradonobailao",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/paradonobailao?_r=1&name=paradonobailao&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=1607244175503366&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0005817722769783521}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7172966006208351493",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7172966006208351000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "thxfooty 🐐",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0444ce72&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ckWZw79Un3JTStxYj2Xsk%2FuQ2mA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ef893881&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JkJC%2F%2FeY4ku8nr5wcu4L%2FDYVX1Q%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c79f8be5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h3ti%2FXCb%2B%2FIkN%2BPpng2N%2BHblH6g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b51c58b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=k1%2FMWRtatFGGank4QT8UlXTBzT4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afb541e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=if7v3OkeoY5q0qunESdH%2F1eexa4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=4dafa228&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=l9%2B0D6oaFOgAzlPVyMn%2BqCkDJX8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=6289a3ee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FEJnXLIi2Xddvp%2F0HX2HmOggaN4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=8523f744&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rDKgnEbFLODckJWxMlHTMQEoGf0%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f6931e07&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C6SrsWrfKxfeA8v8aIZ%2F%2F9inM7U%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=0444ce72&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ckWZw79Un3JTStxYj2Xsk%2FuQ2mA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=ef893881&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=JkJC%2F%2FeY4ku8nr5wcu4L%2FDYVX1Q%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=c79f8be5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=h3ti%2FXCb%2B%2FIkN%2BPpng2N%2BHblH6g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3b51c58b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=k1%2FMWRtatFGGank4QT8UlXTBzT4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afb541e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=if7v3OkeoY5q0qunESdH%2F1eexa4%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=4dafa228&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=l9%2B0D6oaFOgAzlPVyMn%2BqCkDJX8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1670086302,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11.52,
                                  "duration_precision": 11.52,
                                  "shoot_duration_precision": 11.52,
                                  "video_duration_precision": 11.52
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":3,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7172966006208351493,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000ce5nt6bc77u87aoibaog\",\"owner_id\":7103035350830187526,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0,\"ugc_search\":1}",
                                "has_commerce_right": true,
                                "id": 7172966013142224000,
                                "id_str": "7172966013142223621",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Ghost Noob",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Bailão\"",
                                  "mixed_title": "original sound - thxfooty (Contains music from: Bailão - Ghost Noob)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Bailão",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Ghost Noob",
                                  "chorus_info": {
                                    "duration_ms": 20543,
                                    "start_ms": 41088
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMEIAI5DAKefGhSemLe8cmGF2ASBoI1q6AhtAk.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 81909,
                                  "h5_url": "",
                                  "id": "7607263431271450625",
                                  "performers": null,
                                  "title": "Bailão"
                                },
                                "meme_song_info": {},
                                "mid": "7172966013142223621",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "thxfooty",
                                "owner_id": "7103035350830187526",
                                "owner_nickname": "thxfooty 🐐",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7172966025388968710.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7172966025388968710.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAUDIRb_yacVRIz5FtHf2CRc78Vuhp1qzvcPKT5F-zodwBvTkF7pDgZ3RpAf8Iuqmr",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/76a1f34d23ced61541770ce4e72fc406.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/76a1f34d23ced61541770ce4e72fc406.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - thxfooty",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 11483,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "his laugh <h id=\"7579\">#paradonobailao</h> <h id=\"2504\">#neymar</h> <h id=\"2918\">#neymarjr</h> <h id=\"5070\">#10</h> <h id=\"8188\">#neymarjr10</h> <h id=\"8957\">#football</h> <h id=\"8263\">#championsleague</h> <h id=\"7768\">#cl</h> <h id=\"684\">#barcelona</h> <h id=\"9582\">#interview</h> <h id=\"3602\">#edit</h> <h id=\"5134\">#neymaredit</h> <h id=\"1298\">#fyp</h> <h id=\"5871\">#foryou</h> <h id=\"2038\">#fypシ</h> <h id=\"3572\">#viral</h>",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1607244175503366",
                                    "hashtag_name": "paradonobailao",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7579",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "83884",
                                    "hashtag_name": "neymar",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2504",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "157202",
                                    "hashtag_name": "neymarjr",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2918",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "285745",
                                    "hashtag_name": "10",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5070",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "19439983",
                                    "hashtag_name": "neymarjr10",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8188",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5282",
                                    "hashtag_name": "football",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8957",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "738019",
                                    "hashtag_name": "championsleague",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8263",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "35129",
                                    "hashtag_name": "cl",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7768",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "18425",
                                    "hashtag_name": "barcelona",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "684",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "169108",
                                    "hashtag_name": "interview",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9582",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1518",
                                    "hashtag_name": "edit",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3602",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "9166255",
                                    "hashtag_name": "neymaredit",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5134",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1298",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5871",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2038",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3572",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 2,
                                "item_total": 8,
                                "mix_id": "7173674983867370246",
                                "name": "100k+"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "GB",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out thxfooty 🐐's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out thxfooty 🐐’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out thxfooty 🐐’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@thxfooty/video/7172966006208351493?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7172966006208351493&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10060\",\"play_time_prob_dist\":\"[800,0.9122,2709.3807]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7172966006208351493",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"ecom_intent\":\"0\",\"ecom_trigger_info\":\"\",\"word_type_list\":\"\",\"recall_reason\":\"global_video_sar_top_counter_passive_recall,video_sar_top_counter_passive_recall,bert_viking_two_hop_recall\",\"is_ramandan_promotion\":\"\",\"hot_level\":\"0\",\"sug_user_id\":\"\",\"visualize_sug_product_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"lvl1_category_id\":\"\",\"is_time_sensitive\":\"0\",\"words_type_to_dmp_list\":\"\",\"poi_card_id_list\":\"\",\"video_id\":\"\",\"predict_ctr_score\":0.09841923476761592,\"word_type_version_map\":\"\",\"lvl3_cate_list\":\"\",\"generate_time\":\"1671724185\",\"ecom_trigger_info_map\":\"\"}",
                                        "word": "Parado No Bailão Lyrics",
                                        "word_id": "831432298272585833",
                                        "word_record": {
                                          "words_lang": "pt"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 25,
                                  "hashtag_id": "1607244175503366",
                                  "hashtag_name": "paradonobailao",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 10,
                                  "tag_id": "7579",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 33,
                                  "hashtag_id": "83884",
                                  "hashtag_name": "neymar",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 26,
                                  "tag_id": "2504",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 43,
                                  "hashtag_id": "157202",
                                  "hashtag_name": "neymarjr",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 34,
                                  "tag_id": "2918",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 47,
                                  "hashtag_id": "285745",
                                  "hashtag_name": "10",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 44,
                                  "tag_id": "5070",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 59,
                                  "hashtag_id": "19439983",
                                  "hashtag_name": "neymarjr10",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 48,
                                  "tag_id": "8188",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 69,
                                  "hashtag_id": "5282",
                                  "hashtag_name": "football",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 60,
                                  "tag_id": "8957",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 86,
                                  "hashtag_id": "738019",
                                  "hashtag_name": "championsleague",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 70,
                                  "tag_id": "8263",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 90,
                                  "hashtag_id": "35129",
                                  "hashtag_name": "cl",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 87,
                                  "tag_id": "7768",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 101,
                                  "hashtag_id": "18425",
                                  "hashtag_name": "barcelona",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 91,
                                  "tag_id": "684",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 112,
                                  "hashtag_id": "169108",
                                  "hashtag_name": "interview",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 102,
                                  "tag_id": "9582",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 118,
                                  "hashtag_id": "1518",
                                  "hashtag_name": "edit",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 113,
                                  "tag_id": "3602",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 130,
                                  "hashtag_id": "9166255",
                                  "hashtag_name": "neymaredit",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 119,
                                  "tag_id": "5134",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 135,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 131,
                                  "tag_id": "1298",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 143,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 136,
                                  "tag_id": "5871",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 149,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 144,
                                  "tag_id": "2038",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 156,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 150,
                                  "tag_id": "3572",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7103035350830187526",
                              "handle": "thxfooty",
                              "displayName": "thxfooty 🐐",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/fc169e0813e930cad816755a39d0f139~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afb541e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=if7v3OkeoY5q0qunESdH%2F1eexa4%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7407942885045243166",
                            "caption": "The prettiest boy youll ever see ❤️ #dalmatian #dalmatiansoftiktok #dalmatianpuppy #showdogsoftiktok #showdog #fypage #fypシ゚viral #hearteyes #hearteyeddalmatian #dogsofttiktok #hearteyed #heterochromia #fypシ #heartdog #dogtok #dog #dalmatians #puppiesoftiktok #puppies",
                            "createdAt": "2024-08-27T22:02:05.000Z",
                            "url": "https://www.tiktok.com/@theheartdalmatians/video/7407942885045243166",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast8-p-0068-tx2/oYIcQCEDRmkzAhDmUFmnfrBFEnzExEOAVvkbBe~tplv-tiktokx-origin.image?dr=1347&refresh_token=2167b9c8&x-expires=1779343200&x-signature=0ABCrlY4PPKloTguPy54IkJRf9I%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 61767,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 84876673,
                              "likes": 17297715,
                              "comments": 42268,
                              "shares": 2407052,
                              "saves": 1121813
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/e069d13dec9d2f59dab7da88a9568c1b/6a0ea85c/video/tos/maliva/tos-maliva-ve-0068c799-us/oQAIAT1ZwiXLqCyQIziB5YfiEL1XATyCiqO4XI/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1482&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=Njg2Omg4ZmRpNDk0NzY0NUBpM288M3M5cnY3dTMzaTczNEAwMC1eXzFgNi8xMC8zMDIxYSNlY2ppMmRjZzRgLS1kMTJzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/02326627e026dfca5458856a87769d6c/6a0ea85c/video/tos/maliva/tos-maliva-ve-0068c799-us/o4RBnFEBgFxfuzzUimdfAEVcxMQEIVvkDkmrEA/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1405&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=Omg4OGY7ZWU2PDs0PDtlZ0BpM288M3M5cnY3dTMzaTczNEBeYDMxXzAuXi4xLS01MTVeYSNlY2ppMmRjZzRgLS1kMTJzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "GIMME SOME TRUTH. - Deluxe",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=91683631&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zkrUhmJjL5dmfrhgN7UxBi1V0sk%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=70a6b6c2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yNxGuugFVWOC5ucJ9WpeKMq%2F5yA%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=febae8fc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W4khSuXMFsePPNGZTfU5lx70ZeM%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "johnlennon",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": true,
                                    "is_visible": false,
                                    "nick_name": "John Lennon",
                                    "sec_uid": "MS4wLjABAAAA7Xvienqjs0j5tSnTM0Txu7CTLX3hqANMhyo5E7A8he_fnR-NKwk2MbwT_R4swtkD",
                                    "status": 1,
                                    "uid": "6784866646446490630"
                                  }
                                ],
                                "audition_duration": 60,
                                "author": "John Lennon",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=684363e7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rqir%2BNNaBOEoUti7hr2WPffFLZA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=9edb39c1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9xd565iijxSrPQ91F0ChyO1zVZo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1ab5e9d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GkvS4L7susGe6LV0unjJ8xBPUIk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3e4bda70&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=5Ra30Go4c8szm5mCPi8Hs6LvixE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3792628c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N%2BwpSAXHnm1e7oTA38W7%2Bfvm%2FRw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=730bcf3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=b8p8CZROGDKtxHM7NMTN5gZK7rY%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1601865616,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":7.93,\"amplitude_peak\":0.8954625,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/191e6a09cc8946c084300287c66b99fe\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/6d126c0adfd8477eaba7f00b93503e73\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/a61a3b8bcdbf4e95a4c805c9736b5682\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/035eb6356b26410f97b1ccbc6a2ebd84\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-15.21097,\"music_vid\":\"v10ad6g50000cnbvrpvog65nb72c4690\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6879960416487737000,
                                "id_str": "6879960416487737345",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "John Lennon",
                                  "chorus_info": {
                                    "duration_ms": 17471,
                                    "start_ms": 147264
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 241654,
                                  "h5_url": "",
                                  "id": "6878844667312506881",
                                  "performers": null,
                                  "title": "Beautiful Boy (Darling Boy) - Ultimate Mix"
                                },
                                "meme_song_info": {},
                                "mid": "6879960416487737345",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 345830400,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ociefKQFfA2pYQhX6XW8GFA3ye3YvRBzmsM61P",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ociefKQFfA2pYQhX6XW8GFA3ye3YvRBzmsM61P"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 35,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/b7121c3d2d9a49d3ae6b987ef5da6d04",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/b7121c3d2d9a49d3ae6b987ef5da6d04"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  156
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  7
                                ],
                                "title": "Beautiful Boy (Darling Boy) - Ultimate Mix",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 55,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "dalmatian",
                                  "cid": "618899",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=618899",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #dalmatian on TikTok!",
                                    "share_desc_info": "Check out #dalmatian on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: dalmatian",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/dalmatian?_r=1&name=dalmatian&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=618899&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0004979931293961063}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 2,
                              "content_type": "sound_sync",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "editor_pro",
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 2,
                              "follow_up_publish_from_id": 7379003009574931000,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7407942885045243166",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7407942885045243000
                                ],
                                "GroupdIdList1": [
                                  7407942885045243000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "moments_mode_info": {
                                "is_moments": 0
                              },
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "GIMME SOME TRUTH. - Deluxe",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [
                                  {
                                    "avatar": {
                                      "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=91683631&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zkrUhmJjL5dmfrhgN7UxBi1V0sk%3D",
                                        "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=70a6b6c2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=yNxGuugFVWOC5ucJ9WpeKMq%2F5yA%3D",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=febae8fc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W4khSuXMFsePPNGZTfU5lx70ZeM%3D"
                                      ],
                                      "url_prefix": null
                                    },
                                    "enter_type": 2,
                                    "follow_status": 0,
                                    "follower_status": 0,
                                    "handle": "johnlennon",
                                    "is_block": false,
                                    "is_blocked": false,
                                    "is_private_account": false,
                                    "is_verified": true,
                                    "is_visible": false,
                                    "nick_name": "John Lennon",
                                    "sec_uid": "MS4wLjABAAAA7Xvienqjs0j5tSnTM0Txu7CTLX3hqANMhyo5E7A8he_fnR-NKwk2MbwT_R4swtkD",
                                    "status": 1,
                                    "uid": "6784866646446490630"
                                  }
                                ],
                                "audition_duration": 60,
                                "author": "John Lennon",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=684363e7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rqir%2BNNaBOEoUti7hr2WPffFLZA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=9edb39c1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9xd565iijxSrPQ91F0ChyO1zVZo%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1ab5e9d2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=GkvS4L7susGe6LV0unjJ8xBPUIk%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3e4bda70&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=5Ra30Go4c8szm5mCPi8Hs6LvixE%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=3792628c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=N%2BwpSAXHnm1e7oTA38W7%2Bfvm%2FRw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/c86d6f3b950cd492773b9c11d29cee9a~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=730bcf3f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=b8p8CZROGDKtxHM7NMTN5gZK7rY%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 3,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1601865616,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":7.93,\"amplitude_peak\":0.8954625,\"beats\":{\"audio_effect_onset\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/191e6a09cc8946c084300287c66b99fe\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/6d126c0adfd8477eaba7f00b93503e73\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/a61a3b8bcdbf4e95a4c805c9736b5682\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/035eb6356b26410f97b1ccbc6a2ebd84\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-15.21097,\"music_vid\":\"v10ad6g50000cnbvrpvog65nb72c4690\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6879960416487737000,
                                "id_str": "6879960416487737345",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "language": "English",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "John Lennon",
                                  "chorus_info": {
                                    "duration_ms": 17471,
                                    "start_ms": 147264
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oMB5CmSNsFAAXtZAEmEDeyf3EAD8gsHnBQ1g3Z.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 241654,
                                  "h5_url": "",
                                  "id": "6878844667312506881",
                                  "performers": null,
                                  "title": "Beautiful Boy (Darling Boy) - Ultimate Mix"
                                },
                                "meme_song_info": {},
                                "mid": "6879960416487737345",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 345830400,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ociefKQFfA2pYQhX6XW8GFA3ye3YvRBzmsM61P",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ociefKQFfA2pYQhX6XW8GFA3ye3YvRBzmsM61P"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 35,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/b7121c3d2d9a49d3ae6b987ef5da6d04",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/b7121c3d2d9a49d3ae6b987ef5da6d04"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  156
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  7
                                ],
                                "title": "Beautiful Boy (Darling Boy) - Ultimate Mix",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 61730,
                              "music_selected_from": "single_song",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "The prettiest boy youll ever see ❤️ <h id=\"1\">#dalmatian</h> <h id=\"8\">#dalmatiansoftiktok</h> <h id=\"21\">#dalmatianpuppy</h> <h id=\"40\">#showdogsoftiktok</h> <h id=\"65\">#showdog</h> <h id=\"96\">#fypage</h> <h id=\"133\">#fypシ゚viral</h> <h id=\"176\">#hearteyes</h> <h id=\"225\">#hearteyeddalmatian</h> <h id=\"280\">#dogsofttiktok</h> <h id=\"341\">#hearteyed</h> <h id=\"408\">#heterochromia</h> <h id=\"481\">#fypシ</h> <h id=\"560\">#heartdog</h> <h id=\"645\">#dogtok</h> <h id=\"736\">#dog</h> <h id=\"833\">#dalmatians</h> <h id=\"936\">#puppiesoftiktok</h> <h id=\"1045\">#puppies</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "618899",
                                    "hashtag_name": "dalmatian",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1632628132857861",
                                    "hashtag_name": "dalmatiansoftiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "25205147",
                                    "hashtag_name": "dalmatianpuppy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "21",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1662719425280006",
                                    "hashtag_name": "showdogsoftiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "40",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "2976706",
                                    "hashtag_name": "showdog",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "65",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1604302285252613",
                                    "hashtag_name": "fypage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "96",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1664119477821441",
                                    "hashtag_name": "fypシ゚viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "133",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "55459",
                                    "hashtag_name": "hearteyes",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "176",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7356771868319154219",
                                    "hashtag_name": "hearteyeddalmatian",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "225",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1623511616311302",
                                    "hashtag_name": "dogsofttiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "280",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "33134415",
                                    "hashtag_name": "hearteyed",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "341",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "816850",
                                    "hashtag_name": "heterochromia",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "408",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "481",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "15471776",
                                    "hashtag_name": "heartdog",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "560",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1600330250734594",
                                    "hashtag_name": "dogtok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "645",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "6221",
                                    "hashtag_name": "dog",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "736",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "2991185",
                                    "hashtag_name": "dalmatians",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "833",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1609608533592069",
                                    "hashtag_name": "puppiesoftiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "936",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "12098",
                                    "hashtag_name": "puppies",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1045",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Chloe's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Chloe’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Chloe’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@theheartdalmatians/video/7407942885045243166?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7407942885045243166&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "video_600",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10019\",\"play_time_prob_dist\":\"[800,0.5684,7664.0712]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7407942885045243166",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"generate_time\":\"1733592175\",\"ecom_intent\":\"2\",\"sug_user_id\":\"\",\"hot_level\":\"0\",\"lvl3_cate_list\":\"\",\"visualize_sug_product_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info_map\":\"\",\"is_time_sensitive\":\"0\",\"ecom_trigger_info\":\"\",\"word_type_list\":\"\",\"lvl1_category_id\":\"\",\"poi_card_id_list\":\"\",\"is_ramandan_promotion\":\"\",\"word_type_version_map\":\"\",\"recall_reason\":\"bert_viking_two_hop_recall\",\"video_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"predict_ctr_score\":0.005111585141424058}",
                                        "word": "Heterochromia",
                                        "word_id": "2592331061472028377",
                                        "word_record": {
                                          "words_lang": "sv"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 46,
                                  "hashtag_id": "618899",
                                  "hashtag_name": "dalmatian",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 36,
                                  "tag_id": "1",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 66,
                                  "hashtag_id": "1632628132857861",
                                  "hashtag_name": "dalmatiansoftiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 47,
                                  "tag_id": "8",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 82,
                                  "hashtag_id": "25205147",
                                  "hashtag_name": "dalmatianpuppy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 67,
                                  "tag_id": "21",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 100,
                                  "hashtag_id": "1662719425280006",
                                  "hashtag_name": "showdogsoftiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 83,
                                  "tag_id": "40",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 109,
                                  "hashtag_id": "2976706",
                                  "hashtag_name": "showdog",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 101,
                                  "tag_id": "65",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 117,
                                  "hashtag_id": "1604302285252613",
                                  "hashtag_name": "fypage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 110,
                                  "tag_id": "96",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 129,
                                  "hashtag_id": "1664119477821441",
                                  "hashtag_name": "fypシ゚viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 118,
                                  "tag_id": "133",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 140,
                                  "hashtag_id": "55459",
                                  "hashtag_name": "hearteyes",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 130,
                                  "tag_id": "176",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 160,
                                  "hashtag_id": "7356771868319154219",
                                  "hashtag_name": "hearteyeddalmatian",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 141,
                                  "tag_id": "225",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 175,
                                  "hashtag_id": "1623511616311302",
                                  "hashtag_name": "dogsofttiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 161,
                                  "tag_id": "280",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 186,
                                  "hashtag_id": "33134415",
                                  "hashtag_name": "hearteyed",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 176,
                                  "tag_id": "341",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 201,
                                  "hashtag_id": "816850",
                                  "hashtag_name": "heterochromia",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 187,
                                  "tag_id": "408",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 207,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 202,
                                  "tag_id": "481",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 217,
                                  "hashtag_id": "15471776",
                                  "hashtag_name": "heartdog",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 208,
                                  "tag_id": "560",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 225,
                                  "hashtag_id": "1600330250734594",
                                  "hashtag_name": "dogtok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 218,
                                  "tag_id": "645",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 230,
                                  "hashtag_id": "6221",
                                  "hashtag_name": "dog",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 226,
                                  "tag_id": "736",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 242,
                                  "hashtag_id": "2991185",
                                  "hashtag_name": "dalmatians",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 231,
                                  "tag_id": "833",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 259,
                                  "hashtag_id": "1609608533592069",
                                  "hashtag_name": "puppiesoftiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 243,
                                  "tag_id": "936",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 268,
                                  "hashtag_id": "12098",
                                  "hashtag_name": "puppies",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 260,
                                  "tag_id": "1045",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6786421270521168902",
                              "handle": "theheartdalmatians",
                              "displayName": "Chloe",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/f8fe042865362ab627c44bedb53f9e5b~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=da9d70b9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=AEpqht7qC2%2FKTn6jISPRYXE9RhY%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7539696675376450830",
                            "caption": "#fyf #fyp #fypシ",
                            "createdAt": "2025-08-17T23:14:28.000Z",
                            "url": "https://www.tiktok.com/@eagleyes2/video/7539696675376450830",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast5-p-0068-tx/oM5YlBuUoCDNGb6iBqFEgFDbEoARwYeQQVfFSm~tplv-tiktokx-origin.image?dr=1347&refresh_token=aded1411&x-expires=1779343200&x-signature=wlNcUibKolz%2BhFSxvbXNxzMubAA%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 22900,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 179231908,
                              "likes": 17222223,
                              "comments": 30782,
                              "shares": 3653670,
                              "saves": 849590
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/b91547d1e555e4ffbfaf8e1039cd9c1d/6a0ea835/video/tos/maliva/tos-maliva-ve-0068c799-us/oAAaiFFbFoVlDY4ERf5BmqEqgSE1DetIboS6QU/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=291&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NmZnODU1NWhnODQ6ZzU5NkBpM2duaW85cnA5NTMzZzczNEBfXzQ0NC40Nl4xYDA0MmJiYSNpMjQyMmRzL2VhLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000bd000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/7082a018f509d401aea1829fc4b22448/6a0ea835/video/tos/maliva/tos-maliva-ve-0068c799-us/og9ittwUfAIpqC6yMBI08lAqYiBpiC0CKTREi1/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=274&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=MzlkPDc5OjUzaDc4Z2ZlOUBpM2duaW85cnA5NTMzZzczNEBhYTIxMGFgNTYxXl4wM2IvYSNpMjQyMmRzL2VhLS1kMS9zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000bd000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 32,
                                "author": "✈️A7-BBH | MAN 🇬🇧",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=a02d7633&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BYLYCMl6JPG3snp8VXMCyf1Ba20%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5a400491&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BwwoNbK0uyOehKowO%2BDgGcCrWaM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e0616bb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SpV4IeNKhLvBrgKzTqj%2BNTWXiX4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=dc251fb5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2NEvdgq7ND1tk0a7ZlB%2BiuR0P8E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=d808e507&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BPpBdTGdXSbocrc1VfCYj6OXA5I%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=eccf2620&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=39NKVKko2pjuV07dAEZEEqJJUhE%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f56453e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YDE3jPLU9UbZIOWFiyhKa4t9Vls%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=1d5d31b7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3bswxGpw31rApyhJ8IiFyaNQ1no%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=a86d5346&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W3Z30Ic%2Fahe4UN%2BoaFE%2BWDMkYhw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=a02d7633&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BYLYCMl6JPG3snp8VXMCyf1Ba20%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5a400491&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BwwoNbK0uyOehKowO%2BDgGcCrWaM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e0616bb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SpV4IeNKhLvBrgKzTqj%2BNTWXiX4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=dc251fb5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2NEvdgq7ND1tk0a7ZlB%2BiuR0P8E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=d808e507&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BPpBdTGdXSbocrc1VfCYj6OXA5I%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=eccf2620&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=39NKVKko2pjuV07dAEZEEqJJUhE%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1722518900,
                                "dmv_auto_show": false,
                                "duration": 32,
                                "duration_high_precision": {
                                  "audition_duration_precision": 32.626938,
                                  "duration_precision": 32.626938,
                                  "shoot_duration_precision": 32.626938,
                                  "video_duration_precision": 32.626938
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":4,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7398162299090898208,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v0f942gc0000cqloqsvog65icf0ns7u0\",\"owner_id\":6896522458037765126,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7398162320411430000,
                                "id_str": "7398162320411429664",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=6153146e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2kffuKjd%2BRRZbUDat%2BInadmzGmY%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=7a6c47ee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wFFZ82oCjEx3xlVYpKkDOW%2FOigA%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=9cb839f6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Sk5diGC6Dt92PY7y9%2FWhpPdHi0k%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "jessglynne",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Jess Glynne",
                                      "sec_uid": "MS4wLjABAAAAUoFazvVwsy-ZbW09wsiajH5bslC4aMYBrbpGiItB1VSO7Aru25EG7YxhS-5CTr6Y",
                                      "status": 1,
                                      "uid": "6808550523794490373"
                                    }
                                  ],
                                  "author": "Jess Glynne",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Hold My Hand\"",
                                  "mixed_title": "Jet2 Advert (Contains music from: Hold My Hand - Jess Glynne)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Hold My Hand",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Jess Glynne",
                                  "chorus_info": {
                                    "duration_ms": 31488,
                                    "start_ms": 191040
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 227391,
                                  "h5_url": "",
                                  "id": "6716603337308899330",
                                  "performers": null,
                                  "title": "Hold My Hand"
                                },
                                "meme_song_info": {},
                                "mid": "7398162320411429664",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "aviation_on_tiktok2",
                                "owner_id": "6896522458037765126",
                                "owner_nickname": "✈️A7-BBH | MAN 🇬🇧",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music.tiktokcdn.com/obj/ies-music-euttp/7398162308491922208.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music.tiktokcdn.com/obj/ies-music-euttp/7398162308491922208.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA9FPnjRlkMlNlNn5rbC--mvCD4OGJvtqaJ3raZLkmucTc3F4kILVRw1h261sveAQT",
                                "shoot_duration": 32,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/1606321ecb1e4b8db4f78dd3b3b22927.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/1606321ecb1e4b8db4f78dd3b3b22927.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "Jet2 Advert",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 32
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyf",
                                  "cid": "3804311",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=3804311",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyf on TikTok!",
                                    "share_desc_info": "Check out #fyf on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyf",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyf?_r=1&name=fyf&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=3804311&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00017174397317691893}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7476271958947007750",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7518891227505315000,
                                  7505434623032479000,
                                  7517505665120685000,
                                  7508901263354891000,
                                  7534002938612665000,
                                  7501112099872001000,
                                  7509884460133928000,
                                  7513367833389157000,
                                  7512508590339460000,
                                  7539696675376451000,
                                  7539066192217034000,
                                  7507456548315155000,
                                  7518965932627185000,
                                  7501627303760268000,
                                  7501288589343428000,
                                  7520930705522642000,
                                  7476271958947007000
                                ],
                                "GroupdIdList1": [
                                  7518891227505315000,
                                  7505434623032479000,
                                  7517505665120685000,
                                  7508901263354891000,
                                  7534002938612665000,
                                  7501112099872001000,
                                  7509884460133928000,
                                  7513367833389157000,
                                  7512508590339460000,
                                  7539696675376451000,
                                  7539066192217034000,
                                  7507456548315155000,
                                  7518965932627185000,
                                  7501627303760268000,
                                  7522154288726937000,
                                  7536332133158211000,
                                  7474701430260125000
                                ]
                              },
                              "has_danmaku": false,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 32,
                                "author": "✈️A7-BBH | MAN 🇬🇧",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=a02d7633&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BYLYCMl6JPG3snp8VXMCyf1Ba20%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5a400491&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BwwoNbK0uyOehKowO%2BDgGcCrWaM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e0616bb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SpV4IeNKhLvBrgKzTqj%2BNTWXiX4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=dc251fb5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2NEvdgq7ND1tk0a7ZlB%2BiuR0P8E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=d808e507&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BPpBdTGdXSbocrc1VfCYj6OXA5I%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=eccf2620&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=39NKVKko2pjuV07dAEZEEqJJUhE%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f56453e2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=YDE3jPLU9UbZIOWFiyhKa4t9Vls%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=1d5d31b7&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3bswxGpw31rApyhJ8IiFyaNQ1no%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=a86d5346&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=W3Z30Ic%2Fahe4UN%2BoaFE%2BWDMkYhw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=a02d7633&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BYLYCMl6JPG3snp8VXMCyf1Ba20%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5a400491&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BwwoNbK0uyOehKowO%2BDgGcCrWaM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=e0616bb1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=SpV4IeNKhLvBrgKzTqj%2BNTWXiX4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=dc251fb5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2NEvdgq7ND1tk0a7ZlB%2BiuR0P8E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=d808e507&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=BPpBdTGdXSbocrc1VfCYj6OXA5I%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/cff851dcc47b40b38c1e4070a3999290~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=eccf2620&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=39NKVKko2pjuV07dAEZEEqJJUhE%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1722518900,
                                "dmv_auto_show": false,
                                "duration": 32,
                                "duration_high_precision": {
                                  "audition_duration_precision": 32.626938,
                                  "duration_precision": 32.626938,
                                  "shoot_duration_precision": 32.626938,
                                  "video_duration_precision": 32.626938
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":4,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7398162299090898208,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v0f942gc0000cqloqsvog65icf0ns7u0\",\"owner_id\":6896522458037765126,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7398162320411430000,
                                "id_str": "7398162320411429664",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [
                                    {
                                      "avatar": {
                                        "uri": "tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57",
                                        "url_list": [
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=6153146e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=2kffuKjd%2BRRZbUDat%2BInadmzGmY%3D",
                                          "https://p19-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.heic?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=7a6c47ee&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wFFZ82oCjEx3xlVYpKkDOW%2FOigA%3D",
                                          "https://p16-common-sign.tiktokcdn-eu.com/tos-no1a-avt-0068c001-no/f6d16577df3ba84db05ea77c81164e57~tplv-tiktokx-cropcenter-q:168:168:q70.jpeg?dr=9604&idc=no1a&ps=87d6e48a&refresh_token=9cb839f6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Sk5diGC6Dt92PY7y9%2FWhpPdHi0k%3D"
                                        ],
                                        "url_prefix": null
                                      },
                                      "enter_type": 2,
                                      "follow_status": 0,
                                      "follower_status": 0,
                                      "handle": "jessglynne",
                                      "is_block": false,
                                      "is_blocked": false,
                                      "is_private_account": false,
                                      "is_verified": true,
                                      "is_visible": false,
                                      "nick_name": "Jess Glynne",
                                      "sec_uid": "MS4wLjABAAAAUoFazvVwsy-ZbW09wsiajH5bslC4aMYBrbpGiItB1VSO7Aru25EG7YxhS-5CTr6Y",
                                      "status": 1,
                                      "uid": "6808550523794490373"
                                    }
                                  ],
                                  "author": "Jess Glynne",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Hold My Hand\"",
                                  "mixed_title": "Jet2 Advert (Contains music from: Hold My Hand - Jess Glynne)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Hold My Hand",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Jess Glynne",
                                  "chorus_info": {
                                    "duration_ms": 31488,
                                    "start_ms": 191040
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/9ed8c123c47c4eac897a36096e8936aa.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 227391,
                                  "h5_url": "",
                                  "id": "6716603337308899330",
                                  "performers": null,
                                  "title": "Hold My Hand"
                                },
                                "meme_song_info": {},
                                "mid": "7398162320411429664",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "aviation_on_tiktok2",
                                "owner_id": "6896522458037765126",
                                "owner_nickname": "✈️A7-BBH | MAN 🇬🇧",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music.tiktokcdn.com/obj/ies-music-euttp/7398162308491922208.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music.tiktokcdn.com/obj/ies-music-euttp/7398162308491922208.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA9FPnjRlkMlNlNn5rbC--mvCD4OGJvtqaJ3raZLkmucTc3F4kILVRw1h261sveAQT",
                                "shoot_duration": 32,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/1606321ecb1e4b8db4f78dd3b3b22927.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/1606321ecb1e4b8db4f78dd3b3b22927.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "Jet2 Advert",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 32
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 22853,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "58.970432",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"14\">#fyf</h> <h id=\"46\">#fyp</h> <h id=\"86\">#fypシ</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "3804311",
                                    "hashtag_name": "fyf",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "14",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "46",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "86",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out eagleyes22's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out eagleyes22’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out eagleyes22’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@eagleyes2/video/7539696675376450830?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7539696675376450830&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:audio_meta\":\"{\\\"26781ef738bcf9519c582edef9f97a3f\\\":{\\\"Md5\\\":\\\"26781ef738bcf9519c582edef9f97a3f\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.85],\\\"drr\\\":8.6,\\\"rcd\\\":[0],\\\"mp\\\":-19.72,\\\"be\\\":[21.5,14502.6],\\\"ocf\\\":[10.8,15.9,12.4,10.7,6.9,-0.5,-3,-8,-13.6,-32.7],\\\"il\\\":-30.9}}},\\\"5bbfc13e4132763114c602ab84fb723d\\\":{\\\"Md5\\\":\\\"5bbfc13e4132763114c602ab84fb723d\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.92],\\\"drr\\\":8.8,\\\"rcd\\\":[0.1],\\\"mp\\\":-18.77,\\\"be\\\":[21.5,13242.9],\\\"ocf\\\":[10.6,16,12.2,10.5,6.5,-0.7,-3.5,-9.1,-15.4,-36.1],\\\"il\\\":-30.9}}},\\\"5e231df6ae2548a52e00aa7966316825\\\":{\\\"Md5\\\":\\\"5e231df6ae2548a52e00aa7966316825\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.92],\\\"drr\\\":8.8,\\\"rcd\\\":[0.1],\\\"mp\\\":-18.77,\\\"be\\\":[21.5,13242.9],\\\"ocf\\\":[10.6,16,12.2,10.5,6.5,-0.7,-3.5,-9.1,-15.4,-36.1],\\\"il\\\":-30.9}}},\\\"5ee21f23482174083206dacd24633ea3\\\":{\\\"Md5\\\":\\\"5ee21f23482174083206dacd24633ea3\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.85],\\\"drr\\\":8.7,\\\"rcd\\\":[0],\\\"mp\\\":-19.88,\\\"be\\\":[21.5,14513.4],\\\"ocf\\\":[10.8,15.9,12.4,10.7,6.9,-0.6,-3,-8.2,-13.8,-32.7],\\\"il\\\":-30.9}}},\\\"a71456d3d433618851b503dfeb336459\\\":{\\\"Md5\\\":\\\"a71456d3d433618851b503dfeb336459\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.92],\\\"drr\\\":8.8,\\\"rcd\\\":[0.1],\\\"mp\\\":-18.77,\\\"be\\\":[21.5,13242.9],\\\"ocf\\\":[10.6,16,12.2,10.5,6.5,-0.7,-3.5,-9.1,-15.4,-36.1],\\\"il\\\":-30.9}}},\\\"c3c3aa16d065a1e1d5bd4afb35be42d9\\\":{\\\"Md5\\\":\\\"c3c3aa16d065a1e1d5bd4afb35be42d9\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.85],\\\"drr\\\":8.6,\\\"rcd\\\":[0],\\\"mp\\\":-19.72,\\\"be\\\":[21.5,14502.6],\\\"ocf\\\":[10.8,15.9,12.4,10.7,6.9,-0.5,-3,-8,-13.6,-32.7],\\\"il\\\":-30.9}}},\\\"d238175dcabfcbe5d765455cfc61159e\\\":{\\\"Md5\\\":\\\"d238175dcabfcbe5d765455cfc61159e\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.85],\\\"drr\\\":8.6,\\\"rcd\\\":[0],\\\"mp\\\":-19.72,\\\"be\\\":[21.5,14502.6],\\\"ocf\\\":[10.8,15.9,12.4,10.7,6.9,-0.5,-3,-8,-13.6,-32.7],\\\"il\\\":-30.9}}},\\\"f165b201c824c967a1c554d814e4274a\\\":{\\\"Md5\\\":\\\"f165b201c824c967a1c554d814e4274a\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.85],\\\"drr\\\":8.7,\\\"rcd\\\":[0],\\\"mp\\\":-19.88,\\\"be\\\":[21.5,14513.4],\\\"ocf\\\":[10.8,15.9,12.4,10.7,6.9,-0.6,-3,-8.2,-13.8,-32.7],\\\"il\\\":-30.9}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.86],\\\"drr\\\":8.9,\\\"rcd\\\":[0],\\\"mp\\\":-19.87,\\\"be\\\":[21.5,14534.9],\\\"ocf\\\":[10.5,15.9,12.1,10.8,6.8,-0.5,-3,-8.1,-13.1,-33],\\\"il\\\":-31.1},\\\"ts\\\":[\\\"tag_01010226\\\",\\\"tag_03010309\\\",\\\"tag_01010227\\\",\\\"tag_03010306\\\",\\\"tag_03010303\\\"],\\\"trs\\\":[0.85,0.71,0.07,0.04,0.03]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10003\",\"PACK_VOD:vod_sr_class_v30_score\":\"66.001\",\"play_time_prob_dist\":\"[800,0.7207,3468.093]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7539696675376450830",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"video_id\":\"\",\"ecom_intent\":\"2\",\"word_type_list\":\"\",\"predict_ctr_score\":0.0015182174986802218,\"visualize_sug_product_id\":\"\",\"words_type_to_dmp_list\":\"\",\"hot_level\":\"0\",\"lvl1_category_id\":\"\",\"recall_reason\":\"video_sar_top_counter_passive_recall,global_video_sar_top_counter_passive_recall,global_video_top_counter_recall\",\"words_type_to_voucher_ids\":\"\",\"lvl3_cate_list\":\"\",\"ecom_trigger_info_map\":\"\",\"is_time_sensitive\":\"0\",\"sug_user_id\":\"\",\"word_type_version_map\":\"\",\"ecom_trigger_info\":\"\",\"generate_time\":\"0\",\"is_ramandan_promotion\":\"\"}",
                                        "word": "eagleyes2",
                                        "word_id": "5792187805363697166",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"ecom_intent\":\"2\",\"hot_level\":\"0\",\"predict_ctr_score\":0.003421292453261231,\"ecom_trigger_info\":\"\",\"words_type_to_dmp_list\":\"\",\"sug_user_id\":\"\",\"is_time_sensitive\":\"0\",\"visualize_sug_product_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"lvl3_cate_list\":\"\",\"word_type_version_map\":\"\",\"video_id\":\"\",\"is_ramandan_promotion\":\"\",\"recall_reason\":\"video_sar_top_counter_passive_recall,global_video_sar_top_counter_passive_recall,global_video_top_counter_recall\",\"lvl1_category_id\":\"\",\"generate_time\":\"0\",\"ecom_trigger_info_map\":\"\",\"word_type_list\":\"\"}",
                                        "word": "eagleyes2",
                                        "word_id": "5792187805363697166",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "3804311",
                                  "hashtag_name": "fyf",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "14",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 9,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "46",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 15,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 10,
                                  "tag_id": "86",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": true,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 0,
                                "share_type": 1,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7026452169990456325",
                              "handle": "eagleyes2",
                              "displayName": "eagleyes22",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7d542caa8b0cd01a2a79afd93523630f~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=94b282f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=0vQQg7He2syqBqTC%2FgEZkRXVYf4%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7311629066707143941",
                            "caption": "Cookie Wop Wop 🤣 #fyp #fypシ #foryou #wopchallenge #cookies #dance #Foodie #baked_ish",
                            "createdAt": "2023-12-12T08:55:05.000Z",
                            "url": "https://www.tiktok.com/@bakedish/video/7311629066707143941",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/o8DKCw8FELeFubPAwg6I8KsEjecUDCB2IfhQ6S~tplv-tiktokx-origin.image?dr=1347&refresh_token=c72f3f03&x-expires=1779343200&x-signature=XxZfj2%2Bwg4I90BUd8Bs%2F03DQYfM%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 22534,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 115414857,
                              "likes": 17083134,
                              "comments": 118292,
                              "shares": 668144,
                              "saves": 1432273
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/0824899e5c8d4149f918cf3f43b422b6/6a0ea835/video/tos/useast2a/tos-useast2a-ve-0068c002/oosuvSDLQFAeI3C8KgES3PIDC2DwfjUwKcfrg6/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=703&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NzM1OzQ7OmY2NGY2NmY8Z0Bpanc8NnU5cjU0bzMzNzczM0AxMDRjXjZfXzUxMzIvYGJfYSMvYmVfMmRzc3BgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e0007d000",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "add_yours_info": {
                                "video_source": 1
                              },
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 36,
                                "author": "Slim 199x",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=dc6f6964&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9fNFusRgKk4166Pb5gszISb1Ym0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4edcdb82&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Lz3I1KdbclsZWpXwpAg6vtSekM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1113c81c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Va5UCjsWTaDvzagWg9eICR46Oc8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c3b74a1e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a9afJjsfmyyc7xuPY7YJC5hu0Xs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=01252ba8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fjL%2F9e8yNJ6UUgAR8qIYxoUI7uA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fa4c3687&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TtApDcOGlko60wo%2B4EtIojA2K5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=834c394c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=bUlofLQHVZndqzepy3VicTPiQIQ%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=95876008&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=xCcp1s80jZw97N7NZv0fjtQP4F8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=fede0eca&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q5Ou8sCvoNjPHOWOVY4GXAzS08E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=dc6f6964&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9fNFusRgKk4166Pb5gszISb1Ym0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4edcdb82&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Lz3I1KdbclsZWpXwpAg6vtSekM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1113c81c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Va5UCjsWTaDvzagWg9eICR46Oc8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c3b74a1e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a9afJjsfmyyc7xuPY7YJC5hu0Xs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=01252ba8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fjL%2F9e8yNJ6UUgAR8qIYxoUI7uA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fa4c3687&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TtApDcOGlko60wo%2B4EtIojA2K5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1692926358,
                                "dmv_auto_show": false,
                                "duration": 36,
                                "duration_high_precision": {
                                  "audition_duration_precision": 36.937126,
                                  "duration_precision": 36.937126,
                                  "shoot_duration_precision": 36.937126,
                                  "video_duration_precision": 36.937126
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":13,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7271063271258524971,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cjk0353c77udhmgceu5g\",\"owner_id\":6895824498957108230,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7271063308894981000,
                                "id_str": "7271063308894980906",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "J. Dash",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Wop (Official Version)\"",
                                  "mixed_title": "original sound - slim199x (Contains music from: Wop (Official Version) - J. Dash)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Wop (Official Version)",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "J. Dash",
                                  "chorus_info": {
                                    "duration_ms": 17279,
                                    "start_ms": 59712
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 230674,
                                  "h5_url": "",
                                  "id": "6775039095883171841",
                                  "performers": null,
                                  "title": "Wop (Official Version)"
                                },
                                "meme_song_info": {},
                                "mid": "7271063308894980906",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "slim199x",
                                "owner_id": "6895824498957108230",
                                "owner_nickname": "Slim 199x",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7271063316217989934.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7271063316217989934.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAztRCT1DmtF0B74Pp46eAY3jMKpxsqtuKXVF6jmCyzJgDZ3jLWrQtXyeG-XjOXlmU",
                                "shoot_duration": 36,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/3d1e65d1fd3cb1f45e6995f7def15e54.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/3d1e65d1fd3cb1f45e6995f7def15e54.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - slim199x",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 36
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "download_mask_panel": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 0,
                                  "transcode": 1
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": [
                                  {
                                    "action_id": "share_to_story",
                                    "code": 1,
                                    "extra": "218",
                                    "show_type": 0
                                  },
                                  {
                                    "action_id": "create_sticker",
                                    "code": 1,
                                    "extra": "216",
                                    "show_type": 1,
                                    "toast_msg": "Create sticker isn’t available for this video"
                                  }
                                ],
                                "share_general": {
                                  "code": 1,
                                  "extra": "101",
                                  "mute": false,
                                  "show_type": 1,
                                  "toast_msg": "This action isn’t allowed for this post",
                                  "transcode": 1
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "component_key_placeholder"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "fyp",
                                  "cid": "229207",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=229207",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #fyp on TikTok!",
                                    "share_desc_info": "Check out #fyp on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: fyp",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/fyp?_r=1&name=fyp&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=229207&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0010249287056691497}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "text",
                                  "select_music"
                                ]
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7311629066707143941",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7311629066707144000
                                ]
                              },
                              "has_danmaku": true,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 1,
                                "allow_create_sticker": {
                                  "disable_toast": "Create sticker isn’t available for this video",
                                  "status": 1
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": [
                                {
                                  "attr": "",
                                  "index": 0,
                                  "is_non_global": false,
                                  "is_non_global_v2": false,
                                  "material_index": 0,
                                  "text_info": "@Baked_Ish",
                                  "text_sticker_info": {
                                    "alignment": 0,
                                    "bg_color": "#00000000",
                                    "source_height": 0.2830112721417069,
                                    "source_width": 0.4267310789049919,
                                    "text_color": "#FFFFFFFF",
                                    "text_language": "un",
                                    "text_size": 28
                                  },
                                  "track_info": "[{\"x\":0.5,\"end_time\":22603.334,\"p\":null,\"y\":0.75,\"h\":0.1275,\"isRatioCoord\":true,\"start_time\":0,\"r\":0,\"w\":0.1698,\"s\":0.3725}]",
                                  "type": 18
                                }
                              ],
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 36,
                                "author": "Slim 199x",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=dc6f6964&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9fNFusRgKk4166Pb5gszISb1Ym0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4edcdb82&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Lz3I1KdbclsZWpXwpAg6vtSekM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1113c81c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Va5UCjsWTaDvzagWg9eICR46Oc8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c3b74a1e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a9afJjsfmyyc7xuPY7YJC5hu0Xs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=01252ba8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fjL%2F9e8yNJ6UUgAR8qIYxoUI7uA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fa4c3687&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TtApDcOGlko60wo%2B4EtIojA2K5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=834c394c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=bUlofLQHVZndqzepy3VicTPiQIQ%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=95876008&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=xCcp1s80jZw97N7NZv0fjtQP4F8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=fede0eca&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=q5Ou8sCvoNjPHOWOVY4GXAzS08E%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=dc6f6964&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9fNFusRgKk4166Pb5gszISb1Ym0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4edcdb82&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Lz3I1KdbclsZWpXwpAg6vtSekM%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1113c81c&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Va5UCjsWTaDvzagWg9eICR46Oc8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae",
                                  "url_list": [
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=c3b74a1e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a9afJjsfmyyc7xuPY7YJC5hu0Xs%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=01252ba8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=fjL%2F9e8yNJ6UUgAR8qIYxoUI7uA%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7747310de356564078f8f27c813b49ae~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=fa4c3687&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=TtApDcOGlko60wo%2B4EtIojA2K5o%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1692926358,
                                "dmv_auto_show": false,
                                "duration": 36,
                                "duration_high_precision": {
                                  "audition_duration_precision": 36.937126,
                                  "duration_precision": 36.937126,
                                  "shoot_duration_precision": 36.937126,
                                  "video_duration_precision": 36.937126
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":13,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7271063271258524971,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000cjk0353c77udhmgceu5g\",\"owner_id\":6895824498957108230,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7271063308894981000,
                                "id_str": "7271063308894980906",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "J. Dash",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"Wop (Official Version)\"",
                                  "mixed_title": "original sound - slim199x (Contains music from: Wop (Official Version) - J. Dash)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "Wop (Official Version)",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "J. Dash",
                                  "chorus_info": {
                                    "duration_ms": 17279,
                                    "start_ms": 59712
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/d9f8f599ef174b318d5583f64978eece.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 230674,
                                  "h5_url": "",
                                  "id": "6775039095883171841",
                                  "performers": null,
                                  "title": "Wop (Official Version)"
                                },
                                "meme_song_info": {},
                                "mid": "7271063308894980906",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "slim199x",
                                "owner_id": "6895824498957108230",
                                "owner_nickname": "Slim 199x",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7271063316217989934.mp3",
                                  "url_list": [
                                    "https://sf16-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/7271063316217989934.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAztRCT1DmtF0B74Pp46eAY3jMKpxsqtuKXVF6jmCyzJgDZ3jLWrQtXyeG-XjOXlmU",
                                "shoot_duration": 36,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/3d1e65d1fd3cb1f45e6995f7def15e54.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/3d1e65d1fd3cb1f45e6995f7def15e54.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - slim199x",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 36
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 22503,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "Cookie Wop Wop 🤣 <h id=\"35\">#fyp</h> <h id=\"67\">#fypシ</h> <h id=\"203\">#foryou</h> <h id=\"2892\">#wopchallenge</h> <h id=\"512\">#cookies</h> <h id=\"644\">#dance</h> <h id=\"2057\">#Foodie</h> <h id=\"3364\">#baked_ish</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "35",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "67",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "203",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "251978",
                                    "hashtag_name": "wopchallenge",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2892",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "18723",
                                    "hashtag_name": "cookies",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "512",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5054",
                                    "hashtag_name": "dance",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "644",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "251048",
                                    "hashtag_name": "foodie",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2057",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7101614195031932954",
                                    "hashtag_name": "baked_ish",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3364",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 0,
                                "item_total": 7,
                                "mix_id": "7464858112900139794",
                                "name": "Million views of fun 🙂"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "PH",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out BakedIsh's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out BakedIsh’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out BakedIsh’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@bakedish/video/7311629066707143941?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7311629066707143941&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10039\",\"play_time_prob_dist\":\"[800,0.7207,3468.093]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7311629066707143941",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"ecom_intent\":\"0\",\"hot_level\":\"0\",\"recall_reason\":\"global_video_top_counter_recall\",\"ecom_trigger_info\":\"\",\"word_type_version_map\":\"\",\"video_id\":\"\",\"is_time_sensitive\":\"0\",\"ecom_trigger_info_map\":\"\",\"lvl3_cate_list\":\"\",\"visualize_sug_product_id\":\"\",\"words_type_to_dmp_list\":\"\",\"word_type_list\":\"\",\"predict_ctr_score\":0.02339199769812113,\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"generate_time\":\"0\",\"words_type_to_voucher_ids\":\"\",\"poi_card_id_list\":\"\",\"is_ramandan_promotion\":\"\"}",
                                        "word": "chowder intro",
                                        "word_id": "4841781924621098711",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": true,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 22,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 18,
                                  "tag_id": "35",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 28,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 23,
                                  "tag_id": "67",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 36,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 29,
                                  "tag_id": "203",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 50,
                                  "hashtag_id": "251978",
                                  "hashtag_name": "wopchallenge",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 37,
                                  "tag_id": "2892",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 59,
                                  "hashtag_id": "18723",
                                  "hashtag_name": "cookies",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 51,
                                  "tag_id": "512",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 66,
                                  "hashtag_id": "5054",
                                  "hashtag_name": "dance",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 60,
                                  "tag_id": "644",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 74,
                                  "hashtag_id": "251048",
                                  "hashtag_name": "foodie",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 67,
                                  "tag_id": "2057",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 85,
                                  "hashtag_id": "7101614195031932954",
                                  "hashtag_name": "baked_ish",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 75,
                                  "tag_id": "3364",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": true,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 0,
                                "share_type": 1,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6811781425371071489",
                              "handle": "bakedish",
                              "displayName": "BakedIsh",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-giso/f149f5183ad36355da752d2ca4ff1a92~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=0b3b86de&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=OKYKEcRT0kdDmylq5k0KDyrNSQU%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7307601334511996165",
                            "caption": "#cat #fypシ #couple #fyp #foryou #foryoupage #couple",
                            "createdAt": "2023-12-01T12:25:25.000Z",
                            "url": "https://www.tiktok.com/@random_habit/photo/7307601334511996165",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-c-cover:640:0:q72.heic?dr=12981&refresh_token=d6c6ee82&x-expires=1780552800&x-signature=Gryu40t3u1jymqJ2tG6c1VvUN5E%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover",
                            "durationMs": 0,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 122097431,
                              "likes": 16968227,
                              "comments": 136581,
                              "shares": 452675,
                              "saves": 1778857
                            },
                            "media": {
                              "downloadUrl": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7163406585690426117.mp3",
                              "downloadWithoutWatermarkUrl": null
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 42,
                                "author": "🎧",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4e9270d8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=K19FNvcfnDvdc7efYiJsP6zut1k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5f251c0e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nkowqNGlzTs%2FOGE0kzAmDdo7oVY%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28bdb18f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=tuLmR73Js8gZkic8HEcFbXuMc%2Bs%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=34208de6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qtsWIZQUo6g7XoFDmkxfLk%2B3abg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=de98180b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=83g4onaz38c%2FNcfVTizW43rwaNc%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=266a6df1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=F370nMUJ1nDfSQEBqnKg2vUB8H8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=81e615ea&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WKEFxMFQFyCy1APncdFLLUnK98I%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=e76a1cbf&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=s41Q6pn4LwB9iTexDhy%2Fvcano1A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=b72b85ba&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=MYbkYBjYM%2FKtpst9AkPz6lkncpw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4e9270d8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=K19FNvcfnDvdc7efYiJsP6zut1k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5f251c0e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nkowqNGlzTs%2FOGE0kzAmDdo7oVY%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28bdb18f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=tuLmR73Js8gZkic8HEcFbXuMc%2Bs%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=34208de6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qtsWIZQUo6g7XoFDmkxfLk%2B3abg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=de98180b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=83g4onaz38c%2FNcfVTizW43rwaNc%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=266a6df1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=F370nMUJ1nDfSQEBqnKg2vUB8H8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1667722809,
                                "dmv_auto_show": false,
                                "duration": 42,
                                "duration_high_precision": {
                                  "audition_duration_precision": 42.136,
                                  "duration_precision": 42.136,
                                  "shoot_duration_precision": 42.136,
                                  "video_duration_precision": 42.136
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":15,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7162814711443115291,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v0f942gc0000cdjmsbrc77u3m2oj7sog\",\"owner_id\":7035536475089306650,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7162814877847784000,
                                "id_str": "7162814877847784219",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Arctic Monkeys",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"I Wanna Be Yours\"",
                                  "mixed_title": "i wanna be yours remix (Contains music from: I Wanna Be Yours - Arctic Monkeys)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "I Wanna Be Yours",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Arctic Monkeys",
                                  "chorus_info": {
                                    "duration_ms": 17855,
                                    "start_ms": 57024
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 184020,
                                  "h5_url": "",
                                  "id": "6917336812998363138",
                                  "performers": null,
                                  "title": "I Wanna Be Yours"
                                },
                                "meme_song_info": {},
                                "mid": "7162814877847784219",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "flowerybunni",
                                "owner_id": "7035536475089306650",
                                "owner_nickname": "🎧",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7163406585690426117.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7163406585690426117.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAiHjUVn32ND2F2JqBLxsTgDE01DZFCyezZyfCZwQjgNvWM9O8EIw_bVnjGkAwxk8x",
                                "shoot_duration": 42,
                                "source_platform": 24,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/ee26c25c60e2a8fd72024f5c90b261b5.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/ee26c25c60e2a8fd72024f5c90b261b5.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "i wanna be yours remix",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 42
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "extra": "#",
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "extra": "#",
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": [
                                  {
                                    "action_id": "create_sticker",
                                    "code": 1,
                                    "extra": "216",
                                    "show_type": 1,
                                    "toast_msg": "Create sticker isn’t available for this video"
                                  }
                                ],
                                "share_general": {
                                  "code": 0,
                                  "extra": "#",
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 150,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "component_key_placeholder"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "cat",
                                  "cid": "7551",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "musically-maliva-obj/2e13829d6e1816708244b2bc8b905c51",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=7551",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #cat on TikTok!",
                                    "share_desc_info": "Check out #cat on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: cat",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/cat?_r=1&name=cat&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=7551&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.001118623044574951}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 2,
                              "content_type": "multi_photo",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7307601334511996165",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "image_post_info": {
                                "image_post_cover": {
                                  "bitrate_images": [],
                                  "display_image": {
                                    "data_size": 0,
                                    "height": 426,
                                    "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                    "url_list": [
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-c-cover:640:0:q72.heic?dr=12981&refresh_token=d6c6ee82&x-expires=1780552800&x-signature=Gryu40t3u1jymqJ2tG6c1VvUN5E%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover",
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-c-cover:640:0:q72.jpeg?dr=12981&refresh_token=f6f2c03f&x-expires=1780552800&x-signature=5Uynk6sryH8okrGBKk4EMP0vbrc%3D&t=5897f7ec&ps=d5b8ac02&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover"
                                    ],
                                    "url_prefix": null,
                                    "width": 605
                                  },
                                  "owner_watermark_image": {
                                    "data_size": 0,
                                    "height": 426,
                                    "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                    "url_list": [
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.webp?dr=1308&refresh_token=19f77be9&x-expires=1780552800&x-signature=NjRByDNMAN9RCKt2dovu7DSpiE0%3D&t=5897f7ec&ps=a86e979e&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover",
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.jpeg?dr=1308&refresh_token=32e886bd&x-expires=1780552800&x-signature=1GkW%2BrQXNT%2Fuk%2F8a9Qq9muji4Uw%3D&t=5897f7ec&ps=a86e979e&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover"
                                    ],
                                    "url_prefix": null,
                                    "width": 605
                                  },
                                  "thumbnail": {
                                    "data_size": 0,
                                    "height": 426,
                                    "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                    "url_list": [
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-image-v1:q70.webp?dr=1304&refresh_token=357839ef&x-expires=1780552800&x-signature=NWWl4k5k1%2BIcpvZD%2BGVmbVMx9F0%3D&t=5897f7ec&ps=91264d6f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&sc=cover&biz_tag=tt_photomode",
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-image-v1:q70.jpeg?dr=1304&refresh_token=e1f4020d&x-expires=1780552800&x-signature=Uq1%2BWUB8Nkqt%2BEVNpJ5tcHjWk9g%3D&t=5897f7ec&ps=91264d6f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&sc=cover&biz_tag=tt_photomode"
                                    ],
                                    "url_prefix": null,
                                    "width": 605
                                  },
                                  "user_watermark_image": {
                                    "data_size": 0,
                                    "height": 426,
                                    "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                    "url_list": [
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.webp?dr=1305&refresh_token=f2420e19&x-expires=1780552800&x-signature=r56HfJTYmZcoDp656qS4ypO0PyQ%3D&t=5897f7ec&ps=dab23eb0&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover",
                                      "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.jpeg?dr=1305&refresh_token=67420fea&x-expires=1780552800&x-signature=xDMzetmkAghMEy%2F3%2B6uHEmGdjDY%3D&t=5897f7ec&ps=dab23eb0&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=cover"
                                    ],
                                    "url_prefix": null,
                                    "width": 605
                                  }
                                },
                                "images": [
                                  {
                                    "bitrate_images": [],
                                    "display_image": {
                                      "data_size": 0,
                                      "height": 426,
                                      "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-c-shrink:1080:0:q80.heic?dr=12980&refresh_token=72b0848e&x-expires=1780552800&x-signature=%2B%2FuxpscKqb3VKR3E70vLSJpJ4Wk%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-c-shrink:1080:0:q80.jpeg?dr=12980&refresh_token=40e1d45b&x-expires=1780552800&x-signature=gcWPxpojrKRNK25N630yFxOPKe8%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "owner_watermark_image": {
                                      "data_size": 0,
                                      "height": 426,
                                      "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.webp?dr=1338&refresh_token=19f77be9&x-expires=1780552800&x-signature=NjRByDNMAN9RCKt2dovu7DSpiE0%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.jpeg?dr=1338&refresh_token=32e886bd&x-expires=1780552800&x-signature=1GkW%2BrQXNT%2Fuk%2F8a9Qq9muji4Uw%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "thumbnail": {
                                      "data_size": 0,
                                      "height": 426,
                                      "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-image-v1:q70.webp?dr=1334&refresh_token=357839ef&x-expires=1780552800&x-signature=NWWl4k5k1%2BIcpvZD%2BGVmbVMx9F0%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-image-v1:q70.jpeg?dr=1334&refresh_token=e1f4020d&x-expires=1780552800&x-signature=Uq1%2BWUB8Nkqt%2BEVNpJ5tcHjWk9g%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "user_watermark_image": {
                                      "data_size": 0,
                                      "height": 426,
                                      "uri": "tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.webp?dr=1335&refresh_token=f2420e19&x-expires=1780552800&x-signature=r56HfJTYmZcoDp656qS4ypO0PyQ%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/dd7fa4436f6a469ca8474a5dd7e752e1~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.jpeg?dr=1335&refresh_token=67420fea&x-expires=1780552800&x-signature=xDMzetmkAghMEy%2F3%2B6uHEmGdjDY%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    }
                                  },
                                  {
                                    "bitrate_images": [],
                                    "display_image": {
                                      "data_size": 0,
                                      "height": 413,
                                      "uri": "tos-maliva-i-photomode-us/b70880de40804e449f804def25592979",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-c-shrink:1080:0:q80.heic?dr=12980&refresh_token=41345b36&x-expires=1780552800&x-signature=n1DqJiV4dB%2BysvAMKphHFLwGMLQ%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-c-shrink:1080:0:q80.jpeg?dr=12980&refresh_token=a9213be4&x-expires=1780552800&x-signature=PL3z0d6o7OW%2F%2FhL%2B1yFRJH%2B61Bs%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "owner_watermark_image": {
                                      "data_size": 0,
                                      "height": 413,
                                      "uri": "tos-maliva-i-photomode-us/b70880de40804e449f804def25592979",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.webp?dr=1338&refresh_token=d201344c&x-expires=1780552800&x-signature=g133H%2FK9ykJTgfXr%2BCeOQUm%2FTJM%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.jpeg?dr=1338&refresh_token=de7b225c&x-expires=1780552800&x-signature=tVGKclbGXPbcPDYGvIATiKfgz8c%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "thumbnail": {
                                      "data_size": 0,
                                      "height": 413,
                                      "uri": "tos-maliva-i-photomode-us/b70880de40804e449f804def25592979",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-image-v1:q70.webp?dr=1334&refresh_token=f797bfb5&x-expires=1780552800&x-signature=vPM7yyan%2F6q4z9S8YvbgLpJn014%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-image-v1:q70.jpeg?dr=1334&refresh_token=39ca78e4&x-expires=1780552800&x-signature=P%2FRvAOfn5FOTcpu0oQ0TLeQ0fmE%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "user_watermark_image": {
                                      "data_size": 0,
                                      "height": 413,
                                      "uri": "tos-maliva-i-photomode-us/b70880de40804e449f804def25592979",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.webp?dr=1335&refresh_token=f325383c&x-expires=1780552800&x-signature=jjz%2Btc3sNZBG%2F08KPjbtzIAMdPs%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/b70880de40804e449f804def25592979~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.jpeg?dr=1335&refresh_token=c6f9dd55&x-expires=1780552800&x-signature=Din3c9EYqSnt4T6zg3sY2rhJRT8%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    }
                                  },
                                  {
                                    "bitrate_images": [],
                                    "display_image": {
                                      "data_size": 0,
                                      "height": 420,
                                      "uri": "tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-c-shrink:1080:0:q80.heic?dr=12980&refresh_token=3cf440d0&x-expires=1780552800&x-signature=%2FDBwmhbwFyXZZn4F%2FaKXvXYNgjM%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-c-shrink:1080:0:q80.jpeg?dr=12980&refresh_token=1f48ab6c&x-expires=1780552800&x-signature=xG%2FNvtsE%2BuCipS2VvT1m2uJ7U2o%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "owner_watermark_image": {
                                      "data_size": 0,
                                      "height": 420,
                                      "uri": "tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.webp?dr=1338&refresh_token=d305156c&x-expires=1780552800&x-signature=IaUXZ6Q89NVgth3V6elKU3HQ%2FQI%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.jpeg?dr=1338&refresh_token=80786a6e&x-expires=1780552800&x-signature=Rqgdxgl2ATzyG6Q50nsFiRSCffw%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "thumbnail": {
                                      "data_size": 0,
                                      "height": 420,
                                      "uri": "tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-image-v1:q70.webp?dr=1334&refresh_token=5be7d45a&x-expires=1780552800&x-signature=q0%2FgKYu2CUNPVzlK5iyS7g4gZDk%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-image-v1:q70.jpeg?dr=1334&refresh_token=c27ce145&x-expires=1780552800&x-signature=xRWYCbbwkvSYXatCf6IqCcXxmd4%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "user_watermark_image": {
                                      "data_size": 0,
                                      "height": 420,
                                      "uri": "tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.webp?dr=1335&refresh_token=4c96a0d4&x-expires=1780552800&x-signature=8s5e2QncOK2fdniQS2G6CilQvXo%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/834a417078e742cb8d94719fa9c2e151~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.jpeg?dr=1335&refresh_token=b2107dd0&x-expires=1780552800&x-signature=Ann9K3C%2FVVG%2FTWdPpXkc5oM1Dec%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    }
                                  },
                                  {
                                    "bitrate_images": [],
                                    "display_image": {
                                      "data_size": 0,
                                      "height": 406,
                                      "uri": "tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-c-shrink:1080:0:q80.heic?dr=12980&refresh_token=6db83477&x-expires=1780552800&x-signature=WL%2FVEtt%2Fn0RTvSlyuvbC1zaZirY%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-c-shrink:1080:0:q80.jpeg?dr=12980&refresh_token=09aab7cb&x-expires=1780552800&x-signature=fA3LMJvazafAHy9WB2d8HVLo7fA%3D&t=5897f7ec&ps=28cf8ac7&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "owner_watermark_image": {
                                      "data_size": 0,
                                      "height": 406,
                                      "uri": "tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.webp?dr=1338&refresh_token=890e394b&x-expires=1780552800&x-signature=lY0N8SpA%2BPxYdNlVwb0ZaVATLWw%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-ow-fat:cmFuZG9tX2hhYml0.jpeg?dr=1338&refresh_token=55c97964&x-expires=1780552800&x-signature=XPOJgXcpCBlFDe5QBFHTqAjKRlA%3D&t=5897f7ec&ps=6172d153&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "thumbnail": {
                                      "data_size": 0,
                                      "height": 406,
                                      "uri": "tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-image-v1:q70.webp?dr=1334&refresh_token=2e543dba&x-expires=1780552800&x-signature=c44cdkIoLQDBlyoJaP4j4q5hirY%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-image-v1:q70.jpeg?dr=1334&refresh_token=bf92efbe&x-expires=1780552800&x-signature=P%2BeZD8w3QisaPxysBakMSu9%2F2Wc%3D&t=5897f7ec&ps=b40d0ec8&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    },
                                    "user_watermark_image": {
                                      "data_size": 0,
                                      "height": 406,
                                      "uri": "tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54",
                                      "url_list": [
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.webp?dr=1335&refresh_token=72888d98&x-expires=1780552800&x-signature=CdSF4w9%2Fji%2FFfuieo%2BsYKACkAT0%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image",
                                        "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-i-photomode-us/2d990e8cbf18448e830b878f76942a54~tplv-photomode-uw-fat:cmFuZG9tX2hhYml0.jpeg?dr=1335&refresh_token=82a62cb7&x-expires=1780552800&x-signature=c11GH1Wdfi%2BqWi6h8Pj4Whjh%2FbU%3D&t=5897f7ec&ps=4850ec3f&shp=d05b14bd&shcp=c0f880ed&idc=no1a&s=CHALLENGE_AWEME&biz_tag=tt_photomode&sc=image"
                                      ],
                                      "url_prefix": null,
                                      "width": 605
                                    }
                                  }
                                ],
                                "music_volume": 0.5,
                                "post_extra": "{\"photo_cover_shrink\":false,\"photo_blurhash\":false,\"photo_progressive\":false}",
                                "title": "",
                                "translation_info": {
                                  "image_major_language": "",
                                  "target_language": "",
                                  "translatable": false
                                }
                              },
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 2
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 1,
                              "item_react": 1,
                              "item_stitch": 1,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 42,
                                "author": "🎧",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4e9270d8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=K19FNvcfnDvdc7efYiJsP6zut1k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5f251c0e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nkowqNGlzTs%2FOGE0kzAmDdo7oVY%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28bdb18f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=tuLmR73Js8gZkic8HEcFbXuMc%2Bs%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=34208de6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qtsWIZQUo6g7XoFDmkxfLk%2B3abg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=de98180b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=83g4onaz38c%2FNcfVTizW43rwaNc%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=266a6df1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=F370nMUJ1nDfSQEBqnKg2vUB8H8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": false,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=81e615ea&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=WKEFxMFQFyCy1APncdFLLUnK98I%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=e76a1cbf&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=s41Q6pn4LwB9iTexDhy%2Fvcano1A%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=b72b85ba&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=MYbkYBjYM%2FKtpst9AkPz6lkncpw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=4e9270d8&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=K19FNvcfnDvdc7efYiJsP6zut1k%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5f251c0e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=nkowqNGlzTs%2FOGE0kzAmDdo7oVY%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28bdb18f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=tuLmR73Js8gZkic8HEcFbXuMc%2Bs%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=34208de6&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=qtsWIZQUo6g7XoFDmkxfLk%2B3abg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=de98180b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=83g4onaz38c%2FNcfVTizW43rwaNc%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/550b67dc79f2a84747f23e9fe6c14ccb~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=266a6df1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=F370nMUJ1nDfSQEBqnKg2vUB8H8%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1667722809,
                                "dmv_auto_show": false,
                                "duration": 42,
                                "duration_high_precision": {
                                  "audition_duration_precision": 42.136,
                                  "duration_precision": 42.136,
                                  "shoot_duration_precision": 42.136,
                                  "video_duration_precision": 42.136
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":15,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7162814711443115291,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":1,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":true,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v0f942gc0000cdjmsbrc77u3m2oj7sog\",\"owner_id\":7035536475089306650,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7162814877847784000,
                                "id_str": "7162814877847784219",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"group3\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_pgc_sound": {
                                  "artist_infos": [],
                                  "author": "Arctic Monkeys",
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "mixed_author": "Contains music from: \"I Wanna Be Yours\"",
                                  "mixed_title": "i wanna be yours remix (Contains music from: I Wanna Be Yours - Arctic Monkeys)",
                                  "music_release_info": {
                                    "group_release_date": 0,
                                    "is_new_release_song": false
                                  },
                                  "title": "I Wanna Be Yours",
                                  "uncert_artists": null
                                },
                                "matched_song": {
                                  "author": "Arctic Monkeys",
                                  "chorus_info": {
                                    "duration_ms": 17855,
                                    "start_ms": 57024
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/oIAfmFhgCJ3ZeDukIE0BP9ADAUEtDohQgABcIC.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 184020,
                                  "h5_url": "",
                                  "id": "6917336812998363138",
                                  "performers": null,
                                  "title": "I Wanna Be Yours"
                                },
                                "meme_song_info": {},
                                "mid": "7162814877847784219",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "flowerybunni",
                                "owner_id": "7035536475089306650",
                                "owner_nickname": "🎧",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7163406585690426117.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7163406585690426117.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAiHjUVn32ND2F2JqBLxsTgDE01DZFCyezZyfCZwQjgNvWM9O8EIw_bVnjGkAwxk8x",
                                "shoot_duration": 42,
                                "source_platform": 24,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/ee26c25c60e2a8fd72024f5c90b261b5.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/ee26c25c60e2a8fd72024f5c90b261b5.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "i wanna be yours remix",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 42
                              },
                              "music_begin_time_in_ms": 0,
                              "music_selected_from": "edit_page_search",
                              "music_title_style": 0,
                              "music_volume": "50.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"617\">#cat</h> <h id=\"636\">#fypシ</h> <h id=\"724\">#couple</h> <h id=\"743\">#fyp</h> <h id=\"768\">#foryou</h> <h id=\"799\">#foryoupage</h> <h id=\"836\">#couple</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "7551",
                                    "hashtag_name": "cat",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "617",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "636",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "10774",
                                    "hashtag_name": "couple",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "724",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "229207",
                                    "hashtag_name": "fyp",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "743",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "768",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "88764338",
                                    "hashtag_name": "foryoupage",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "799",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "10774",
                                    "hashtag_name": "couple",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "836",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 68,
                                "item_total": 107,
                                "mix_id": "7162750815470390043",
                                "name": "wholesome"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "PH",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out randomhabit's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out randomhabit’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out randomhabit’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@random_habit/photo/7307601334511996165?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7307601334511996165&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {},
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7307601334511996165",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"word_type_list\":\"\",\"words_type_to_dmp_list\":\"\",\"lvl1_category_id\":\"\",\"video_id\":\"\",\"generate_time\":\"0\",\"words_type_to_voucher_ids\":\"\",\"ecom_intent\":\"0\",\"ecom_trigger_info\":\"\",\"ecom_trigger_info_map\":\"\",\"sug_user_id\":\"\",\"recall_reason\":\"global_video_top_counter_recall,video_top_counter_recall,video_sar_top_counter_passive_recall,global_video_sar_top_counter_passive_recall,video_title_orion_qse_recall\",\"is_ramandan_promotion\":\"\",\"predict_ctr_score\":0.00491761745924613,\"visualize_sug_product_id\":\"\",\"lvl3_cate_list\":\"\",\"hot_level\":\"0\",\"word_type_version_map\":\"\",\"is_time_sensitive\":\"0\",\"poi_card_id_list\":\"\"}",
                                        "word": "cat couple",
                                        "word_id": "2423198712307596309",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 4,
                                  "hashtag_id": "7551",
                                  "hashtag_name": "cat",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "617",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 10,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 5,
                                  "tag_id": "636",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 18,
                                  "hashtag_id": "10774",
                                  "hashtag_name": "couple",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 11,
                                  "tag_id": "724",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 23,
                                  "hashtag_id": "229207",
                                  "hashtag_name": "fyp",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 19,
                                  "tag_id": "743",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 31,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 24,
                                  "tag_id": "768",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 43,
                                  "hashtag_id": "88764338",
                                  "hashtag_name": "foryoupage",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 32,
                                  "tag_id": "799",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 51,
                                  "hashtag_id": "10774",
                                  "hashtag_name": "couple",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 44,
                                  "tag_id": "836",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": true,
                                "allow_duet": false,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": false,
                                "draft_progress_bar": 0,
                                "prevent_download_type": 0,
                                "share_type": 1,
                                "show_progress_bar": 0,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6870438573620560898",
                              "handle": "random_habit",
                              "displayName": "randomhabit",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/cbcde5224a6c7df97dd7a72b9b0d2927~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=feb8f099&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=PdAWub9Sf8qi%2F1PYVnJz8ZQtfZY%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7526914619525451039",
                            "caption": "#funny #fypシ #viral #tiktok #universal #megatron",
                            "createdAt": "2025-07-14T12:33:54.000Z",
                            "url": "https://www.tiktok.com/@ashleyallen19956/video/7526914619525451039",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-useast8-p-0068-tx2/oIAApFhwkdrTDeMARfECPAE1AVEjEDAQ2oiZIs~tplv-tiktokx-origin.image?dr=1347&refresh_token=deca914b&x-expires=1779343200&x-signature=nyZS9W0qtpJvLpmapvNIHIX4Cmk%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 61200,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 109217298,
                              "likes": 16914912,
                              "comments": 27116,
                              "shares": 1212954,
                              "saves": 1333171
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/99a208ba745a26099b90c0fdc6a960b3/6a0ea85c/video/tos/maliva/tos-maliva-ve-0068c799-us/osWkQV4vcDAUe9jaGPFmERogbECAWBPdIsf2pE/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=2349&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NjY3OmU8NjdlOmg4aDtlZUBpM2VyeW05cjppNDMzaTczNEA1Yi41XmJgNl8xMC41MGI0YSNiL2pfMmQ0Zm5hLS1kMTJzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/6a3bfcf460a4e9aed3613b1d5f04a165/6a0ea85c/video/tos/maliva/tos-maliva-ve-0068c799-us/oAv9QRBoEA2IQrR4hECpfgWApcfDdFmkPVC8sE/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=2265&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=M2c7OWU0NjY2Z2Y0OzRoOUBpM2VyeW05cjppNDMzaTczNEBgXzYyXjRhXzYxLS41NTBfYSNiL2pfMmQ0Zm5hLS1kMTJzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000"
                            },
                            "details": {
                              "add_yours_info": {
                                "video_source": 1
                              },
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 61,
                                "author": "ashleyallen19956",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=127d5983&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rbs7w%2Fnemb3VLkt%2Bwk0cd7pPR2E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=13a5678f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hQj4%2FuxkmJfpzX%2FfcHsWndcMbu4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2090fa6b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=IAi%2FGoX%2BNNLCkKYlWm5oVSs0kug%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=086807f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DxjBjVLtn2Z4TAJfGtABanQJY0A%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5107dba2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jtSViC2ewrSc875Qb4j%2FigFjAxE%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=605a063e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vFuu68cVUfNFadiIDGsYM4iAFKo%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f1868fbc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=sEUVEKrmNhiuAhu%2F2zrMp8Qudzc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=ac2640a5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a7E4KSCu6pI7UPFw8nE3%2B53I6K8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=d8ebecde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C1tBrvYi2WniPPnCx2ySa8JVGmU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=127d5983&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rbs7w%2Fnemb3VLkt%2Bwk0cd7pPR2E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=13a5678f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hQj4%2FuxkmJfpzX%2FfcHsWndcMbu4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2090fa6b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=IAi%2FGoX%2BNNLCkKYlWm5oVSs0kug%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=086807f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DxjBjVLtn2Z4TAJfGtABanQJY0A%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5107dba2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jtSViC2ewrSc875Qb4j%2FigFjAxE%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=605a063e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vFuu68cVUfNFadiIDGsYM4iAFKo%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1752496438,
                                "dmv_auto_show": false,
                                "duration": 61,
                                "duration_high_precision": {
                                  "audition_duration_precision": 61.231,
                                  "duration_precision": 61.231,
                                  "shoot_duration_precision": 61.231,
                                  "video_duration_precision": 61.231
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7526914619525451039,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v15942gf0000d1qfidfog65ohkd6ao80\",\"owner_id\":7328828414336238634,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7526914718179577000,
                                "id_str": "7526914718179576606",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "7526914718179576606",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "ashleyallen19956",
                                "owner_id": "7328828414336238634",
                                "owner_nickname": "ashleyallen19956",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/tx27526914844050737951.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/tx27526914844050737951.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA2ydz2yyZK2uwGFgKSr_YuV-WaXS2DWO1M7rcxl4W8_fLOrFxOtnpqoUXPmcBNCAF",
                                "shoot_duration": 61,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/722da7629023f86b1dccaf6d819eea38.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/722da7629023f86b1dccaf6d819eea38.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - ashleyallen19956",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 61
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "bottom_banner_search_rs"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "c2pa_info": {
                                "aigc_src": "",
                                "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                                "dedup_err": "",
                                "dedup_src": "",
                                "first_aigc_src": "",
                                "first_src": "",
                                "is_capcut": false,
                                "is_tiktok": false,
                                "last_aigc_src": "",
                                "last_src": "",
                                "total_audio": 0,
                                "total_err": 0,
                                "total_img": 0,
                                "total_src": 0,
                                "total_vid": 0,
                                "upload_dur": 0
                              },
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "Funny",
                                  "cid": "5424",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "What's so #Funny?",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "tiktok-obj/be28720eebca22cdd301d2ea221af814.png",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=5424",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #funny on TikTok!",
                                    "share_desc_info": "Check out #funny on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: funny",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/funny?_r=1&name=funny&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=5424&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00024827568980877006}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  },
                                  "tts_voice_info": {
                                    "tts_voice_attr": "[]",
                                    "tts_voice_reuse_params": ""
                                  },
                                  "vc_filter_info": {
                                    "vc_filter_attr": "[]"
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "content_size_type": 1,
                              "content_type": "video",
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": [
                                  "select_music",
                                  "high_quality_upload"
                                ]
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 2,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7526914619525451039",
                              "group_id_list": {
                                "GroupdIdList0": [
                                  7526914619525451000
                                ],
                                "GroupdIdList1": [
                                  7526914619525451000,
                                  7507586884239986000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 61,
                                "author": "ashleyallen19956",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=127d5983&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rbs7w%2Fnemb3VLkt%2Bwk0cd7pPR2E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=13a5678f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hQj4%2FuxkmJfpzX%2FfcHsWndcMbu4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2090fa6b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=IAi%2FGoX%2BNNLCkKYlWm5oVSs0kug%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=086807f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DxjBjVLtn2Z4TAJfGtABanQJY0A%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5107dba2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jtSViC2ewrSc875Qb4j%2FigFjAxE%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=605a063e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vFuu68cVUfNFadiIDGsYM4iAFKo%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f1868fbc&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=sEUVEKrmNhiuAhu%2F2zrMp8Qudzc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=ac2640a5&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=a7E4KSCu6pI7UPFw8nE3%2B53I6K8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=d8ebecde&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=C1tBrvYi2WniPPnCx2ySa8JVGmU%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=127d5983&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=Rbs7w%2Fnemb3VLkt%2Bwk0cd7pPR2E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=13a5678f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=hQj4%2FuxkmJfpzX%2FfcHsWndcMbu4%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2090fa6b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=IAi%2FGoX%2BNNLCkKYlWm5oVSs0kug%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=086807f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DxjBjVLtn2Z4TAJfGtABanQJY0A%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=5107dba2&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=jtSViC2ewrSc875Qb4j%2FigFjAxE%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=605a063e&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vFuu68cVUfNFadiIDGsYM4iAFKo%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1752496438,
                                "dmv_auto_show": false,
                                "duration": 61,
                                "duration_high_precision": {
                                  "audition_duration_precision": 61.231,
                                  "duration_precision": 61.231,
                                  "shoot_duration_precision": 61.231,
                                  "video_duration_precision": 61.231
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7526914619525451039,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v15942gf0000d1qfidfog65ohkd6ao80\",\"owner_id\":7328828414336238634,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7526914718179577000,
                                "id_str": "7526914718179576606",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "7526914718179576606",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "ashleyallen19956",
                                "owner_id": "7328828414336238634",
                                "owner_nickname": "ashleyallen19956",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/tx27526914844050737951.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/ies-music-ttp-dup-us/tx27526914844050737951.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA2ydz2yyZK2uwGFgKSr_YuV-WaXS2DWO1M7rcxl4W8_fLOrFxOtnpqoUXPmcBNCAF",
                                "shoot_duration": 61,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/722da7629023f86b1dccaf6d819eea38.json",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/722da7629023f86b1dccaf6d819eea38.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - ashleyallen19956",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 61
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 61167,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "50.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"1522\">#funny</h> <h id=\"1529\">#fypシ</h> <h id=\"1542\">#viral</h> <h id=\"1561\">#tiktok</h> <h id=\"1586\">#universal</h> <h id=\"1762\">#megatron</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1522",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1529",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "20884",
                                    "hashtag_name": "viral",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1542",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1561",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "8993",
                                    "hashtag_name": "universal",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1586",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "81681",
                                    "hashtag_name": "megatron",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1762",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "US",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out ashleyallen19956's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out ashleyallen19956’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out ashleyallen19956’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@ashleyallen19956/video/7526914619525451039?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7526914619525451039&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "shoot_tab_name": "photo",
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10003\",\"PACK_VOD:vod_sr_class_v30_score\":\"53.296\",\"play_time_prob_dist\":\"[800,0.5662,5561.1597]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7526914619525451039",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search · ",
                                    "qrec_virtual_enable": "",
                                    "scene": "feed_bar",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"visualize_sug_product_id\":\"\",\"ecom_trigger_info_map\":\"\",\"words_type_to_dmp_list\":\"\",\"word_type_version_map\":\"\",\"ecom_trigger_info\":\"\",\"video_id\":\"\",\"predict_ctr_score\":0.023355946379872844,\"generate_time\":\"1752481852\",\"hot_level\":\"0\",\"recall_reason\":\"global_video_top_counter_recall,global_video_sar_top_counter_passive_recall,video_sar_top_counter_passive_recall\",\"is_time_sensitive\":\"0\",\"word_type_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"ecom_intent\":\"2\",\"is_ramandan_promotion\":\"\",\"lvl3_cate_list\":\"\",\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"poi_card_id_list\":\"\"}",
                                        "word": "who is behind megatron at universal",
                                        "word_id": "8865716203792969792",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"poi_card_id_list\":\"\",\"is_ramandan_promotion\":\"\",\"words_type_to_voucher_ids\":\"\",\"video_id\":\"\",\"ecom_intent\":\"2\",\"recall_reason\":\"global_video_top_counter_recall,global_video_sar_top_counter_passive_recall,video_sar_top_counter_passive_recall\",\"visualize_sug_product_id\":\"\",\"word_type_version_map\":\"\",\"word_type_list\":\"\",\"predict_ctr_score\":0.047188787814033635,\"hot_level\":\"0\",\"generate_time\":\"1752481852\",\"ecom_trigger_info\":\"\",\"is_time_sensitive\":\"0\",\"lvl3_cate_list\":\"\",\"lvl1_category_id\":\"\",\"sug_user_id\":\"\",\"words_type_to_dmp_list\":\"\",\"ecom_trigger_info_map\":\"\"}",
                                        "word": "who is behind megatron at universal",
                                        "word_id": "8865716203792969792",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 6,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "1522",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 12,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 7,
                                  "tag_id": "1529",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 19,
                                  "hashtag_id": "20884",
                                  "hashtag_name": "viral",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "1542",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 27,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 20,
                                  "tag_id": "1561",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 38,
                                  "hashtag_id": "8993",
                                  "hashtag_name": "universal",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 28,
                                  "tag_id": "1586",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 48,
                                  "hashtag_id": "81681",
                                  "hashtag_name": "megatron",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 39,
                                  "tag_id": "1762",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7328828414336238634",
                              "handle": "ashleyallen19956",
                              "displayName": "ashleyallen19956",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/a6ce88029b46cd06e2a0a9488738d576~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=086807f4&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DxjBjVLtn2Z4TAJfGtABanQJY0A%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7146576693153582341",
                            "caption": "GTA 6   #gta6 #gta #funny #pourtoi #fypシ #foryou @DONTON @Ariis 📟",
                            "createdAt": "2022-09-23T14:07:36.000Z",
                            "url": "https://www.tiktok.com/@ghettotrio__/video/7146576693153582341",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/dedc18262c064889824b5f0e6c961a5d_1663942057~tplv-tiktokx-origin.image?dr=1347&refresh_token=373b5fe4&x-expires=1779343200&x-signature=7SHlP2cTZXFHeeEgd0sti%2FRIh9U%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 23403,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 96149110,
                              "likes": 16571063,
                              "comments": 88970,
                              "shares": 165363,
                              "saves": 1162439
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/1e35d7553215db3683692a0e551e1446/6a0ea836/video/tos/useast2a/tos-useast2a-pve-0068/b6ead62eb0144c34a6ec52ad3647bf84/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=2644&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NmQ2aTw2OjhkOjo5MzQ1ZUBpMzw2aTg6Zjp1ZjMzNzczM0AtLTVjMTUvNTExMDEuXjEuYSMycXJicjRfb2pgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000b5000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/ee5e77d28a72ab3c000ae00eed628456/6a0ea836/video/tos/useast2a/tos-useast2a-ve-0068c003/0ac6a4d28f204d15804d7d3360f442c8/?a=1233&bti=Ojs2NGYpQHM6OjZALjU2OmQvcCMxNDNg&&bt=2656&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=NzplPDhoZ2Y0NzY1aDhnZEBpMzw2aTg6Zjp1ZjMzNzczM0AtXmI2LzZhXmIxM2A1MjYwYSMycXJicjRfb2pgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e000b5000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "Squidography, Vol. IV",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "Ben Morfitt (SquidPhysics)",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1604111727,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":30,\"amplitude_peak\":1.0148259,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/54f35518f7004fbba20b76e9d78a26eb\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f4edbfb2fb044f4da58a543005330ae0\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f4679fec5ec34e0b9ff252d4e2b28b3f\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/36b6ed41956641a6897e778f1cea6cf2\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-11.360318,\"music_vid\":\"v10ad6g50000cps7kb7og65n4av0eg9g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6889607397178870000,
                                "id_str": "6889607397178869762",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Ben Morfitt (SquidPhysics)",
                                  "chorus_info": {
                                    "duration_ms": 19584,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 134266,
                                  "h5_url": "",
                                  "id": "6889607387406141442",
                                  "performers": null,
                                  "title": "GTA San Andreas Theme (Remake)"
                                },
                                "meme_song_info": {},
                                "mid": "6889607397178869762",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ooHRgFDvzaD97YKswwEQXoCFedOAiurweMfmgj",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ooHRgFDvzaD97YKswwEQXoCFedOAiurweMfmgj"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/o0GEFSWNIUotNmyBNUeDfAwZRvCFAAigAKmnIi",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/o0GEFSWNIUotNmyBNUeDfAwZRvCFAAigAKmnIi"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  152,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  29,
                                  13,
                                  1
                                ],
                                "title": "GTA San Andreas Theme (Remake)",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 55,
                              "banners": [
                                {
                                  "key": {
                                    "component_key": "component_key_placeholder"
                                  }
                                }
                              ],
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "gta6",
                                  "cid": "772927",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=772927",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #gta6 on TikTok!",
                                    "share_desc_info": "Check out #gta6 on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: gta6",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/gta6?_r=1&name=gta6&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=772927&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0009253335782307293}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7146576693153582341",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": [
                                  7146576693153582000
                                ]
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 2,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "Squidography, Vol. IV",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 60,
                                "author": "Ben Morfitt (SquidPhysics)",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 1,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1604111727,
                                "dmv_auto_show": false,
                                "duration": 60,
                                "duration_high_precision": {
                                  "audition_duration_precision": 60,
                                  "duration_precision": 60,
                                  "shoot_duration_precision": 60,
                                  "video_duration_precision": 60
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":30,\"amplitude_peak\":1.0148259,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/54f35518f7004fbba20b76e9d78a26eb\",\"beats_tracker\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f4edbfb2fb044f4da58a543005330ae0\",\"energy_trace\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/f4679fec5ec34e0b9ff252d4e2b28b3f\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/36b6ed41956641a6897e778f1cea6cf2\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-11.360318,\"music_vid\":\"v10ad6g50000cps7kb7og65n4av0eg9g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": false,
                                "id": 6889607397178870000,
                                "id_str": "6889607397178869762",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": false,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": true,
                                "is_shooting_allow": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "Ben Morfitt (SquidPhysics)",
                                  "chorus_info": {
                                    "duration_ms": 19584,
                                    "start_ms": 0
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ocr32awEiJBBfoRidrARDzVWyAkAsWAAEMidPJ.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 134266,
                                  "h5_url": "",
                                  "id": "6889607387406141442",
                                  "performers": null,
                                  "title": "GTA San Andreas Theme (Remake)"
                                },
                                "meme_song_info": {},
                                "mid": "6889607397178869762",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ooHRgFDvzaD97YKswwEQXoCFedOAiurweMfmgj",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/ooHRgFDvzaD97YKswwEQXoCFedOAiurweMfmgj"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 60,
                                "source_platform": 10033,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/o0GEFSWNIUotNmyBNUeDfAwZRvCFAAigAKmnIi",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/o0GEFSWNIUotNmyBNUeDfAwZRvCFAAigAKmnIi"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  152,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  29,
                                  13,
                                  1
                                ],
                                "title": "GTA San Andreas Theme (Remake)",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 60
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 23227,
                              "music_selected_from": "sync_page_recommend",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "GTA 6   <h id=\"5036\">#gta6</h> <h id=\"9449\">#gta</h> <h id=\"371\">#funny</h> <h id=\"3160\">#pourtoi</h> <h id=\"987\">#fypシ</h> <h id=\"1890\">#foryou</h> <m id=\"5298\">@DONTON</m> <m id=\"7181\">@Ariis 📟</m> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "772927",
                                    "hashtag_name": "gta6",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "5036",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "4289",
                                    "hashtag_name": "gta",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9449",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5424",
                                    "hashtag_name": "funny",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "371",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "2852101",
                                    "hashtag_name": "pourtoi",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3160",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "987",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "42164",
                                    "hashtag_name": "foryou",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "1890",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "sec_uid": "MS4wLjABAAAAnKFtO4X9YMh4r2TgWbbbJx4vF5E_B4lIDOBHCYC6XJ4REeVuhkHxPjPo7H4OP7wB",
                                    "tag_id": "5298",
                                    "type": 0,
                                    "user_id": "6796096555101553670"
                                  },
                                  {
                                    "sec_uid": "MS4wLjABAAAA0sbKW8_TajO_iroVn_2j7z8ss3Rra8nmx-lkUJSE9KRkaihiADYndYPFSEEzg04u",
                                    "tag_id": "7181",
                                    "type": 0,
                                    "user_id": "6945840218495386630"
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "playlist_info": {
                                "index": 10,
                                "item_total": 19,
                                "mix_id": "7448059424448596758",
                                "name": "GTA"
                              },
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "Can’t promote due to audio copyright issue",
                              "promote_toast_key": "reason_cannot_promote_music",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "FR",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Ghettotrio__'s video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Ghettotrio__’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Ghettotrio__’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@ghettotrio__/video/7146576693153582341?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7146576693153582341&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10056\",\"play_time_prob_dist\":\"[800,0.7207,3468.093]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "banner_enabled": true,
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7146576693153582341",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 13,
                                  "hashtag_id": "772927",
                                  "hashtag_name": "gta6",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 8,
                                  "tag_id": "5036",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 18,
                                  "hashtag_id": "4289",
                                  "hashtag_name": "gta",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 14,
                                  "tag_id": "9449",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 25,
                                  "hashtag_id": "5424",
                                  "hashtag_name": "funny",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 19,
                                  "tag_id": "371",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 34,
                                  "hashtag_id": "2852101",
                                  "hashtag_name": "pourtoi",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 26,
                                  "tag_id": "3160",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 40,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 35,
                                  "tag_id": "987",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 48,
                                  "hashtag_id": "42164",
                                  "hashtag_name": "foryou",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 41,
                                  "tag_id": "1890",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 56,
                                  "sec_uid": "MS4wLjABAAAAnKFtO4X9YMh4r2TgWbbbJx4vF5E_B4lIDOBHCYC6XJ4REeVuhkHxPjPo7H4OP7wB",
                                  "start": 49,
                                  "tag_id": "5298",
                                  "type": 0,
                                  "user_id": "6796096555101553670"
                                },
                                {
                                  "end": 66,
                                  "sec_uid": "MS4wLjABAAAA0sbKW8_TajO_iroVn_2j7z8ss3Rra8nmx-lkUJSE9KRkaihiADYndYPFSEEzg04u",
                                  "start": 57,
                                  "tag_id": "7181",
                                  "type": 0,
                                  "user_id": "6945840218495386630"
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "7124757999378662405",
                              "handle": "ghettotrio__",
                              "displayName": "Ghettotrio__",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/7c441f0c1124b73e07ee6044caf052cb~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afaa6f52&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=ntCKEWuiHNU63D2OWAztcrFZpdk%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "7169542707180883205",
                            "caption": "Peppe 🙀👀👀 #catsoftiktok #funnycat #cat #cats #fy#fypシ",
                            "createdAt": "2022-11-24T11:27:33.000Z",
                            "url": "https://www.tiktok.com/@peppe_weber/video/7169542707180883205",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/d61261157f56424f83c4ed5a8db6164a_1669289257~tplv-tiktokx-origin.image?dr=1347&refresh_token=c8398453&x-expires=1779343200&x-signature=Op%2FWrNGRxqQxiVZhLzYKuTlwrNU%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&sc=cover&biz_tag=tt_video&s=CHALLENGE_AWEME",
                            "durationMs": 87488,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 121897239,
                              "likes": 16536056,
                              "comments": 48088,
                              "shares": 504019,
                              "saves": 1189971
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/21f5ab8818b6a55195f518ae57bee931/6a0ea876/video/tos/useast2a/tos-useast2a-pve-0068/oALiLAbaSfogeVjDImgBQu8D5xljhGfTnOC1CH/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1756&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=PDg5ZWUzOjozZGU2Mzo7O0Bpajs0PDU6ZnNvZzMzNzczM0AyYmBeXmBgXi0xYDBfLV9eYSNza2hwcjRnMnNgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/187a4924263e2a34b67f7d6a474d7d18/6a0ea876/video/tos/useast2a/tos-useast2a-ve-0068c003/ooaGfgnuQCCDkzLrbIAgojz8B1fmTejLT2ijSV/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1723&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=ZTw5aGZnOzY7Z2c8OTtlOEBpajs0PDU6ZnNvZzMzNzczM0A0NTUuMjNjNjUxYTNgLTRjYSNza2hwcjRnMnNgLS1kMTZzcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e00095000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 87,
                                "author": "Julian Weber",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=b165e1ed&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DF%2FnsyLbC97J5bBikkl5ZQZ1%2BGc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=6dceeed9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zrNdi%2FAsAlOTW36isOnboo2y%2BE8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2feafb1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rLBdZoGD58NcQUCo3dUNLviIWJc%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afe99586&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=mHqTz%2FJYg2DPXqTD9y%2F7pgvBL5E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=61a406d1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=cJAzk7Ct87xxj3pVmrI55Q0KXTw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=29ac13ec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=opuQR5%2FuqpXoD0YADpsilOnoh2g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=cc10e918&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1GSC9MTicf8eEdspIP%2FN0RyCcPg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=19aa41bb&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=quTlCBAxIg%2F3qTjcZnB4qY%2FH0xA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=6dcb6803&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9wOA3YeRmIp9sRDx4K3ynZzxsTw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=b165e1ed&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DF%2FnsyLbC97J5bBikkl5ZQZ1%2BGc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=6dceeed9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zrNdi%2FAsAlOTW36isOnboo2y%2BE8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2feafb1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rLBdZoGD58NcQUCo3dUNLviIWJc%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afe99586&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=mHqTz%2FJYg2DPXqTD9y%2F7pgvBL5E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=61a406d1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=cJAzk7Ct87xxj3pVmrI55Q0KXTw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=29ac13ec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=opuQR5%2FuqpXoD0YADpsilOnoh2g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1669289262,
                                "dmv_auto_show": false,
                                "duration": 87,
                                "duration_high_precision": {
                                  "audition_duration_precision": 87.484,
                                  "duration_precision": 87.484,
                                  "shoot_duration_precision": 87.484,
                                  "video_duration_precision": 87.484
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7169542707180883205,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cdvlaa3c77u6ob1eavcg\",\"owner_id\":6802698997016593413,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7169542720489311000,
                                "id_str": "7169542720489310982",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "7169542720489310982",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "peppe_weber",
                                "owner_id": "6802698997016593413",
                                "owner_nickname": "Julian Weber",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7169542740315736837.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7169542740315736837.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA2XFqUlgjYWUFB48CLllGpFDautVWUk5tCyFKTzSYAN6PW4XYnpt3iQS-BGaBqIu1",
                                "shoot_duration": 87,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/e6187ae6bf11d42a190385e741ebd1d0.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/e6187ae6bf11d42a190385e741ebd1d0.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - peppe_weber",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 87
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "allow_gift": true,
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 55,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "CatsOfTikTok",
                                  "cid": "1601336200518658",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "Meow.",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "musically-maliva-obj/e84f4ab1005f3212063aec62bec6c308.jpeg",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1601336200518658",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #catsoftiktok on TikTok!",
                                    "share_desc_info": "Check out #catsoftiktok on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: catsoftiktok",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/catsoftiktok?_r=1&name=catsoftiktok&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=1601336200518658&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 2,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.00039449621988566944}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 1,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "it",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 2,
                              "follow_up_publish_from_id": -1,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "7169542707180883205",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 87,
                                "author": "Julian Weber",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=b165e1ed&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DF%2FnsyLbC97J5bBikkl5ZQZ1%2BGc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=6dceeed9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zrNdi%2FAsAlOTW36isOnboo2y%2BE8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2feafb1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rLBdZoGD58NcQUCo3dUNLviIWJc%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afe99586&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=mHqTz%2FJYg2DPXqTD9y%2F7pgvBL5E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=61a406d1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=cJAzk7Ct87xxj3pVmrI55Q0KXTw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=29ac13ec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=opuQR5%2FuqpXoD0YADpsilOnoh2g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=cc10e918&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=1GSC9MTicf8eEdspIP%2FN0RyCcPg%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=19aa41bb&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=quTlCBAxIg%2F3qTjcZnB4qY%2FH0xA%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=6dcb6803&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=9wOA3YeRmIp9sRDx4K3ynZzxsTw%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=b165e1ed&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=DF%2FnsyLbC97J5bBikkl5ZQZ1%2BGc%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=6dceeed9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zrNdi%2FAsAlOTW36isOnboo2y%2BE8%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=2feafb1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=rLBdZoGD58NcQUCo3dUNLviIWJc%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=afe99586&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=mHqTz%2FJYg2DPXqTD9y%2F7pgvBL5E%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=61a406d1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=cJAzk7Ct87xxj3pVmrI55Q0KXTw%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=29ac13ec&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=opuQR5%2FuqpXoD0YADpsilOnoh2g%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1669289262,
                                "dmv_auto_show": false,
                                "duration": 87,
                                "duration_high_precision": {
                                  "audition_duration_precision": 87.484,
                                  "duration_precision": 87.484,
                                  "shoot_duration_precision": 87.484,
                                  "video_duration_precision": 87.484
                                },
                                "external_song_info": [],
                                "extra": "{\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7169542707180883205,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v09942g40000cdvlaa3c77u6ob1eavcg\",\"owner_id\":6802698997016593413,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 7169542720489311000,
                                "id_str": "7169542720489310982",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "7169542720489310982",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "peppe_weber",
                                "owner_id": "6802698997016593413",
                                "owner_nickname": "Julian Weber",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7169542740315736837.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/7169542740315736837.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAA2XFqUlgjYWUFB48CLllGpFDautVWUk5tCyFKTzSYAN6PW4XYnpt3iQS-BGaBqIu1",
                                "shoot_duration": 87,
                                "source_platform": 72,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/e6187ae6bf11d42a190385e741ebd1d0.json",
                                  "url_list": [
                                    "https://sf16-ies-music-sg.tiktokcdn.com/obj/tiktok-obj/pattern/e6187ae6bf11d42a190385e741ebd1d0.json"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "tag_list": null,
                                "title": "original sound - peppe_weber",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 87
                              },
                              "music_begin_time_in_ms": 0,
                              "music_end_time_in_ms": 87428,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "Peppe 🙀👀👀 <h id=\"784\">#catsoftiktok</h> <h id=\"2538\">#funnycat</h> <h id=\"9924\">#cat</h> <h id=\"2360\">#cats</h> <h id=\"2122\">#fy</h><h id=\"7981\">#fypシ</h> ",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1601336200518658",
                                    "hashtag_name": "catsoftiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "784",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "205012",
                                    "hashtag_name": "funnycat",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2538",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "7551",
                                    "hashtag_name": "cat",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "9924",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "5216",
                                    "hashtag_name": "cats",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2360",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "153828",
                                    "hashtag_name": "fy",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "2122",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "7981",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "NL",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Julian Weber's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Julian Weber’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Julian Weber’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@peppe_weber/video/7169542707180883205?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=7169542707180883205&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"PACK_VOD:vod_diversity_tier3\":\"10019\",\"play_time_prob_dist\":\"[800,0.4394,8083.2165]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "7169542707180883205",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "suggest_words": {
                                "suggest_words": [
                                  {
                                    "hint_text": "Search:",
                                    "qrec_virtual_enable": "",
                                    "scene": "comment_top",
                                    "words": [
                                      {
                                        "penetrate_info": "{\"video_id\":\"\",\"lvl3_cate_list\":\"\",\"generate_time\":\"1725272069\",\"ecom_trigger_info\":\"\",\"lvl1_category_id\":\"\",\"words_type_to_dmp_list\":\"\",\"recall_reason\":\"video_sar_top_counter_passive_recall\",\"word_type_list\":\"\",\"sug_user_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"ecom_intent\":\"0\",\"poi_card_id_list\":\"\",\"is_ramandan_promotion\":\"\",\"visualize_sug_product_id\":\"\",\"hot_level\":\"0\",\"predict_ctr_score\":0.00490052015650282,\"word_type_version_map\":\"\",\"ecom_trigger_info_map\":\"\",\"is_time_sensitive\":\"0\"}",
                                        "word": "cats seeing humans cry",
                                        "word_id": "8051138138989268221",
                                        "word_record": {
                                          "words_lang": "en"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 26,
                                  "hashtag_id": "1601336200518658",
                                  "hashtag_name": "catsoftiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 13,
                                  "tag_id": "784",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 36,
                                  "hashtag_id": "205012",
                                  "hashtag_name": "funnycat",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 27,
                                  "tag_id": "2538",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 41,
                                  "hashtag_id": "7551",
                                  "hashtag_name": "cat",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 37,
                                  "tag_id": "9924",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 47,
                                  "hashtag_id": "5216",
                                  "hashtag_name": "cats",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 42,
                                  "tag_id": "2360",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 51,
                                  "hashtag_id": "153828",
                                  "hashtag_name": "fy",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 48,
                                  "tag_id": "2122",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 56,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 51,
                                  "tag_id": "7981",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": -2,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 1,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6802698997016593413",
                              "handle": "peppe_weber",
                              "displayName": "Julian Weber",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-eu.com/tos-useast2a-avt-0068-euttp/840eac027cd1c1d6c70469453aff3869~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=61a406d1&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=cJAzk7Ct87xxj3pVmrI55Q0KXTw%3D",
                              "verified": true
                            }
                          },
                          {
                            "id": "6985348346177211654",
                            "caption": "Did you find a lot of surprises?#goodthing#goodthings#sueful #tiktok #fypシ",
                            "createdAt": "2021-07-16T02:39:16.000Z",
                            "url": "https://www.tiktok.com/@fygh.bbk/video/6985348346177211654",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-p-0037/bc9fc9cb301a42b494ca30489f2b9453~tplv-tiktokx-origin.image?dr=1347&refresh_token=41346157&x-expires=1779343200&x-signature=ZFJ%2BtS5Nc4%2Bzqc2%2F7JlXah%2FvKAQ%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 58442,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 219516115,
                              "likes": 16487402,
                              "comments": 114810,
                              "shares": 509979,
                              "saves": 715183
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/3b49e068383ca82556b73161c103fdb6/6a0ea859/video/tos/alisg/tos-alisg-pve-0037c001/4c038287abf141fea72b56a641ab594f/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1498&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=M2c2OTY5ZTpoNTZkZjdkNEBpM2toOmk6ZnZpNjMzODczNEAxMGIuLS4zXzUxYWE0MzMvYSNzZl4ycjRfLmxgLS1kMS1zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e0008d000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/97c63dbf4c3caf12d4f5499e1f7ed873/6a0ea859/video/tos/alisg/tos-alisg-pve-0037c001/5d0afc1fba60406f9e404f36805dfff5/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=1483&ft=td_Ls8s6ogVP12NvPt86zIxR.4e6Rq_45SY&mime_type=video_mp4&rc=aTpoZ2Y8ZTg2aGY1NzloNkBpM2toOmk6ZnZpNjMzODczNEA1LmMuXy40XjMxMDVhXzZfYSNzZl4ycjRfLmxgLS1kMS1zcw%3D%3D&vvpl=1&l=202605200637193F9DAA9E95F02900BDE6&btag=e0008d000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "In the Air",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 66,
                                "author": "Official Sound Studio",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 7433882799851078000,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1573138515,
                                "dmv_auto_show": false,
                                "duration": 66,
                                "duration_high_precision": {
                                  "audition_duration_precision": 66,
                                  "duration_precision": 66,
                                  "shoot_duration_precision": 66,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":23.86,\"amplitude_peak\":1.2365053,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okJXnb0mtDtDImMlbAlg8BKfI2ZzCAf0CAbAAD\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ostu4mIgNAC86DzMCaZq4XbyAJn2ABAIfAml2f\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okAw4mmbZlDJCNA1BsnftJezAmuXgCHIbaMAIt\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEyfmDJDA2ZSAIbIcB8lCMCng4CZAAAmbzXtVe\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-7.548954,\"music_vid\":\"v07ad6g50000c1nrkoqmrb9es4t1lp9g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6756443898928824000,
                                "id_str": "6756443898928824327",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": true,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "is_unlimited_music": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "BCD Studio",
                                  "chorus_info": {
                                    "duration_ms": 16320,
                                    "start_ms": 33408
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o4EF2mFghJJ96Le5eYAG0AA1ASGeKbJAFEAFIe",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o4EF2mFghJJ96Le5eYAG0AA1ASGeKbJAFEAFIe.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 66926,
                                  "h5_url": "",
                                  "id": "7078646849023805442",
                                  "performers": null,
                                  "title": "Funk it up"
                                },
                                "meme_song_info": {},
                                "mid": "6756443898928824327",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4449df69989c4b7086c89a4838a3015c",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4449df69989c4b7086c89a4838a3015c"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 66,
                                "source_platform": 25,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oIfzQSsDWBB5iJFicWiw7EAHAbAsEQA9KVAhUB",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oIfzQSsDWBB5iJFicWiw7EAHAbAsEQA9KVAhUB"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  157,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  1,
                                  21
                                ],
                                "title": "Funk it up",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "goodthing",
                                  "cid": "36467",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=36467",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #goodthing on TikTok!",
                                    "share_desc_info": "Check out #goodthing on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: goodthing",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/goodthing?_r=1&name=goodthing&u_code=f08j1m1b0jclba&_d=f3g56k23a93e49&share_challenge_id=36467&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0.0005230139937562215}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200637193F9DAA9E95F02900BDE6\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200637193F9DAA9E95F02900BDE6",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "en",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 0,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "6985348346177211654",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_promote_entry": 1,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": true,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "In the Air",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 66,
                                "author": "Official Sound Studio",
                                "author_deleted": false,
                                "author_position": null,
                                "binded_challenge_id": 7433882799851078000,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/720x720/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/200x200/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "height": 720,
                                  "uri": "tiktok-obj/default_clip_cover.png",
                                  "url_list": [
                                    "https://p16-sg.tiktokcdn.com/aweme/100x100/tiktok-obj/default_clip_cover.png.jpeg"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1573138515,
                                "dmv_auto_show": false,
                                "duration": 66,
                                "duration_high_precision": {
                                  "audition_duration_precision": 66,
                                  "duration_precision": 66,
                                  "shoot_duration_precision": 66,
                                  "video_duration_precision": 6000
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":23.86,\"amplitude_peak\":1.2365053,\"beats\":{\"audio_effect_onset\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okJXnb0mtDtDImMlbAlg8BKfI2ZzCAf0CAbAAD\",\"beats_tracker\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/ostu4mIgNAC86DzMCaZq4XbyAJn2ABAIfAml2f\",\"energy_trace\":\"https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/okAw4mmbZlDJCNA1BsnftJezAmuXgCHIbaMAIt\",\"merged_beats\":\"https://sf16-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oEyfmDJDA2ZSAIbIcB8lCMCng4CZAAAmbzXtVe\"},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"from_user_id\":7568958539856413718,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":-7.548954,\"music_vid\":\"v07ad6g50000c1nrkoqmrb9es4t1lp9g\",\"owner_id\":0,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":1,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6756443898928824000,
                                "id_str": "6756443898928824327",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": true,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": true,
                                "is_original_sound": false,
                                "is_pgc": true,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "is_unlimited_music": true,
                                "language": "non_vocal",
                                "log_extra": "{\"meta_song_matched_type\":\"pgc\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "matched_song": {
                                  "author": "BCD Studio",
                                  "chorus_info": {
                                    "duration_ms": 16320,
                                    "start_ms": 33408
                                  },
                                  "cover_medium": {
                                    "height": 720,
                                    "uri": "tos-alisg-v-2774/o4EF2mFghJJ96Le5eYAG0AA1ASGeKbJAFEAFIe",
                                    "url_list": [
                                      "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/o4EF2mFghJJ96Le5eYAG0AA1ASGeKbJAFEAFIe.jpeg"
                                    ],
                                    "url_prefix": null,
                                    "width": 720
                                  },
                                  "full_duration": 66926,
                                  "h5_url": "",
                                  "id": "7078646849023805442",
                                  "performers": null,
                                  "title": "Funk it up"
                                },
                                "meme_song_info": {},
                                "mid": "6756443898928824327",
                                "multi_bit_rate_play_info": null,
                                "music_release_info": {
                                  "group_release_date": 0,
                                  "is_new_release_song": false
                                },
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "",
                                "owner_nickname": "",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4449df69989c4b7086c89a4838a3015c",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-ve-2774/4449df69989c4b7086c89a4838a3015c"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "shoot_duration": 66,
                                "source_platform": 25,
                                "status": 1,
                                "strong_beat_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oIfzQSsDWBB5iJFicWiw7EAHAbAsEQA9KVAhUB",
                                  "url_list": [
                                    "https://sf77-ies-music-sg.tiktokcdn.com/obj/tos-alisg-v-2774/oIfzQSsDWBB5iJFicWiw7EAHAbAsEQA9KVAhUB"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "style_value": [
                                  157,
                                  199
                                ],
                                "tag_list": null,
                                "theme_value": [
                                  1,
                                  21
                                ],
                                "title": "Funk it up",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 6000
                              },
                              "music_begin_time_in_ms": 0,
                              "music_selected_from": "edit_page_recommend_favourite",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "Did you find a lot of surprises?<h id=\"667\">#goodthing</h><h id=\"3744\">#goodthings</h><h id=\"3569\">#sueful</h> <h id=\"6575\">#tiktok</h> <h id=\"896\">#fypシ</h>",
                                "text_extra": [
                                  {
                                    "hashtag_id": "36467",
                                    "hashtag_name": "goodthing",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "667",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "195560",
                                    "hashtag_name": "goodthings",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3744",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1705406777281542",
                                    "hashtag_name": "sueful",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "3569",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "23428",
                                    "hashtag_name": "tiktok",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "6575",
                                    "type": 1,
                                    "user_id": ""
                                  },
                                  {
                                    "hashtag_id": "1637342470396934",
                                    "hashtag_name": "fypシ",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "896",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "promote": {
                                "extra": "{\"is_self_post\":false,\"page_source\":\"challenge_aweme\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"GB\",\"traffic_level\":0}"
                              },
                              "promote_capcut_toggle": 0,
                              "promote_icon_text": "Promote",
                              "promote_toast": "",
                              "promote_toast_key": "",
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 12,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "GB",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out Yizhou's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out Yizhou’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out Yizhou’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@fygh.bbk/video/6985348346177211654?_r=1&u_code=f08j1m1b0jclba&preview_pb=0&sharer_language=en&_d=f3g56k23a93e49&share_item_id=6985348346177211654&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.5394,5139.6182]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "6985348346177211654",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 1,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 42,
                                  "hashtag_id": "36467",
                                  "hashtag_name": "goodthing",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 32,
                                  "tag_id": "667",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 53,
                                  "hashtag_id": "195560",
                                  "hashtag_name": "goodthings",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 42,
                                  "tag_id": "3744",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 60,
                                  "hashtag_id": "1705406777281542",
                                  "hashtag_name": "sueful",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 53,
                                  "tag_id": "3569",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 68,
                                  "hashtag_id": "23428",
                                  "hashtag_name": "tiktok",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 61,
                                  "tag_id": "6575",
                                  "type": 1,
                                  "user_id": ""
                                },
                                {
                                  "end": 74,
                                  "hashtag_id": "1637342470396934",
                                  "hashtag_name": "fypシ",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 69,
                                  "tag_id": "896",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "ttt_product_recall_type": 3,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": true,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 0,
                                "share_type": 1,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6985343550326539270",
                              "handle": "fygh.bbk",
                              "displayName": "Yizhou",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/cfe3a3e820467120520e7cd447767254~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8aae56dd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=5%2FMJHfQPUZCL%2FbsnCiWv2R5cZ78%3D",
                              "verified": true
                            }
                          }
                        ],
                        "totalVideos": 14,
                        "page": {
                          "nextCursor": "40",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_hashtag_search_page_2",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "sparse": {
                    "value": {
                      "data": {
                        "hashtag": "zzzzzzzzzzzzzzzzzzzz_no_match_99999",
                        "region": null,
                        "videos": [
                          {
                            "id": "6860063315155045637",
                            "caption": "#zzzzzz_______99999999)",
                            "createdAt": "2020-08-12T11:49:25.000Z",
                            "url": "https://www.tiktok.com/@rlxcv5/video/6860063315155045637",
                            "thumbnailUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-p-0068/038fb4b14e5f44319fff3379bb1bba2f~tplv-tiktokx-origin.image?dr=1347&refresh_token=c2a6f2e5&x-expires=1779343200&x-signature=iehkZB84Gp8uCqQH0yesd5cFq7E%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=c0f880ed&idc=no1a&biz_tag=tt_video&s=CHALLENGE_AWEME&sc=cover",
                            "durationMs": 11982,
                            "pinned": false,
                            "isAd": false,
                            "stats": {
                              "views": 8,
                              "likes": 5,
                              "comments": 0,
                              "shares": 0,
                              "saves": 0
                            },
                            "media": {
                              "downloadUrl": "https://v45.tiktokcdn-eu.com/d3203ec6ec00c841ce05e31b8a4d7115/6a0ea867/video/maliva/mps/logo/v2/r/p/v090445d0000bsptedjgu5ukvo4vgclg/d72769d237f746df83d5f47fe3ca677c/c57d4d0ceaa5bdc3f649aeaadd555435/mp4/main.mp4?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=0&ft=td_Lr8QLodzR12Nvx~86zIxR8en.xq_45SY&mime_type=video_mp4&rc=ZjpkNmk3ODZpOTo6NTw6OkBpamZ5cm44amd3djMzZzczM0A0M2BiNGNhNWExYzBhMy9hYSNpZDFzcnJnYm1fLS0yMTZzcw%3D%3D&l=202605200638193CB9DFD8DCFAD800C719&definition=720p&du=12&item_id=6860063315155045637&l=202605200638193CB9DFD8DCFAD800C719&logo_type=tiktok_m&user_text=rlxcv5&btag=e000b5000",
                              "downloadWithoutWatermarkUrl": "https://v45.tiktokcdn-eu.com/0a522dcd3b9af957ea9c98413a0a645a/6a0ea867/video/tos/maliva/tos-maliva-ve-0068c800-us/0aa87059b0d74566921e4dcd7e54e699/?a=1233&bti=NXYpNDs8QGo6OjZAOm00NTAuYCMxNDNg&&bt=295&ft=td_Lr8QLodzR12Nvx~86zIxR8en.xq_45SY&mime_type=video_mp4&rc=MzQ0aWY8ODU5Zzk3OmdmN0BpamZ5cm44amd3djMzZzczM0A1L2BfMjEyNmMxYzQ0NF8wYSNpZDFzcnJnYm1fLS0yMTZzcw%3D%3D&vvpl=1&l=202605200638193CB9DFD8DCFAD800C719&btag=e00075000"
                            },
                            "details": {
                              "added_sound_music_info": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "хакер в реках",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5ffd3949&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=60JZ15y1UhqA8oLhKfYLVjVRSW8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28c5d6fd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wstNk5wJobBRqicZwPMBCI0HVU0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1c67fc5f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Ht8OUjkfPCTHv8GBfhTIpexVwQ%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8cc50b9d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j1s%2BQLeNIRZUIpqFZtB733EPk7c%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a6e1f92d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FQ%2FIiFRWyCbTXyb4N1c1NDhck6k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=6e4d2273&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vCSgYdabIX%2FIeKsn99yUYhGUAdg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=18432fa9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zjzh12Y9FLaKljIe7jfDKdzTD4M%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f0af626f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=E7bIya9iaAv%2F5ubVeFawy8DHGBM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=36da9b1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=oj00YtUyh16d1svtIa3hZ%2BblPG4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5ffd3949&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=60JZ15y1UhqA8oLhKfYLVjVRSW8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28c5d6fd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wstNk5wJobBRqicZwPMBCI0HVU0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1c67fc5f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Ht8OUjkfPCTHv8GBfhTIpexVwQ%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8cc50b9d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j1s%2BQLeNIRZUIpqFZtB733EPk7c%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a6e1f92d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FQ%2FIiFRWyCbTXyb4N1c1NDhck6k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=6e4d2273&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vCSgYdabIX%2FIeKsn99yUYhGUAdg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1597232974,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11,
                                  "duration_precision": 11,
                                  "shoot_duration_precision": 11,
                                  "video_duration_precision": 11
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":3.09,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":6860063315155045637,\"from_user_id\":7530928477470721047,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v09942380000bsptehug1uluv6mvfleg\",\"owner_id\":6801816492961219589,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6860063326047669000,
                                "id_str": "6860063326047668997",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "6860063326047668997",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "rlxcv5",
                                "owner_id": "6801816492961219589",
                                "owner_nickname": "хакер в реках",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6860063276974213894.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6860063276974213894.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAtIuJTWHA4QC2RZQ-KYZuas8b71uG2ilOmmoojGmxHWgGwFPFLlFOgGJc5opA7lCz",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "tag_list": null,
                                "title": "original sound - rlxcv5",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "aigc_info": {
                                "aigc_label_type": 0,
                                "created_by_ai": false
                              },
                              "anchors": null,
                              "anchors_extras": "",
                              "animated_image_info": {
                                "effect": 0,
                                "type": 0
                              },
                              "aweme_acl": {
                                "download_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "download_mask_panel": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "platform_list": null,
                                "press_action_list": null,
                                "share_action_list": null,
                                "share_general": {
                                  "code": 0,
                                  "mute": false,
                                  "show_type": 2,
                                  "transcode": 3
                                },
                                "share_list_status": 0
                              },
                              "aweme_type": 0,
                              "banners": null,
                              "behind_the_song_music_ids": null,
                              "behind_the_song_video_music_ids": null,
                              "bodydance_score": 0,
                              "branded_content_accounts": null,
                              "cc_template_info": {
                                "author_name": "",
                                "clip_count": 0,
                                "desc": "",
                                "duration_milliseconds": 0,
                                "related_music_id": "",
                                "template_id": ""
                              },
                              "cha_list": [
                                {
                                  "author": {
                                    "account_labels": null,
                                    "ad_cover_url": null,
                                    "advance_feature_item_order": null,
                                    "advanced_feature_info": null,
                                    "bold_fields": null,
                                    "can_message_follow_status_list": null,
                                    "can_set_geofencing": null,
                                    "cha_list": null,
                                    "cover_url": null,
                                    "events": null,
                                    "followers_detail": null,
                                    "geofencing": null,
                                    "homepage_bottom_toast": null,
                                    "item_list": null,
                                    "mutual_relation_avatars": null,
                                    "need_points": null,
                                    "platform_sync_info": null,
                                    "relative_users": null,
                                    "search_highlight": null,
                                    "shield_edit_field_info": null,
                                    "type_label": null,
                                    "user_profile_guide": null,
                                    "user_tags": null,
                                    "white_cover_url": null
                                  },
                                  "banner_list": null,
                                  "cha_attrs": null,
                                  "cha_name": "zzzzzz_______99999999",
                                  "cid": "1674820107126790",
                                  "collect_stat": 0,
                                  "connect_music": [],
                                  "desc": "",
                                  "extra_attr": {
                                    "is_live": false
                                  },
                                  "hashtag_profile": "",
                                  "is_challenge": 0,
                                  "is_commerce": false,
                                  "is_pgcshow": false,
                                  "schema": "aweme://aweme/challenge/detail?cid=1674820107126790",
                                  "search_highlight": null,
                                  "share_info": {
                                    "bool_persist": 0,
                                    "now_invitation_card_image_urls": null,
                                    "share_desc": "Check out #zzzzzz_______99999999 on TikTok!",
                                    "share_desc_info": "Check out #zzzzzz_______99999999 on TikTok!",
                                    "share_quote": "",
                                    "share_signature_desc": "",
                                    "share_signature_url": "",
                                    "share_title": "It is a becoming a big trend on TikTok now! Click here: zzzzzz_______99999999",
                                    "share_title_myself": "",
                                    "share_title_other": "",
                                    "share_url": "https://www.tiktok.com/tag/zzzzzz_______99999999?_r=1&name=zzzzzz_______99999999&u_code=elel1f85md0f9h&_d=f3g0h8edhmgle8&share_challenge_id=1674820107126790&sharer_language=en&source=h5_m"
                                  },
                                  "show_items": null,
                                  "sub_type": 0,
                                  "type": 1,
                                  "use_count": 0,
                                  "user_count": 0,
                                  "view_count": 0
                                }
                              ],
                              "challenge_position": null,
                              "cmt_swt": false,
                              "collect_stat": 0,
                              "comment_config": {
                                "comment_panel_show_tab_config": {
                                  "comment_tab_info_config": [
                                    {
                                      "priority": 100,
                                      "tab_id": 2,
                                      "tab_name": "like_list"
                                    },
                                    {
                                      "priority": 101,
                                      "tab_id": 3,
                                      "tab_name": "view_list"
                                    },
                                    {
                                      "priority": -100,
                                      "tab_id": 4,
                                      "tab_name": "story2viewer_list"
                                    },
                                    {
                                      "priority": 102,
                                      "tab_id": 5,
                                      "tab_name": "video_auth_page"
                                    },
                                    {
                                      "priority": 11,
                                      "tab_id": 11,
                                      "tab_name": "ec_reviews_tab"
                                    }
                                  ],
                                  "max_tab_count": 3
                                },
                                "emoji_recommend_list": null,
                                "long_press_recommend_list": null,
                                "preload": {
                                  "preds": "{\"item_post_comment\":0}"
                                },
                                "quick_comment": {
                                  "enabled": true,
                                  "rec_level": 0
                                },
                                "quick_comment_emoji_recommend_list": null
                              },
                              "comment_topbar_info": null,
                              "commerce_config_data": null,
                              "commerce_info": {
                                "adv_promotable": false,
                                "auction_ad_invited": false,
                                "branded_content_type": 0,
                                "is_diversion_ad": 0,
                                "organic_log_extra": "{\"req_id\":\"202605200638193CB9DFD8DCFAD800C719\"}",
                                "with_comment_filter_words": false
                              },
                              "content_desc": "",
                              "content_desc_extra": [],
                              "content_level": 0,
                              "content_model": {
                                "custom_biz": {
                                  "aweme_trace": "202605200638193CB9DFD8DCFAD800C719",
                                  "high_quality_boost_info": {
                                    "description": "",
                                    "is_high_quality_post": false,
                                    "link": ""
                                  }
                                },
                                "standard_biz": {
                                  "e_commerce": {
                                    "ttec_content_tag": {
                                      "recommendation_tag_consumer_str": "",
                                      "recommendation_tag_creator_str": ""
                                    }
                                  },
                                  "local_alliance_info": {
                                    "alliance_item_label_text": "",
                                    "alliance_item_label_type": 0
                                  }
                                }
                              },
                              "content_original_type": 1,
                              "cover_labels": null,
                              "creation_info": {
                                "creation_used_functions": []
                              },
                              "desc_language": "un",
                              "disable_search_trending_bar": false,
                              "distance": "",
                              "distribute_type": 1,
                              "follow_up_publish_from_id": 0,
                              "geofencing": null,
                              "geofencing_regions": null,
                              "green_screen_materials": null,
                              "group_id": "6854045671561956613",
                              "group_id_list": {
                                "GroupdIdList0": null,
                                "GroupdIdList1": null
                              },
                              "has_danmaku": false,
                              "has_vs_entry": false,
                              "have_dashboard": false,
                              "hybrid_label": null,
                              "image_infos": null,
                              "interact_permission": {
                                "allow_adding_as_post": {
                                  "status": 0
                                },
                                "allow_adding_to_story": 0,
                                "allow_create_sticker": {
                                  "status": 0
                                },
                                "allow_story_switch_to_post": {
                                  "status": 1
                                },
                                "duet": 0,
                                "duet_privacy_setting": 0,
                                "stitch": 0,
                                "stitch_privacy_setting": 0,
                                "upvote": 0
                              },
                              "interaction_stickers": null,
                              "is_description_translatable": false,
                              "is_hash_tag": 1,
                              "is_nff_or_nr": false,
                              "is_on_this_day": 0,
                              "is_paid_content": false,
                              "is_pgcshow": false,
                              "is_preview": 0,
                              "is_relieve": false,
                              "is_text_sticker_translatable": false,
                              "is_title_translatable": false,
                              "is_vr": false,
                              "item_comment_settings": 0,
                              "item_duet": 0,
                              "item_react": 0,
                              "item_stitch": 0,
                              "label_top": {
                                "height": 720,
                                "uri": "tiktok-obj/1598708589477025.PNG",
                                "url_list": [
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p19-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a",
                                  "https://p16-common.tiktokcdn-eu.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=10423&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=no1a"
                                ],
                                "url_prefix": null,
                                "width": 720
                              },
                              "label_top_text": null,
                              "long_video": null,
                              "main_arch_common": "",
                              "mask_infos": [],
                              "meme_reg_info": {},
                              "misc_info": "{}",
                              "muf_comment_info_v2": null,
                              "music": {
                                "album": "",
                                "allow_offline_music_to_detail_page": false,
                                "artists": [],
                                "audition_duration": 11,
                                "author": "хакер в реках",
                                "author_deleted": false,
                                "author_position": null,
                                "avatar_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5ffd3949&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=60JZ15y1UhqA8oLhKfYLVjVRSW8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28c5d6fd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wstNk5wJobBRqicZwPMBCI0HVU0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1c67fc5f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Ht8OUjkfPCTHv8GBfhTIpexVwQ%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "avatar_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8cc50b9d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j1s%2BQLeNIRZUIpqFZtB733EPk7c%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a6e1f92d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FQ%2FIiFRWyCbTXyb4N1c1NDhck6k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=6e4d2273&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vCSgYdabIX%2FIeKsn99yUYhGUAdg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "binded_challenge_id": 0,
                                "can_be_stitched": true,
                                "can_not_reuse": false,
                                "collect_stat": 0,
                                "commercial_right_type": 2,
                                "cover_large": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=18432fa9&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=zjzh12Y9FLaKljIe7jfDKdzTD4M%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=f0af626f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=E7bIya9iaAv%2F5ubVeFawy8DHGBM%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:1080:1080:q70.jpeg?dr=9608&idc=no1a&ps=87d6e48a&refresh_token=36da9b1b&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=oj00YtUyh16d1svtIa3hZ%2BblPG4%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_medium": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=5ffd3949&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=60JZ15y1UhqA8oLhKfYLVjVRSW8%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=28c5d6fd&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=wstNk5wJobBRqicZwPMBCI0HVU0%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:720:720:q70.jpeg?dr=9607&idc=no1a&ps=87d6e48a&refresh_token=1c67fc5f&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=3Ht8OUjkfPCTHv8GBfhTIpexVwQ%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "cover_thumb": {
                                  "data_size": 0,
                                  "height": 720,
                                  "uri": "tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9",
                                  "url_list": [
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8cc50b9d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j1s%2BQLeNIRZUIpqFZtB733EPk7c%3D",
                                    "https://p19-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=a6e1f92d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=FQ%2FIiFRWyCbTXyb4N1c1NDhck6k%3D",
                                    "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.jpeg?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=6e4d2273&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=vCSgYdabIX%2FIeKsn99yUYhGUAdg%3D"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "create_time": 1597232974,
                                "dmv_auto_show": false,
                                "duration": 11,
                                "duration_high_precision": {
                                  "audition_duration_precision": 11,
                                  "duration_precision": 11,
                                  "shoot_duration_precision": 11,
                                  "video_duration_precision": 11
                                },
                                "external_song_info": [],
                                "extra": "{\"aed_music_dur\":3.09,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":6860063315155045637,\"from_user_id\":7530928477470721047,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":0,\"loudness_lufs\":0,\"music_vid\":\"v09942380000bsptehug1uluv6mvfleg\",\"owner_id\":6801816492961219589,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                                "has_commerce_right": true,
                                "id": 6860063326047669000,
                                "id_str": "6860063326047668997",
                                "is_audio_url_with_cookie": false,
                                "is_author_artist": false,
                                "is_commerce_music": true,
                                "is_matched_metadata": false,
                                "is_original": false,
                                "is_original_sound": true,
                                "is_pgc": false,
                                "is_play_music": false,
                                "is_shooting_allow": true,
                                "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                                "lyric_short_position": null,
                                "meme_song_info": {},
                                "mid": "6860063326047668997",
                                "multi_bit_rate_play_info": null,
                                "mute_share": false,
                                "offline_desc": "",
                                "owner_handle": "rlxcv5",
                                "owner_id": "6801816492961219589",
                                "owner_nickname": "хакер в реках",
                                "play_url": {
                                  "height": 720,
                                  "uri": "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6860063276974213894.mp3",
                                  "url_list": [
                                    "https://sf77-ies-music-va.tiktokcdn.com/obj/musically-maliva-obj/6860063276974213894.mp3"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "position": null,
                                "prevent_download": false,
                                "preview_end_time": 0,
                                "preview_start_time": 0,
                                "recommend_status": 100,
                                "search_highlight": null,
                                "sec_uid": "MS4wLjABAAAAtIuJTWHA4QC2RZQ-KYZuas8b71uG2ilOmmoojGmxHWgGwFPFLlFOgGJc5opA7lCz",
                                "shoot_duration": 11,
                                "source_platform": 72,
                                "status": 1,
                                "tag_list": null,
                                "title": "original sound - rlxcv5",
                                "tt_to_dsp_song_infos": null,
                                "uncert_artists": null,
                                "user_count": 0,
                                "video_duration": 11
                              },
                              "music_begin_time_in_ms": 0,
                              "music_selected_from": "original",
                              "music_title_style": 1,
                              "music_volume": "0.000000",
                              "need_trim_step": false,
                              "need_vs_entry": false,
                              "nickname_position": null,
                              "no_selected_music": false,
                              "operator_boost_info": null,
                              "origin_comment_ids": null,
                              "origin_volume": "0.000000",
                              "original_client_text": {
                                "markup_text": "<h id=\"8857\">#zzzzzz_______99999999</h>)",
                                "text_extra": [
                                  {
                                    "hashtag_id": "1674820107126790",
                                    "hashtag_name": "zzzzzz_______99999999",
                                    "is_commerce": false,
                                    "sec_uid": "",
                                    "tag_id": "8857",
                                    "type": 1,
                                    "user_id": ""
                                  }
                                ]
                              },
                              "paid_content_info": {
                                "paid_collection_id": 0
                              },
                              "picked_users": [],
                              "playlist_blocked": false,
                              "poi_re_tag_signal": 0,
                              "position": null,
                              "prevent_download": false,
                              "products_info": null,
                              "question_list": null,
                              "quick_reply_emojis": [
                                "😍",
                                "😂",
                                "😳"
                              ],
                              "rate": 10,
                              "reference_tts_voice_ids": null,
                              "reference_voice_filter_ids": null,
                              "region": "RU",
                              "risk_infos": {
                                "content": "",
                                "risk_sink": false,
                                "type": 0,
                                "vote": false,
                                "warn": false
                              },
                              "search_highlight": null,
                              "share_info": {
                                "bool_persist": 0,
                                "now_invitation_card_image_urls": null,
                                "share_desc": "Check out хакер в реках's video! #TikTok",
                                "share_desc_info": "TikTok: Make Every Second CountCheck out хакер в реках’s video! #TikTok > ",
                                "share_link_desc": "",
                                "share_quote": "",
                                "share_signature_desc": "",
                                "share_signature_url": "",
                                "share_title": "Check out хакер в реках’s video! #TikTok > ",
                                "share_title_myself": "",
                                "share_title_other": "",
                                "share_url": "https://www.tiktok.com/@rlxcv5/video/6860063315155045637?_r=1&u_code=elel1f85md0f9h&preview_pb=0&sharer_language=en&_d=f3g0h8edhmgle8&share_item_id=6860063315155045637&source=h5_m",
                                "whatsapp_desc": "Download TikTok and watch more fun videos:"
                              },
                              "smart_search_info": {
                                "ask_tako_intent_type": 0,
                                "find_similar_intent_type": 0,
                                "related_videos_intent_type": 0,
                                "title_smart_search_panel_type": 0
                              },
                              "social_interaction_blob": {
                                "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                              },
                              "solaria_profile": {
                                "profile": "{\"play_time_prob_dist\":\"[800,0.9122,2709.3807]\"}"
                              },
                              "sort_label": "",
                              "standard_component_info": {
                                "button": {
                                  "buttons": [
                                    {
                                      "key": {
                                        "component_key": "bottom_button_quick_external_share"
                                      },
                                      "signal": {
                                        "code": -1
                                      },
                                      "ui": {
                                        "template": {
                                          "actions": [
                                            {
                                              "events": [
                                                {
                                                  "type": "bottom_button_quick_external_share_expose"
                                                },
                                                {
                                                  "next": [
                                                    {
                                                      "next": [
                                                        {
                                                          "params": "{\"buttons.button1.variant\":\"primary\"}",
                                                          "type": "update_vo"
                                                        }
                                                      ],
                                                      "type": "bottom_button_quick_external_share_will_update"
                                                    }
                                                  ],
                                                  "params": "{\"duration\":1000}",
                                                  "type": "timer"
                                                }
                                              ],
                                              "key": "exposure_action"
                                            },
                                            {
                                              "events": [
                                                {
                                                  "type": "exit_screen"
                                                },
                                                {
                                                  "type": "bottom_button_quick_external_share_click"
                                                }
                                              ],
                                              "key": "click_button1"
                                            }
                                          ],
                                          "fields": "{\"buttons\":{\"button1\":{\"text\":\"quick_external_share\",\"variant\":\"secondary\",\"action_key\":\"click_button1\"}}}",
                                          "type": 1
                                        },
                                        "ui_type": 2
                                      }
                                    }
                                  ],
                                  "enable_standard_button": true
                                }
                              },
                              "status": {
                                "allow_comment": true,
                                "allow_share": true,
                                "aweme_id": "6860063315155045637",
                                "download_status": 0,
                                "in_reviewing": false,
                                "is_delete": false,
                                "is_prohibited": false,
                                "private_status": 0,
                                "review_result": {
                                  "review_status": 0
                                },
                                "reviewed": 0,
                                "self_see": false
                              },
                              "support_danmaku": false,
                              "survey_info": null,
                              "text_extra": [
                                {
                                  "end": 22,
                                  "hashtag_id": "1674820107126790",
                                  "hashtag_name": "zzzzzz_______99999999",
                                  "is_commerce": false,
                                  "sec_uid": "",
                                  "start": 0,
                                  "tag_id": "8857",
                                  "type": 1,
                                  "user_id": ""
                                }
                              ],
                              "text_sticker_major_lang": "un",
                              "title_language": "un",
                              "ttec_suggest_words": {
                                "ttec_suggest_words": null
                              },
                              "tts_voice_ids": null,
                              "uniqid_position": null,
                              "used_full_song": false,
                              "user_digged": 0,
                              "video_control": {
                                "allow_download": false,
                                "allow_duet": true,
                                "allow_dynamic_wallpaper": true,
                                "allow_music": true,
                                "allow_react": true,
                                "allow_stitch": true,
                                "draft_progress_bar": 1,
                                "prevent_download_type": 2,
                                "share_type": 0,
                                "show_progress_bar": 1,
                                "timer_status": 1
                              },
                              "video_labels": [],
                              "video_text": [],
                              "visual_search_info": {
                                "fallback_vtag_enable": false,
                                "long_press_entrance_enable": false,
                                "vtag_enable": false
                              },
                              "voice_filter_ids": null,
                              "with_promotional_music": false,
                              "without_watermark": false,
                              "is_eligible_for_commission": false,
                              "is_paid_partnership": false,
                              "shop_product_url": null
                            },
                            "author": {
                              "id": "6801816492961219589",
                              "handle": "rlxcv5",
                              "displayName": "хакер в реках",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/012f29ea97393a65edb79bcef48c97f9~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=9606&idc=no1a&ps=87d6e48a&refresh_token=8cc50b9d&s=CHALLENGE_AWEME&sc=avatar&shcp=c0f880ed&shp=d05b14bd&t=223449c4&x-expires=1779343200&x-signature=j1s%2BQLeNIRZUIpqFZtB733EPk7c%3D",
                              "verified": true
                            }
                          }
                        ],
                        "totalVideos": 1,
                        "page": {
                          "nextCursor": "20",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_hashtag_search_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/shop/products/search": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Search TikTok Shop products",
        "description": "Search products in TikTok Shop.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 512,
              "description": "Search query text for TikTok Shop products."
            },
            "required": true,
            "description": "Search query text for TikTok Shop products.",
            "name": "query",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "1-based results page number. Omit to request the first page. Pagination is page-based."
            },
            "required": false,
            "description": "1-based results page number. Omit to request the first page. Pagination is page-based.",
            "name": "page",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "US",
                "GB",
                "DE",
                "FR",
                "IT",
                "ID",
                "MY",
                "MX",
                "PH",
                "SG",
                "ES",
                "TH",
                "VN",
                "BR",
                "JP",
                "IE"
              ],
              "description": "Optional country or region code for the product search catalog."
            },
            "required": false,
            "description": "Optional country or region code for the product search catalog.",
            "name": "region",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Product search results for the requested page.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "query": {
                          "type": "string",
                          "description": "Search query that was evaluated for this response."
                        },
                        "products": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok Shop product identifier."
                              },
                              "title": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Product title text."
                              },
                              "description": {
                                "type": "string",
                                "nullable": true,
                                "description": "Product description, when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Canonical public URL for the product page, when available."
                              },
                              "imageUrl": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Primary product image URL, when available."
                              },
                              "image": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "width": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image width in pixels, when available."
                                  },
                                  "height": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image height in pixels, when available."
                                  },
                                  "url": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "minLength": 1
                                      },
                                      {
                                        "nullable": true
                                      }
                                    ],
                                    "description": "Primary product image URL."
                                  }
                                },
                                "required": [
                                  "width",
                                  "height",
                                  "url"
                                ],
                                "description": "Structured image size metadata when the image URL is available."
                              },
                              "shipFrom": {
                                "type": "string",
                                "nullable": true,
                                "description": "Reported ship-from location text, when available."
                              },
                              "trustLabel": {
                                "type": "string",
                                "nullable": true,
                                "description": "TikTok Shop trust badge label, when available."
                              },
                              "labels": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "text": {
                                      "type": "string",
                                      "description": "Label text shown for the product."
                                    },
                                    "type": {
                                      "type": "integer",
                                      "nullable": true,
                                      "description": "TikTok Shop label type code, when available."
                                    }
                                  },
                                  "required": [
                                    "text",
                                    "type"
                                  ],
                                  "description": "A promotional, shipping, or trust label for a product card."
                                },
                                "description": "Promotional, shipping, and trust labels for the product card."
                              },
                              "price": {
                                "type": "object",
                                "properties": {
                                  "currencyCode": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency name or code for displayed prices, when available."
                                  },
                                  "currencySymbol": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency symbol for the listed price, when available."
                                  },
                                  "current": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Current sale price for the product, when available."
                                  },
                                  "original": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Original or list price before discount, when available."
                                  },
                                  "discountText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable discount label, when available."
                                  },
                                  "savingText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable savings line, when available."
                                  }
                                },
                                "required": [
                                  "currencyCode",
                                  "currencySymbol",
                                  "current",
                                  "original",
                                  "discountText",
                                  "savingText"
                                ],
                                "description": "Displayed price data."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "sold": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Approximate units sold, when available."
                                  },
                                  "reviews": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Number of product reviews, when available."
                                  },
                                  "rating": {
                                    "type": "number",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Average product rating, when available."
                                  }
                                },
                                "required": [
                                  "sold",
                                  "reviews",
                                  "rating"
                                ],
                                "description": "Rating and sales metrics for the product."
                              },
                              "shop": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "TikTok Shop seller identifier, when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Shop display name, when available."
                                  },
                                  "logoUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Shop logo image URL, when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "logoUrl"
                                ],
                                "description": "Selling shop for the product."
                              }
                            },
                            "required": [
                              "id",
                              "title",
                              "description",
                              "url",
                              "imageUrl",
                              "shipFrom",
                              "trustLabel",
                              "labels",
                              "price",
                              "metrics",
                              "shop"
                            ],
                            "description": "A normalized TikTok Shop search result product."
                          },
                          "description": "Products returned for the requested page."
                        },
                        "totalProducts": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Total matching products reported for the search, when available."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "currentPage": {
                              "type": "integer",
                              "minimum": 1,
                              "description": "1-based page number for this response."
                            },
                            "nextPage": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 1,
                              "description": "Next page number to request when more results are available; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether more product pages are likely available for this search."
                            }
                          },
                          "required": [
                            "currentPage",
                            "nextPage",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "query",
                        "products",
                        "totalProducts",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "sample": {
                    "value": {
                      "data": {
                        "query": "shoes",
                        "products": [
                          {
                            "id": "1729416431099876154",
                            "title": "Men's Running Shoes Blade Tennis Walking Fashion Sneakers Breathable NonSlip Gym Sports Work Trainers, Perfectfor Students and Outdoor Sport Runner Closed Sports Shoes Walking Shoes Casual Training Footwear Athletic Outdoorfun",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729416431099876154",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6849eb2b077845f08fb846a49385bba7~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6849eb2b077845f08fb846a49385bba7~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "gold",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "29.09",
                              "original": "39.99",
                              "discountText": "27%",
                              "savingText": "Saving $10.90"
                            },
                            "metrics": {
                              "sold": 85056,
                              "reviews": null,
                              "rating": 4.2
                            },
                            "shop": {
                              "id": "7495432602243337018",
                              "name": "Mevlzz",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732318392798253330",
                            "title": "Men's fashionable lace-up low-top sneakers, casual and comfortable breathable running shoes, versatile round-toe everyday shoes for men, closed design, suitable for both men and women, relaxed fit;'][,..",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732318392798253330",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/54afd12f5c2d48f8bcd3897278cab4dc~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/54afd12f5c2d48f8bcd3897278cab4dc~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "10.91",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 7,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494506852124755218",
                              "name": "VigorPath",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729483593993459236",
                            "title": "Men's 1 Pair Minimalist Casual Plain Round Toe Running Shoes, Sporty Lightweight Breathable Running Shoes For Exercise & Daily Wear Bridal Sneaker Athletic Runner Training Closed Trainer Boy",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729483593993459236",
                            "imageUrl": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/804286682400442ba848af8e3d903611~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/804286682400442ba848af8e3d903611~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "21.99",
                              "original": "39.99",
                              "discountText": "45%",
                              "savingText": "Saving $18.00"
                            },
                            "metrics": {
                              "sold": 394,
                              "reviews": null,
                              "rating": 4.3
                            },
                            "shop": {
                              "id": "7494150417435559460",
                              "name": "XXXFDADS",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1730571731595530524",
                            "title": "Bruno Marc [MaxFlex SulteCraft Men's Smart-] Mens Black Wingtip Dress Shoes for Men Comfortable Height Boost Footwear Casual Athletic Sneaker Trainer Running Closed Office Shoes Mens Dress Shoes Work Boots Outdoorfun Boy",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1730571731595530524",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ab4415850c964a039121b594d3e09e18~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/ab4415850c964a039121b594d3e09e18~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "most_loved",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "29.99",
                              "original": "92.99",
                              "discountText": "68%",
                              "savingText": "Saving $63.00"
                            },
                            "metrics": {
                              "sold": 8778,
                              "reviews": null,
                              "rating": 4.7
                            },
                            "shop": {
                              "id": "7496046006863104284",
                              "name": "BRUNO MARC",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1730718391180497792",
                            "title": "NORTIV 8 [ActiveBreeze] Women's Walking Shoes Cushion Comfortable ActiveBreeze Running Shoes Non-Slip Workout Gym Sports Athletic Breathable Fashion Sneakers Running Sneaker Athletic Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1730718391180497792",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7cd7fa92d06f4ac58e00b5f33ec01eef~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7cd7fa92d06f4ac58e00b5f33ec01eef~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "most_loved",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "59.99",
                              "original": "129.99",
                              "discountText": "54%",
                              "savingText": "Saving $70.00"
                            },
                            "metrics": {
                              "sold": 39372,
                              "reviews": null,
                              "rating": 4.7
                            },
                            "shop": {
                              "id": "7496061985188645760",
                              "name": "ALLSWIFIT",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731790415967982449",
                            "title": "Nike Air Force 1 Low '07 'Triple White' CW2288-111",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731790415967982449",
                            "imageUrl": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/1d14a2db0ff054ec2241e2a5d45f626c~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/1d14a2db0ff054ec2241e2a5d45f626c~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "104.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 48,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7496270331143097201",
                              "name": "KICKS CREW SNEAKERS",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731923286576632281",
                            "title": "KIDMI Genuine Suede Clogs for Women Men Soft Cork Footbed Leather Mules Comfort Potato Shoes with Arch Support Outdoor Nonslip Walking Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731923286576632281",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f820ff44827a4c74964b237ec11bfafd~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f820ff44827a4c74964b237ec11bfafd~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "most_loved",
                            "labels": [
                              {
                                "text": "Free 3-day shipping",
                                "type": 32
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "25.42",
                              "original": "29.99",
                              "discountText": "15%",
                              "savingText": "Saving $4.57"
                            },
                            "metrics": {
                              "sold": 6359,
                              "reviews": null,
                              "rating": 4.8
                            },
                            "shop": {
                              "id": "7494195471787394521",
                              "name": "KIDMI US",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729711135248520034",
                            "title": "Unisex Anti-Smash Safety Shoes, Steel Toe Caps, Anti-Slip, Breathable,Industrial Construction Sports Rotatory Lace-Free Casual Hiking Shoes Black Gray",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729711135248520034",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/90a0576c22014b65be7036d11afeb742~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/90a0576c22014b65be7036d11afeb742~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "gold",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "35.69",
                              "original": "79.98",
                              "discountText": "55%",
                              "savingText": "Saving $44.29"
                            },
                            "metrics": {
                              "sold": 30680,
                              "reviews": null,
                              "rating": 4.4
                            },
                            "shop": {
                              "id": "7495946968122559330",
                              "name": "OKK ProGuard",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729499450041143301",
                            "title": "Men's Running Shoes Blade Tennis Walking Fashion Sneakers Breathable Non Slip Gym Sports Work Trainers Footwear Boy",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729499450041143301",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7f94a9e457af4af8be9db0c549ec5be2~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7f94a9e457af4af8be9db0c549ec5be2~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "silver",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "29.99",
                              "original": "39.99",
                              "discountText": "25%",
                              "savingText": "Saving $10.00"
                            },
                            "metrics": {
                              "sold": 10065,
                              "reviews": null,
                              "rating": 4.2
                            },
                            "shop": {
                              "id": "7495782899653838853",
                              "name": "pozvnn",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732271819702636934",
                            "title": "PUMA Mens Graviton Lace Up Sneakers Shoes Casual - Off White",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732271819702636934",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c440e85267bf437aa1b34beb6249ed87~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c440e85267bf437aa1b34beb6249ed87~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "32.95",
                              "original": "65.00",
                              "discountText": "49%",
                              "savingText": "Saving $32.05"
                            },
                            "metrics": {
                              "sold": 127,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7495957404327905670",
                              "name": "SHOEBACCA",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731791343420543857",
                            "title": "Air Jordan 4 Retro 'White Cement' 2025 FV5029-100",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731791343420543857",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7619c3f9d9d3070484527e81773a2bb4~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7619c3f9d9d3070484527e81773a2bb4~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "199.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 132,
                              "reviews": null,
                              "rating": 4.7
                            },
                            "shop": {
                              "id": "7496270331143097201",
                              "name": "KICKS CREW SNEAKERS",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732066507180249242",
                            "title": "ASICS Men's Gel-1130 White Clay Canyon Running Shoes, from StockX",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732066507180249242",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1b4cf4b861f0361140986e4520a566d2~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1b4cf4b861f0361140986e4520a566d2~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "98.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 286,
                              "reviews": null,
                              "rating": 4.9
                            },
                            "shop": {
                              "id": "7494199593139405978",
                              "name": "StockX",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731473594938724742",
                            "title": "adidas Mens Yeezy Quantum Lace Up Basketball Sneakers Shoes Casual - Beige",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731473594938724742",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9c81867183e4d85b0ffd67099bf055d~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d9c81867183e4d85b0ffd67099bf055d~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "47.95",
                              "original": "250.00",
                              "discountText": "81%",
                              "savingText": "Saving $202.05"
                            },
                            "metrics": {
                              "sold": 4487,
                              "reviews": null,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7495957404327905670",
                              "name": "SHOEBACCA",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732205232252293538",
                            "title": "HOBIBEAR Wide-Head Shoes for Spring/Autumn Durable Casual Lightweight Hiking Wide-Fit Footwear with Toe Box Expander Non-Slip Outsole Breathable Comfort",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732205232252293538",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/90cbaec84e234c5e88fe914526f6eb18~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 450,
                              "height": 600,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/90cbaec84e234c5e88fe914526f6eb18~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "most_loved",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "39.99",
                              "original": "150.00",
                              "discountText": "73%",
                              "savingText": "Saving $110.01"
                            },
                            "metrics": {
                              "sold": 1093,
                              "reviews": null,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7495517522636868002",
                              "name": "Hobibear Shoes",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731205325923979701",
                            "title": "ADIDAS Samba ADV Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731205325923979701",
                            "imageUrl": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/cfa7c692db76bce29230950dfd7d897d~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/cfa7c692db76bce29230950dfd7d897d~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "99.99",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 1090,
                              "reviews": null,
                              "rating": 4.5
                            },
                            "shop": {
                              "id": "7495904202618472885",
                              "name": "Tillys",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729494459949749685",
                            "title": "ADIDAS Samba ADV Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729494459949749685",
                            "imageUrl": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/b8b26be40e164c718fe938501bd90bf4~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 450,
                              "height": 600,
                              "url": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/b8b26be40e164c718fe938501bd90bf4~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "99.99",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 1538,
                              "reviews": null,
                              "rating": 4.8
                            },
                            "shop": {
                              "id": "7495904202618472885",
                              "name": "Tillys",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729507538881975377",
                            "title": "Mellow Sleep | MellowSoft Cloud Slides - Soft Squishy Waterproof Pillow Slides, Cloud Foam Platform Slippers with Running Shoe Level Cushioning & Shock Absorption, Anti Slip Comfort Slides for Indoor & Outdoor",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729507538881975377",
                            "imageUrl": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/32339cfc184343d09b6c343bd8a3c69b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/32339cfc184343d09b6c343bd8a3c69b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": "Ontario, CA",
                            "trustLabel": "blue_v",
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "24.09",
                              "original": "34.00",
                              "discountText": "29%",
                              "savingText": "Saving $9.91"
                            },
                            "metrics": {
                              "sold": 13418,
                              "reviews": null,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7496134814654105681",
                              "name": "Mellow Sleep",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729632957170815659",
                            "title": "HOBIBEAR Barefoot Minimalist Wide Fit Canvas Slip-on Trainers - 0 Drop, Comfortable Insoles, All Black Walking Casual Shoes for Men (Ideal Father's Day Gift), Walking Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729632957170815659",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/42cb1f02838b4629ac78504ad85dfa27~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/42cb1f02838b4629ac78504ad85dfa27~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "39.79",
                              "original": "129.99",
                              "discountText": "69%",
                              "savingText": "Saving $90.20"
                            },
                            "metrics": {
                              "sold": 54273,
                              "reviews": null,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7495434955920738987",
                              "name": "HOBIBEAR SHOES OFFICIAL",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729489149172880274",
                            "title": "KANE Recovery Shoe - Bubblegum / Pink Speckle - Everyday Sneaker, Shoe for Runners",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729489149172880274",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/121db3395a39429e865273b1abeae86e~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/121db3395a39429e865273b1abeae86e~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "80.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 144,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7495395456961514386",
                              "name": "Kane Footwear LLC",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732371667898504160",
                            "title": "Legendary Blue Retro Comfortable Casual Shock Absorbing Anti-Slip Basketball Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732371667898504160",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/40e1586988384d98bbcd2228dcf55599~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/40e1586988384d98bbcd2228dcf55599~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "129.99",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": null,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597498870663136",
                              "name": "James SSHOOOP",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731708098161513344",
                            "title": "ALLSWIFIT Women's Slip On Walking Shoes Hands Free Non Slip Comfort Workout Gym Athletic Casual Breathable Running Tennis MoveSlide Fashion Sneakers",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731708098161513344",
                            "imageUrl": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/33ac86f3d24a0263a0671fc199c74f2e~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/33ac86f3d24a0263a0671fc199c74f2e~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "most_loved",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "59.99",
                              "original": "149.99",
                              "discountText": "60%",
                              "savingText": "Saving $90.00"
                            },
                            "metrics": {
                              "sold": 11081,
                              "reviews": null,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7496061985188645760",
                              "name": "ALLSWIFIT",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732371893983679128",
                            "title": "Trendy Casual Comfortable Slip-On Slippers for Men - Black",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732371893983679128",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e9a5b1cff66f44689a065340fc7f87cc~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e9a5b1cff66f44689a065340fc7f87cc~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "87.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 2,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597495095854744",
                              "name": "Butler SSHOOOP",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732371178757526323",
                            "title": "SE Black and Light Grey Fashion Retro Trend Casual Versatile Sports Mid-Top Basketball Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732371178757526323",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0b3e1a41cdea48ee8aecfcd9a90690eb~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0b3e1a41cdea48ee8aecfcd9a90690eb~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "145.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": null,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597206681093939",
                              "name": "Hank Comment Success",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732328345453695076",
                            "title": "Retro Black Cement 2024 Unisex Fashionable Classic Versatile Trendy Comfortable Durable Casual Sports Basketball Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732328345453695076",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7bc225001f27451f8249ec627e369dbd~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7bc225001f27451f8249ec627e369dbd~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "116.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 10,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494508879557002340",
                              "name": "Emma Semas",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732331605535134294",
                            "title": "Nigel Sylvester Retro OG Special Edition Brick-by-Brick Mid-Top Basketball Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732331605535134294",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7a90e1edcba4824bfd2d935e6b1894b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d7a90e1edcba4824bfd2d935e6b1894b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "138.00",
                              "original": "290.00",
                              "discountText": "52%",
                              "savingText": "Saving $152.00"
                            },
                            "metrics": {
                              "sold": 11,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494492684589434454",
                              "name": "flame ocean blue wind",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732066519505866906",
                            "title": "ASICS Men's Gel-1130 White Cloud Grey Running Shoes, from StockX",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732066519505866906",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/282cc06b483848499e266a7d6ca61bfe~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/282cc06b483848499e266a7d6ca61bfe~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": "blue_v",
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "94.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 145,
                              "reviews": null,
                              "rating": 4.9
                            },
                            "shop": {
                              "id": "7494199593139405978",
                              "name": "StockX",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732369021920514867",
                            "title": "Retro Bred 2019 Black and Red Colorway Casual Sports Versatile Durable Comfortable Basketball Shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732369021920514867",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/79337a9877e842109d7a15bee3afa131~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/79337a9877e842109d7a15bee3afa131~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "145.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 1,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597206681093939",
                              "name": "Hank Comment Success",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729435825298248506",
                            "title": "Men's Mesh Sneakers Oxfords Business Casual Walking Shoes Tennis Comfortable，Sporty Lightweight Breathable Running Shoes For Exercise & Daily Wear Closed Trainer Boy Training Runner Athletic Footwear block Shoes Outdoorfun",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729435825298248506",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917d80289b2043bdb6393d02c5c72d27~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/917d80289b2043bdb6393d02c5c72d27~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": "Hayward, CA",
                            "trustLabel": "gold",
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "23.09",
                              "original": "32.99",
                              "discountText": "30%",
                              "savingText": "Saving $9.90"
                            },
                            "metrics": {
                              "sold": 28196,
                              "reviews": null,
                              "rating": 4.2
                            },
                            "shop": {
                              "id": "7495432602243337018",
                              "name": "Mevlzz",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732374658736165046",
                            "title": "White and Pine Green Mid-Top Sneakers",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732374658736165046",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/05f6cfae87114508ba77deedb5bb9ae6~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/05f6cfae87114508ba77deedb5bb9ae6~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "138.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": null,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494557735863026870",
                              "name": "river flame moon",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732371642825348064",
                            "title": "Black and red classic casual comfortable anti-slip shock-absorbing basketball shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732371642825348064",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7b65a47bf4504bf3bbbc2e3dde53a5a8~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7b65a47bf4504bf3bbbc2e3dde53a5a8~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "129.99",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 1,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597498870663136",
                              "name": "James SSHOOOP",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732369488295662387",
                            "title": "White and gray stylish retro trendy casual versatile non-slip wear-resistant sports basketball shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732369488295662387",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55bbefa5dbda4a95a9f23184b2637c67~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55bbefa5dbda4a95a9f23184b2637c67~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "145.00",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": null,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597206681093939",
                              "name": "Hank Comment Success",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732295743814275785",
                            "title": "Men's Fashionable Lace Up Low Top Sneakers, Casual Breathable Comfortable Sports Running Shoes, Male All-match Round Toe Shoes for Daily Wear, Closed, Sporty Running Fashion",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732295743814275785",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/50fd32c65d96470bad3709bd8743beb2~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 450,
                              "height": 600,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/50fd32c65d96470bad3709bd8743beb2~tplv-fhlh96nyum-crop-webp:450:600.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "12.35",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 105,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "8647406480956692169",
                              "name": "Slim Shoe Corner",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731539259516227617",
                            "title": "Men's Breathable Lightweight Knit Running Sports Shoes - Comfortable Lace Up Round Toe Casual Design with EVA Insole & MD Outsole, for Daily Wear & Sports",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731539259516227617",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0af06d45433e45fbb1b7dd7e0a9f109b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0af06d45433e45fbb1b7dd7e0a9f109b~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "15.92",
                              "original": "50.00",
                              "discountText": "68%",
                              "savingText": "Saving $34.08"
                            },
                            "metrics": {
                              "sold": 827,
                              "reviews": null,
                              "rating": 4.3
                            },
                            "shop": {
                              "id": "7496300005249419297",
                              "name": "HXHT SHOPS",
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1732371883724280800",
                            "title": "Black retro casual comfortable anti-slip and wear-resistant basketball shoes",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732371883724280800",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d45cee335388422eb6db1750e0b2afa8~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/d45cee335388422eb6db1750e0b2afa8~tplv-fhlh96nyum-crop-webp:400:400.webp?dr=12190&t=555f072d&ps=933b5bde&shp=678cc231&shcp=678cc231&idc=useast5&from=1737278001"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [
                              {
                                "text": "Free shipping",
                                "type": 8
                              }
                            ],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "129.99",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": null,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494597498870663136",
                              "name": "James SSHOOOP",
                              "logoUrl": null
                            }
                          }
                        ],
                        "totalProducts": 34,
                        "page": {
                          "currentPage": 1,
                          "nextPage": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_61fff5ee-1b68-4b7d-a1ca-d4df556c12b6",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "query": "zzzzimprobablequery",
                        "totalProducts": 0,
                        "products": [],
                        "page": {
                          "currentPage": 1,
                          "nextPage": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "sparse": {
                    "value": {
                      "data": {
                        "query": "tshirt",
                        "totalProducts": 2,
                        "products": [
                          {
                            "id": "1729505304355116874",
                            "title": "Sample product with missing rating data",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729505304355116874",
                            "imageUrl": "https://p16.example.com/p.webp",
                            "image": {
                              "width": 400,
                              "height": 400,
                              "url": "https://p16.example.com/p.webp"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "16.00",
                              "original": "39.98",
                              "discountText": "60%",
                              "savingText": "Saving $23.98"
                            },
                            "metrics": {
                              "sold": 16,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7494469722151290698",
                              "name": "example-shop",
                              "logoUrl": null
                            }
                          }
                        ],
                        "page": {
                          "currentPage": 1,
                          "nextPage": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/shop/products": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok shop products",
        "description": "Get products listed in a TikTok Shop store.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public TikTok Shop store URL whose products should be listed."
            },
            "required": true,
            "description": "Public TikTok Shop store URL whose products should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 8192,
              "description": "Pagination cursor from a previous response. Omit to request the first page."
            },
            "required": false,
            "description": "Pagination cursor from a previous response. Omit to request the first page.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "US",
                "GB",
                "DE",
                "FR",
                "IT",
                "ID",
                "MY",
                "MX",
                "PH",
                "SG",
                "ES",
                "TH",
                "VN",
                "BR",
                "JP",
                "IE"
              ],
              "description": "Optional region code for the shop catalog. When omitted, the default catalog region is US."
            },
            "required": false,
            "description": "Optional region code for the shop catalog. When omitted, the default catalog region is US.",
            "name": "region",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Store listing result. `data.lookupStatus` is `not_found` when the storefront cannot be resolved.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the storefront resolved for this request."
                        },
                        "shop": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "id": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Shop seller identifier, when available."
                            },
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Shop display name, when available."
                            },
                            "logoUrl": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Shop logo image URL, when available."
                            },
                            "storeUrl": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Canonical public URL for the shop storefront, when available."
                            },
                            "region": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Region code reported for the storefront, when available."
                            },
                            "rating": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Average shop rating, when available."
                            },
                            "soldCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Approximate units sold for the shop, when available."
                            },
                            "reviewCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Number of shop reviews, when available."
                            },
                            "onSellProductCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Count of products currently on sale, when available."
                            },
                            "followerCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Follower count for the shop, when available."
                            },
                            "videoCount": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Video count associated with the shop, when available."
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "logoUrl",
                            "storeUrl",
                            "region",
                            "rating",
                            "soldCount",
                            "reviewCount",
                            "onSellProductCount",
                            "followerCount",
                            "videoCount"
                          ],
                          "description": "Store summary when `lookupStatus` is `found`; null when the store could not be resolved."
                        },
                        "products": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok Shop product identifier."
                              },
                              "title": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Product title text."
                              },
                              "description": {
                                "type": "string",
                                "nullable": true,
                                "description": "Product description, when available."
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Canonical public URL for the product page, when available."
                              },
                              "imageUrl": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Primary product image URL, when available."
                              },
                              "image": {
                                "type": "object",
                                "nullable": true,
                                "properties": {
                                  "width": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image width in pixels, when available."
                                  },
                                  "height": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Image height in pixels, when available."
                                  },
                                  "url": {
                                    "anyOf": [
                                      {
                                        "type": "string",
                                        "minLength": 1
                                      },
                                      {
                                        "nullable": true
                                      }
                                    ],
                                    "description": "Primary product image URL."
                                  }
                                },
                                "required": [
                                  "width",
                                  "height",
                                  "url"
                                ],
                                "description": "Structured image size metadata when the image URL is available."
                              },
                              "shipFrom": {
                                "type": "string",
                                "nullable": true,
                                "description": "Reported ship-from location text, when available."
                              },
                              "trustLabel": {
                                "type": "string",
                                "nullable": true,
                                "description": "TikTok Shop trust badge label, when available."
                              },
                              "labels": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "text": {
                                      "type": "string",
                                      "description": "Label text shown for the product."
                                    },
                                    "type": {
                                      "type": "integer",
                                      "nullable": true,
                                      "description": "TikTok Shop label type code, when available."
                                    }
                                  },
                                  "required": [
                                    "text",
                                    "type"
                                  ],
                                  "description": "A promotional, shipping, or trust label for a product card."
                                },
                                "description": "Promotional, shipping, and trust labels for the product card."
                              },
                              "price": {
                                "type": "object",
                                "properties": {
                                  "currencyCode": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency name or code for displayed prices, when available."
                                  },
                                  "currencySymbol": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Currency symbol for the listed price, when available."
                                  },
                                  "current": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Current sale price for the product, when available."
                                  },
                                  "original": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Original or list price before discount, when available."
                                  },
                                  "discountText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable discount label, when available."
                                  },
                                  "savingText": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable savings line, when available."
                                  }
                                },
                                "required": [
                                  "currencyCode",
                                  "currencySymbol",
                                  "current",
                                  "original",
                                  "discountText",
                                  "savingText"
                                ],
                                "description": "Displayed price data."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "sold": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Approximate units sold, when available."
                                  },
                                  "reviews": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Number of product reviews, when available."
                                  },
                                  "rating": {
                                    "type": "number",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Average product rating, when available."
                                  }
                                },
                                "required": [
                                  "sold",
                                  "reviews",
                                  "rating"
                                ],
                                "description": "Rating and sales metrics for the product."
                              },
                              "shop": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "TikTok Shop seller identifier, when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Shop display name, when available."
                                  },
                                  "logoUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Shop logo image URL, when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "logoUrl"
                                ],
                                "description": "Selling shop for the product."
                              }
                            },
                            "required": [
                              "id",
                              "title",
                              "description",
                              "url",
                              "imageUrl",
                              "shipFrom",
                              "trustLabel",
                              "labels",
                              "price",
                              "metrics",
                              "shop"
                            ],
                            "description": "A normalized TikTok Shop search result product."
                          },
                          "description": "Product cards returned for the requested page."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "minLength": 1,
                              "description": "Opaque cursor to pass as `cursor` on the next request when `hasMore` is true; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of products can be requested for this store."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination state for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "shop",
                        "products",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "shop": {
                          "id": "7495794203056835079",
                          "name": null,
                          "logoUrl": null,
                          "storeUrl": "https://www.tiktok.com/shop/store/goli-nutrition/7495794203056835079",
                          "region": "US",
                          "rating": null,
                          "soldCount": null,
                          "reviewCount": null,
                          "onSellProductCount": null,
                          "followerCount": null,
                          "videoCount": null
                        },
                        "products": [
                          {
                            "id": "1729527313880355335",
                            "title": "Goli Ashwagandha & Vitamin D Gummy - Mixed Berry, KSM-66, Vegan, Plant Based, Non-GMO, Gluten-Free & Gelatin Free. America's #1 Ashwagandha Brand",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729527313880355335",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/30fc1338a2bf474a9d252a790e4c119f~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/30fc1338a2bf474a9d252a790e4c119f~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "14.96",
                              "original": "24.99",
                              "discountText": "40%",
                              "savingText": "10.03"
                            },
                            "metrics": {
                              "sold": 1283116,
                              "reviews": 93662,
                              "rating": 4.5
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729587769570529799",
                            "title": "3 Bottles of Goli Ashwagandha & Vitamin D Gummy - Mixed Berry, KSM-66, Vegan, Plant Based, Non-GMO, Gluten & Gelatin Free",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729587769570529799",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "44.96",
                              "original": "74.94",
                              "discountText": "40%",
                              "savingText": "29.98"
                            },
                            "metrics": {
                              "sold": 851075,
                              "reviews": 70599,
                              "rating": 4.7
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1731194857673101831",
                            "title": "Zero Sugar Best Seller Trio - World's First 3-in-1 Pre, Post, Probiotic, Apple Cider Vinegar with Vitamin B12 and Probiotics To Address Bloating, Ashwagandha & L-Theanine, Vitamin D gummies. Gluten-Free, Vegan, Non-GMO & Gelatin-Free",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1731194857673101831",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e27e67fd51f4470594cdf1da3d308b4e~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e27e67fd51f4470594cdf1da3d308b4e~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "28.48",
                              "original": "105.00",
                              "discountText": "73%",
                              "savingText": "76.52"
                            },
                            "metrics": {
                              "sold": 803943,
                              "reviews": 36875,
                              "rating": 4.5
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729589345444205063",
                            "title": "3 Bottles of Goli Best Seller Bundle: Ashwagandha KSM-66, Apple Cider Vinegar, Matcha Mind supplement with Cognizin, Vitamins D2 and B12",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729589345444205063",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7a85d8aa9e2c4faab75a09fd9e5bff42~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7a85d8aa9e2c4faab75a09fd9e5bff42~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "29.48",
                              "original": "74.97",
                              "discountText": "61%",
                              "savingText": "45.49"
                            },
                            "metrics": {
                              "sold": 509959,
                              "reviews": 38691,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729527774874997255",
                            "title": "Goli Pre, Post, Probiotics Gummy - World's First 3-in-1 Gluten-Free, Vegan, Non-GMO, and Gelatin-Free.",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729527774874997255",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/3939c5be64484010b5c2a3183ecfbec3~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/3939c5be64484010b5c2a3183ecfbec3~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "14.98",
                              "original": "24.97",
                              "discountText": "40%",
                              "savingText": "9.99"
                            },
                            "metrics": {
                              "sold": 197022,
                              "reviews": 11206,
                              "rating": 4.5
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729527260231733767",
                            "title": "Goli Apple Cider Vinegar Gummy Vitamins, World's First - Vitamin B12, Gelatin-Free, Gluten-Free, Vegan & Non-GMO. America's #1 Apple Cider Vinegar Vitamin Brand",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729527260231733767",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1c891eebd072407d854bc98baa20d2d0~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/1c891eebd072407d854bc98baa20d2d0~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "14.96",
                              "original": "24.99",
                              "discountText": "40%",
                              "savingText": "10.03"
                            },
                            "metrics": {
                              "sold": 182143,
                              "reviews": 16300,
                              "rating": 4.5
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729659440697217543",
                            "title": "2 Bottles of Goli Top Sellers: 1 Bottle of Ashwagandha + 1 Bottle Apple Cider Vinegar Gummies Vitamins. Gelatin-Free, Gluten-Free, Vegan & Non-GMO",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729659440697217543",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8efc4d4670224886ad5621c2664c730d~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8efc4d4670224886ad5621c2664c730d~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "28.80",
                              "original": "46.52",
                              "discountText": "38%",
                              "savingText": "17.72"
                            },
                            "metrics": {
                              "sold": 125036,
                              "reviews": 11317,
                              "rating": 4.6
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729527400425427463",
                            "title": "Goli Dreamy Sleep Gummy - Melatonin, Vitamin D, Magnesium, Lemon Balm Extract, Gelatin-Free, Gluten-Free, Vegan & Non-GMO",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729527400425427463",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6079b2e5e86343af9cc94c2e778249e9~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6079b2e5e86343af9cc94c2e778249e9~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "14.96",
                              "original": "23.26",
                              "discountText": "36%",
                              "savingText": "8.30"
                            },
                            "metrics": {
                              "sold": 115521,
                              "reviews": 12322,
                              "rating": 4.4
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729527801545134599",
                            "title": "Goli Matcha Mind Gummies - Green Tea Leaves Powder with Cognizin for Focus, Attention and Brain Health, Vegan, Non-GMO, Gluten-Free & Gelatin Free",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729527801545134599",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6edd6675916349ceb590eee9317c902f~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6edd6675916349ceb590eee9317c902f~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "14.96",
                              "original": "24.99",
                              "discountText": "40%",
                              "savingText": "10.03"
                            },
                            "metrics": {
                              "sold": 112747,
                              "reviews": 8080,
                              "rating": 4.3
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          },
                          {
                            "id": "1729589255770378759",
                            "title": "3 Bottles of Goli Apple Cider Vinegar Gummy Vitamins - Vitamin B12, Gelatin-Free, Gluten-Free, Vegan & Non-GMO.",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1729589255770378759",
                            "imageUrl": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7e45ca9c541c49f39a7f36b6e76862f7~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7e45ca9c541c49f39a7f36b6e76862f7~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=837c8b87&shcp=9b759fb9&idc=useast5&from=2205977479"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "44.96",
                              "original": "57.00",
                              "discountText": "21%",
                              "savingText": "12.04"
                            },
                            "metrics": {
                              "sold": 93683,
                              "reviews": 10095,
                              "rating": 4.7
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "WzkzNjgzLCIxNzI5NTg5MjU1NzcwMzc4NzU5Il0=",
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_45f86eb8-7e88-469a-87cc-77a675f7e81d",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "shop": null,
                        "products": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_shop_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "sparse": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "shop": {
                          "id": "7495794203056835079",
                          "name": null,
                          "logoUrl": null,
                          "storeUrl": "https://www.tiktok.com/shop/store/goli-nutrition/7495794203056835079",
                          "region": "US",
                          "rating": null,
                          "soldCount": null,
                          "reviewCount": null,
                          "onSellProductCount": null,
                          "followerCount": null,
                          "videoCount": null
                        },
                        "products": [
                          {
                            "id": "1732299628898390535",
                            "title": "Goli Restore Kit - 1 Silk Pillow Case & 1 Silk Eye Mask",
                            "description": null,
                            "url": "https://www.tiktok.com/shop/pdp/1732299628898390535",
                            "imageUrl": "https://p16.example.com/p.webp",
                            "image": {
                              "width": 500,
                              "height": 500,
                              "url": "https://p16.example.com/p.webp"
                            },
                            "shipFrom": null,
                            "trustLabel": null,
                            "labels": [],
                            "price": {
                              "currencyCode": "USD",
                              "currencySymbol": "$",
                              "current": "99.98",
                              "original": null,
                              "discountText": null,
                              "savingText": null
                            },
                            "metrics": {
                              "sold": 3076,
                              "reviews": null,
                              "rating": null
                            },
                            "shop": {
                              "id": "7495794203056835079",
                              "name": null,
                              "logoUrl": null
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_shop_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/products": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok Shop product",
        "description": "Get details for a TikTok Shop product.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public TikTok Shop product detail page URL for the product to retrieve."
            },
            "required": true,
            "description": "Public TikTok Shop product detail page URL for the product to retrieve.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "US",
                "GB",
                "DE",
                "FR",
                "IT",
                "ID",
                "MY",
                "MX",
                "PH",
                "SG",
                "ES",
                "TH",
                "VN",
                "BR",
                "JP",
                "IE"
              ],
              "description": "Optional country or region code for the product catalog. When omitted, the default catalog region applies."
            },
            "required": false,
            "description": "Optional country or region code for the product catalog. When omitted, the default catalog region applies.",
            "name": "region",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Product detail for the given product page URL.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "product": {
                          "type": "object",
                          "properties": {},
                          "additionalProperties": {
                            "nullable": true
                          },
                          "description": "Product detail data from the catalog, when the product page could be resolved."
                        }
                      },
                      "required": [
                        "product"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "product_detail": {
                    "value": {
                      "data": {
                        "product": {
                          "product_id": "1729587769570529799",
                          "status": 1,
                          "seller": {
                            "seller_id": "7495794203056835079",
                            "name": "Goli Nutrition",
                            "avatar": {
                              "height": 300,
                              "width": 300,
                              "uri": "tos-useast5-i-omjb5zjo8w-tx/e7478d3e93d4487a9e772fa74e10f506",
                              "url_list": [
                                "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7478d3e93d4487a9e772fa74e10f506~tplv-fhlh96nyum-resize-png:300:300.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e7478d3e93d4487a9e772fa74e10f506~tplv-fhlh96nyum-resize-png:300:300.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                              ]
                            },
                            "product_count": 57,
                            "rating": "4.6",
                            "link": "aweme://user/profile/6990310143721063429?sec_uid=MS4wLjABAAAAhlkvPZNSvogKlDmRR2aOLXjfCyM4CWsu9swZMDLkHfWF9tp_H8I_heJT81fCIdEq&from_scene=8",
                            "im_schema": "aweme://lynxview?bdhm_bid=pigeon_i18n_lynx&bundle=chat%2Ftemplate.js&channel=fe_tiktok_ecommerce_chat_lynx&dark_mode_reload=1&enable_canvas=1&enable_code_cache=1&enable_dynamic_v8=1&enable_prefetch=1&group=seller_im&hide_nav_bar=1&init_page_data=%7B%22show_pre_form%22%3Afalse%7D&keyboard_adjust=0&opt_title=0&orderId=0&productId=1729587769570529799&screen_orientation=auto&shopId=7495794203056835079&source=1&status_bar_color=black&surl=https%3A%2F%2Fsf-teko-source.tiktokcdn-us.com%2Fobj%2Fbyte-gurd-source-tx%2Fecom%2Fchat%2Fmlynx%2Ffe_tiktok_ecommerce_chat_lynx%2Fchat%2Ftemplate.js%3Fgroup%3Dseller_im&trans_status_bar=1&use_forest=1&use_spark=1",
                            "status": 2,
                            "seller_location": "United States of America",
                            "shop_link": "aweme://ec/store?sellerId=7495794203056835079&url_maker=shop_schema_sdk&store_page_version=2",
                            "store_label": {
                              "official_label": {
                                "label_image_light": {
                                  "height": 36,
                                  "width": 36,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png~tplv-fhlh96nyum-resize-png:36:36.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png~tplv-fhlh96nyum-resize-png:36:36.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                  ]
                                },
                                "label_image_dark": {
                                  "height": 36,
                                  "width": 36,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png~tplv-fhlh96nyum-resize-png:36:36.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/store_blue_v_fixed.png~tplv-fhlh96nyum-resize-png:36:36.png?dr=12184&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                  ]
                                },
                                "label_type": 3,
                                "label_type_str": "blue_v",
                                "position": 1
                              },
                              "store_identity_label": {
                                "store_identity_label": 2,
                                "identity_label_data": {
                                  "identity_logo": {
                                    "height": 144,
                                    "width": 144,
                                    "mimetype": "image/png",
                                    "uri": "tos-useast5-i-omjb5zjo8w-tx/e6ee5e25d8a049b39c897d02fe9d3fd4",
                                    "url_list": [
                                      "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6ee5e25d8a049b39c897d02fe9d3fd4~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                      "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6ee5e25d8a049b39c897d02fe9d3fd4~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                    ]
                                  },
                                  "identity_logo_dark": {
                                    "height": 144,
                                    "width": 144,
                                    "mimetype": "image/png",
                                    "uri": "tos-useast5-i-omjb5zjo8w-tx/884194976a2c47d1937a1af6e850f18b",
                                    "url_list": [
                                      "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/884194976a2c47d1937a1af6e850f18b~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                      "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/884194976a2c47d1937a1af6e850f18b~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                    ]
                                  },
                                  "identity_label_bg_color": "#000000",
                                  "identity_label_bg_color_dark": "#FFFFFF",
                                  "identity_label_text": "OFFICIAL SHOP",
                                  "identity_label_text_color": "#FFFFFF",
                                  "identity_label_text_color_dark": "#000000",
                                  "explanation_schema": "aweme://lynxview_popup?url=https%3A%2F%2Flf16-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ftiktok_ecommerce_mall_brand_explanation_runtime%2Fbrand-explanation-page%2Ftemplate.js&use_new_container=1&use_spark=1&target_handler=webcast%2Cecom&trans_status_bar=1&hide_nav_bar=1&status_font_mode=light&enable_prefetch=1&enable_code_cache=1&show_mask=1&mask_bg_color=00000080&height_percent=90&bdhm_bid=astro_behavior_lynx&btm_page_code=b7749&enable_lynx_prefetch=1&radius=12&transition_animation=bottom&enable_pull_down_close=1&seller_id=7495794203056835079",
                                  "shop_identity_key": "official",
                                  "style_type": 1,
                                  "identity_image_logo": {
                                    "light": {
                                      "height": 42,
                                      "width": 288,
                                      "mimetype": "image/png",
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/111dfc99d0024e58bd69d5a74a9fa0e0",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/111dfc99d0024e58bd69d5a74a9fa0e0~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/111dfc99d0024e58bd69d5a74a9fa0e0~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                      ]
                                    },
                                    "dark": {
                                      "height": 42,
                                      "width": 288,
                                      "mimetype": "image/png",
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/dfc9fbeb5d7947c2a03c60bc1750e9f4",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/dfc9fbeb5d7947c2a03c60bc1750e9f4~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/dfc9fbeb5d7947c2a03c60bc1750e9f4~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=905da467&shcp=6ce186a1&idc=useast5&from=2422056039"
                                      ]
                                    }
                                  }
                                },
                                "shop_identity_key": "official"
                              }
                            },
                            "shop_recommend": {
                              "is_recommend": true,
                              "model_title": "More from this shop",
                              "enter_schema": "aweme://ec/store?default_product_sort_field=1&sellerId=7495794203056835079&store_page_version=2&url_maker=shop_schema_sdk"
                            },
                            "is_hide": false,
                            "seller_detail_infos": [
                              {
                                "key": "items_num",
                                "count_show_content": "57",
                                "count": 57,
                                "content": "Products"
                              },
                              {
                                "key": "sales_num",
                                "count_show_content": "5.3M",
                                "count": 5314561,
                                "content": "Sold"
                              },
                              {
                                "key": "response_rate",
                                "count_show_content": "99%",
                                "count": 99,
                                "content": "chat response",
                                "head_tag": "High"
                              },
                              {
                                "key": "delivery_rate",
                                "count_show_content": "0%",
                                "count": 0,
                                "content": "ships on time"
                              },
                              {
                                "key": "review_num",
                                "count_show_content": "382.6K",
                                "count": 382550,
                                "content": "reviews"
                              },
                              {
                                "key": "followers_num",
                                "count_show_content": "542.0K+",
                                "count": 542080,
                                "content": "Followers"
                              }
                            ],
                            "exp_rate_percentile": 93,
                            "unread_message_count": 0,
                            "im_button_text": "Message",
                            "im_type": 1,
                            "shop_performance": {
                              "shop_performance_title": "Shop performance",
                              "shop_performance_content": "Better than 93% of other shops",
                              "shop_performance_value": 93,
                              "detailed_metrics": [
                                {
                                  "type": 1,
                                  "description": "4+ star rating",
                                  "value": 89
                                },
                                {
                                  "type": 3,
                                  "description": "Responds within 24 hours",
                                  "value": 99
                                }
                              ],
                              "detail_page_entry_text": "Learn more",
                              "detail_page_url": "sslocal://lynxview_popup?__live_platform__=webcast&height=75%25&is_new_version=1&loading_bg_color=ffffff&loading_bg_color_dark=121212&mask_bg_color=161823bf&radius=12&seller_id=7495794203056835079&show_mask=1&target_handler=webcast&transition_animation=bottom&url=https%3A%2F%2Flf19-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ftiktok_live_ecommerce_shop_rank%2Fpages%2Fshop-rank-page%2Ftemplate.js&use_present=1&use_spark=1"
                            },
                            "rating_value": 4.6,
                            "is_new_ses_experience": true,
                            "shop_background": {
                              "image": {
                                "height": 1732,
                                "width": 1805,
                                "uri": "tos-useast5-i-reeeghz8mm-tx/aed6009862d24fe993d057653f952ce2",
                                "url_list": [
                                  "https://p16-oec-shop-sign.tiktokcdn-us.com/tos-useast5-i-reeeghz8mm-tx/aed6009862d24fe993d057653f952ce2~tplv-reeeghz8mm-image-webp.webp?lk3s=905da467&x-expires=1779607000&x-signature=omiyRfuR6U0ybUQTYYvI11Kmc2Q%3D"
                                ]
                              },
                              "shop_background_type": 0
                            },
                            "visit_shop_text": {
                              "template": "Visit shop",
                              "text_attribute": {
                                "link": "aweme://ec/store?sellerId=7495794203056835079&url_maker=shop_schema_sdk&store_page_version=2",
                                "font": {
                                  "font_weight": 1,
                                  "font_class": 6
                                },
                                "font_color": {
                                  "color": "#FF2B5DB9",
                                  "dark_color": "#FF60B3FF"
                                }
                              }
                            },
                            "enable_new_shop_entrance": true,
                            "sold_item_description": {
                              "title": "Items sold",
                              "contents": [
                                {
                                  "template": "{{template}}",
                                  "arguments": {
                                    "{{template}}": {
                                      "text_attribute": {
                                        "text": "The number of items sold globally since this item was listed on TikTok Shop excluding items that have been returned.",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 3
                                        },
                                        "font_color": {
                                          "color": "B8000000",
                                          "dark_color": "C0FFFFFF"
                                        }
                                      }
                                    }
                                  }
                                }
                              ]
                            },
                            "shop_identity_experiment": 2,
                            "shop_performance_info": {
                              "performance_metrics": [
                                {
                                  "type": 1,
                                  "value": "89%",
                                  "description": "Positive feedback",
                                  "platform_rate_type": 0
                                },
                                {
                                  "type": 2,
                                  "value": "-",
                                  "description": "Ships within 48h",
                                  "platform_rate_type": 0
                                },
                                {
                                  "type": 3,
                                  "value": "99%",
                                  "description": "24h response rate",
                                  "platform_rate_type": 0
                                }
                              ],
                              "detail_page_url": "sslocal://lynxview_popup?__live_platform__=webcast&height=75%25&is_new_version=1&loading_bg_color=ffffff&loading_bg_color_dark=121212&mask_bg_color=161823bf&radius=12&seller_id=7495794203056835079&show_mask=1&target_handler=webcast&transition_animation=bottom&url=https%3A%2F%2Flf19-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ftiktok_live_ecommerce_shop_rank%2Fpages%2Fshop-rank-page%2Ftemplate.js&use_present=1&use_spark=1"
                            },
                            "sales_info": {
                              "key": "sales_num",
                              "count_show_content": "5.3M",
                              "count": 5314561,
                              "content": "sold"
                            },
                            "half_pdp_shop_entrance_experiment": 1,
                            "half_pdp_store_identity_text": {
                              "template": "OFFICIAL SHOP",
                              "text_attribute": {
                                "font": {
                                  "font_weight": 2,
                                  "font_class": 8
                                },
                                "font_color": {
                                  "color": "#FFFFFFFF",
                                  "dark_color": "#FFFFFFFF"
                                }
                              }
                            },
                            "pdp_enable_shop_follow_voucher": false,
                            "enable_nav_bar_shop_avatar": false,
                            "enable_shop_follow": false,
                            "shop_identity_experiment_pdp_style": 0
                          },
                          "product_base": {
                            "title": "3 Bottles of Goli Ashwagandha & Vitamin D Gummy - Mixed Berry, KSM-66, Vegan, Plant Based, Non-GMO, Gluten & Gelatin Free",
                            "images": [
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              },
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/f14272ec92ff4d06996daf72fab0ae5b~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              },
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/35caa171a9874ecd987b7a23fa4ea0a0~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              },
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2d29de38f3db4952ae05b035d74199d7~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              },
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/39ba2aec8d2942448994259eac7ccf79~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              },
                              {
                                "height": 800,
                                "width": 800,
                                "mimetype": "",
                                "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f",
                                "thumb_url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f~tplv-fhlh96nyum-crop-webp:200:200.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "uri": "tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f",
                                "url_list": [
                                  "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                  "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/67de2dc4d5e44cc2945f189da37e8e5f~tplv-fhlh96nyum-crop-webp:800:800.webp?dr=12190&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                ],
                                "color": "",
                                "size": "",
                                "tint_color": "",
                                "blurhash": "",
                                "ratio": 1,
                                "remove_gap": "",
                                "size_type": 2
                              }
                            ],
                            "specifications": [
                              {
                                "name": "Brand",
                                "value": "Goli"
                              },
                              {
                                "name": "Region Of Origin",
                                "value": "US"
                              },
                              {
                                "name": "Age Warning",
                                "value": "No"
                              },
                              {
                                "name": "Manufacturer",
                                "value": "Goli Nutrition Inc"
                              },
                              {
                                "name": "Ingredients",
                                "value": "vitamin D2"
                              }
                            ],
                            "sold_count": 853864,
                            "price": {
                              "original_price": "$74.94",
                              "real_price": "$44.98",
                              "discount": "-40%",
                              "need_icon": false,
                              "is_interval_price": false,
                              "show_hot_zone": false,
                              "min_sku_price": "44.98",
                              "currency": "USD",
                              "min_sku_original_price": "74.94",
                              "panel_schema": "",
                              "currency_symbol": "$",
                              "symbol_position": 1,
                              "real_price_decimal": "",
                              "da_info": "{\"price_show_tag\":\"\",\"discount_percentage\":\"40\"}"
                            },
                            "category_name": "Health",
                            "has_size_chart": false,
                            "voucher_reminder": {
                              "title": "Coupon",
                              "spu_deduction_text": "Extra 60% off (up to $15)",
                              "schema": "aweme://roma_redirect/?spark_page=roma_schema_pdp_coupon_panel&roma_group_key=spark_page_roma_schema_pdp_coupon_panel&roma_page_key=p&coupon_ui_style=2&list_ui_style=2&product_id=1729587769570529799&panel_scene=1"
                            },
                            "is_gift": false,
                            "pre_order_type": 0,
                            "sales_type": 1,
                            "combined_sales_volume": {
                              "sales_text": {
                                "template": "{{X}} sold",
                                "arguments": {
                                  "{{X}}": {
                                    "text": "853.9K",
                                    "is_bold": false,
                                    "color": "#FF000000",
                                    "dark_color": "#FFF6F6F6"
                                  }
                                },
                                "text_color": "#FF000000",
                                "text_dark_color": "#FFF6F6F6"
                              },
                              "sales_text_ec_richtext": {
                                "template": "{{X}} sold",
                                "arguments": {
                                  "{{X}}": {
                                    "text_attribute": {
                                      "text": "853.9K",
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  }
                                },
                                "text_attribute": {
                                  "font": {
                                    "font_weight": 1,
                                    "font_class": 6
                                  },
                                  "font_color": {
                                    "color": "#FF000000",
                                    "dark_color": "#FFF6F6F6"
                                  }
                                }
                              }
                            },
                            "min_price": {},
                            "show_free_shipping_tag": false,
                            "promotion_extra_info": {
                              "voucher_reminder": {
                                "title": "Coupon",
                                "spu_deduction_text": "Extra 60% off (up to $15)",
                                "schema": "aweme://roma_redirect/?spark_page=roma_schema_pdp_coupon_panel&roma_group_key=spark_page_roma_schema_pdp_coupon_panel&roma_page_key=p&coupon_ui_style=2&list_ui_style=2&product_id=1729587769570529799&panel_scene=1"
                              },
                              "promotion_type": 1,
                              "da_info": "{\"benefit_type\":\"max_discount_amount\",\"coupon_type_id\":\"7636872378869679886\",\"coupon_type_info\":\"{\\\"cost_role\\\":\\\"platform\\\",\\\"business_type\\\":\\\"no_min_discount\\\",\\\"user_type\\\":\\\"all\\\",\\\"channel\\\":\\\"all\\\",\\\"task_type\\\":\\\"\\\",\\\"use_channel\\\":\\\"all\\\",\\\"extra_info\\\":\\\"\\\",\\\"coupon_enhance_info\\\":\\\"\\\"}\",\"max_discount_amount\":true,\"module_name\":\"discount_reminder\",\"coupon_id\":\"-1\"}"
                            },
                            "desc_detailv3": {
                              "ec_rich_blocks": [
                                {
                                  "rich_block_type": 3,
                                  "xl_ec_rich_text": {
                                    "xl_type": 1,
                                    "ec_rich_texts": [
                                      {
                                        "template": "{{R29sa_0}}{{R29sa_1}}{{R29sa_2}}{{R29sa_3}}",
                                        "arguments": {
                                          "{{R29sa_0}}": {
                                            "text_attribute": {
                                              "text": "Goli Nutrition",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{R29sa_1}}": {
                                            "text_attribute": {
                                              "text": " has sold over ",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{R29sa_2}}": {
                                            "text_attribute": {
                                              "text": "90 Million",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{R29sa_3}}": {
                                            "text_attribute": {
                                              "text": " bottles of gummy vitamins.",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          }
                                        },
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        },
                                        "text_alignment": 1
                                      }
                                    ]
                                  }
                                },
                                {
                                  "rich_block_type": 1,
                                  "image": {
                                    "height": 430,
                                    "width": 800,
                                    "uri": "tos-useast8-i-rt0ujvrtvp-tx2/242db829661948d2a0ec2424415be0c9",
                                    "url_list": [
                                      "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/242db829661948d2a0ec2424415be0c9~tplv-fhlh96nyum-resize-webp:800:430.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                      "https://p19-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/242db829661948d2a0ec2424415be0c9~tplv-fhlh96nyum-resize-webp:800:430.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                    ],
                                    "remove_gap": "false"
                                  }
                                },
                                {
                                  "rich_block_type": 3,
                                  "xl_ec_rich_text": {
                                    "xl_type": 1,
                                    "ec_rich_texts": [
                                      {
                                        "template": "{{VmVnY_0}}{{VmVnY_1}}{{VmVnY_2}}",
                                        "arguments": {
                                          "{{VmVnY_0}}": {
                                            "text_attribute": {
                                              "text": "Vegan, Non-GMO, Gluten-free & Gelatin-free:",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{VmVnY_1}}": {
                                            "text_attribute": {
                                              "text": " Each bottle of Goli contains 60 delicious, vegan, non-gmo, gluten-free & gelatin-free Apple Cider Vinegar gummies, which makes them suitable for almost any lifestyle. ",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{VmVnY_2}}": {
                                            "text_attribute": {
                                              "text": "No Artificial Flavors, No Artificial Colors, Allergen-Free.",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          }
                                        },
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        },
                                        "text_alignment": 1
                                      },
                                      {
                                        "template": "{{S1NNL_0}}{{S1NNL_1}}{{S1NNL_2}}{{S1NNL_3}}",
                                        "arguments": {
                                          "{{S1NNL_0}}": {
                                            "text_attribute": {
                                              "text": "KSM-66 Ashwagandha",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{S1NNL_1}}": {
                                            "text_attribute": {
                                              "text": " Gummies. Ashwagandha is an herb that provides an array of benefits. Goli Ashwa Gummies use KSM-66 Ashwagandha, a highly bioavailable, full-spectrum root extract. Ashwa Gummies highlight a holistic approach to overall health. KSM-66 Ashwagandha is shown to help: ",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{S1NNL_2}}": {
                                            "text_attribute": {
                                              "text": "Reduce Stress and Promote Relaxation, Support Sleep Quality, Maintain Quality of Life, and more. ",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{S1NNL_3}}": {
                                            "text_attribute": {
                                              "text": "Relax, Restore, and Unwind* with Goli Ashwa Gummies.",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          }
                                        },
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        },
                                        "text_alignment": 1
                                      },
                                      {
                                        "template": "{{Vml0Y_0}}{{Vml0Y_1}}",
                                        "arguments": {
                                          "{{Vml0Y_0}}": {
                                            "text_attribute": {
                                              "text": "Vitamin Angels:",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{Vml0Y_1}}": {
                                            "text_attribute": {
                                              "text": " Goli Nutrition has donated a 6-month supply of essential vitamins to over 10 million children in need.",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          }
                                        },
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        },
                                        "text_alignment": 1
                                      },
                                      {
                                        "template": "{{TWFkZ_0}}{{TWFkZ_1}}",
                                        "arguments": {
                                          "{{TWFkZ_0}}": {
                                            "text_attribute": {
                                              "text": "Made in the USA with locally and globally sourced ingredients. ",
                                              "font": {
                                                "font_weight": 3,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          },
                                          "{{TWFkZ_1}}": {
                                            "text_attribute": {
                                              "text": "Goli Gummies are made in allergen-free, cGMP certified facilities in the United States with local and globally sourced ingredients to ensure that our products are reputable and of the highest quality standards.",
                                              "font": {
                                                "font_weight": 1,
                                                "font_class": 4
                                              },
                                              "has_underline": false,
                                              "is_italic": false
                                            }
                                          }
                                        },
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        },
                                        "text_alignment": 1
                                      }
                                    ]
                                  }
                                },
                                {
                                  "rich_block_type": 1,
                                  "image": {
                                    "height": 476,
                                    "width": 800,
                                    "uri": "tos-useast8-i-rt0ujvrtvp-tx2/08e3d13cc5c84b3cb6a20ae46f816fa4",
                                    "url_list": [
                                      "https://p16-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/08e3d13cc5c84b3cb6a20ae46f816fa4~tplv-fhlh96nyum-resize-webp:800:476.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                      "https://p19-oec-general-useast8.ttcdn-us.com/tos-useast8-i-rt0ujvrtvp-tx2/08e3d13cc5c84b3cb6a20ae46f816fa4~tplv-fhlh96nyum-resize-webp:800:476.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                    ],
                                    "remove_gap": "false"
                                  }
                                },
                                {
                                  "rich_block_type": 2,
                                  "ec_rich_text": {
                                    "template": "Seller information",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 4
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#E6FFFFFF"
                                      }
                                    }
                                  }
                                },
                                {
                                  "rich_block_type": 3,
                                  "xl_ec_rich_text": {
                                    "xl_type": 1,
                                    "ec_rich_texts": [
                                      {
                                        "template": "Business name: Goli Nutrition Inc.",
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        }
                                      },
                                      {
                                        "template": "Business address: 8430 Santa Monica Blvd,West Hollywood,California,90069",
                                        "text_attribute": {
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 4
                                          },
                                          "font_color": {
                                            "color": "#FF000000",
                                            "dark_color": "#E6FFFFFF"
                                          }
                                        }
                                      }
                                    ]
                                  }
                                }
                              ]
                            },
                            "price_v2": [
                              {
                                "price_type": 0,
                                "min_price": {
                                  "sku_id": "1729587788239049223",
                                  "currency_name": "USD",
                                  "currency_symbol": "$",
                                  "symbol_position": 1,
                                  "sale_price_decimal": "44.98",
                                  "origin_price_decimal": "74.94",
                                  "sale_price_format": "44.98",
                                  "origin_price_format": "74.94",
                                  "discount_format": "40%",
                                  "discount_decimal": "0.4",
                                  "price_prefix": "",
                                  "reduce_price_format": "Saving $29.96",
                                  "single_product_price_format": "44.98",
                                  "single_product_price_decimal": "44.98",
                                  "show_currency_space": false,
                                  "currency_show_mode": 1,
                                  "unit_price_desc": "",
                                  "post_seller_pre_platform_coupon_price": "",
                                  "price_display_mode": 0,
                                  "sale_price_integer_part_format": "44",
                                  "sale_price_decimal_part_format": "98",
                                  "decimal_point_symbol": ".",
                                  "deposit_price_amount": "",
                                  "after_coupon_price_format": "",
                                  "after_coupon_price_decimal": "",
                                  "after_coupon_price_integer_part_format": "",
                                  "after_coupon_price_decimal_part_format": "",
                                  "price_serialized_extra": ""
                                }
                              },
                              {
                                "price_type": 1,
                                "min_price": {
                                  "sku_id": "1729587788239049223",
                                  "currency_name": "USD",
                                  "currency_symbol": "$",
                                  "symbol_position": 1,
                                  "sale_price_decimal": "40.48",
                                  "origin_price_decimal": "74.94",
                                  "sale_price_format": "40.48",
                                  "origin_price_format": "74.94",
                                  "discount_format": "46%",
                                  "discount_decimal": "0.46",
                                  "price_prefix": "",
                                  "reduce_price_format": "Saving $34.46",
                                  "single_product_price_format": "40.48",
                                  "single_product_price_decimal": "40.48",
                                  "show_currency_space": false,
                                  "currency_show_mode": 1,
                                  "unit_price_desc": "",
                                  "post_seller_pre_platform_coupon_price": "",
                                  "price_display_mode": 0,
                                  "sale_price_integer_part_format": "40",
                                  "sale_price_decimal_part_format": "48",
                                  "decimal_point_symbol": ".",
                                  "deposit_price_amount": "",
                                  "after_coupon_price_format": "",
                                  "after_coupon_price_decimal": "",
                                  "after_coupon_price_integer_part_format": "",
                                  "after_coupon_price_decimal_part_format": "",
                                  "price_serialized_extra": ""
                                }
                              }
                            ],
                            "default_selected_purchase_type": 0,
                            "is_price_hidden": false,
                            "price_desc_detail": {
                              "price_desc_detail_items": [
                                {
                                  "title": "",
                                  "sub_title": {
                                    "template": "Items on TikTok Shop may display a strikethrough price in search results and on product detail pages. TikTok Shop bases strikethrough savings off of a list price. The list price (also known as the manufacturer's suggested retail price, or MSRP) is the suggested retail price of a new product as provided by a manufacturer, supplier, or seller. List prices may not necessarily reflect the prevailing market price of a product.",
                                    "arguments": {
                                      "{{Terms}}": {
                                        "link_text_type": 0,
                                        "text_attribute": {
                                          "text": "",
                                          "font": {
                                            "font_weight": 2,
                                            "font_class": 5
                                          }
                                        }
                                      }
                                    },
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 4
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  }
                                }
                              ],
                              "da_info": "{\"button_name\":\"item_price_info\",\"discount_percentage\":\"0.4\"}"
                            },
                            "bnpl_display_info": "{\"display_info\":{\"template\":\"4 interest-free payments of $11.24 with  \",\"text_attribute\":{\"font\":{\"font_weight\":1,\"font_class\":5},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#E6FFFFFF\"}}},\"partners\":{\"template\":\"{{klarna_us}} \",\"arguments\":{\"{{klarna_us}}\":{\"link_text_type\":1,\"icon_attribute\":{\"size\":{\"width\":40,\"height\":17},\"icon\":{\"icon\":{\"height\":17,\"width\":40,\"uri\":\"tos-maliva-i-o3syd03w52-us/bnpl-klarna-light.png\",\"url_list\":[\"https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/bnpl-klarna-light.png~tplv-fhlh96nyum-resize-png:120:51.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=7745054a&idc=useast5&from=1826719393\",\"https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/bnpl-klarna-light.png~tplv-fhlh96nyum-resize-png:120:51.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=7745054a&idc=useast5&from=1826719393\"]},\"icon_dark\":{\"height\":17,\"width\":40,\"uri\":\"tos-maliva-i-o3syd03w52-us/bnpl-klarna-dark.png\",\"url_list\":[\"https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/bnpl-klarna-dark.png~tplv-fhlh96nyum-resize-png:120:51.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=7745054a&idc=useast5&from=1826719393\",\"https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/bnpl-klarna-dark.png~tplv-fhlh96nyum-resize-png:120:51.png?dr=12184&t=555f072d&ps=933b5bde&shp=6ce186a1&shcp=7745054a&idc=useast5&from=1826719393\"]},\"view_width\":40,\"view_height\":17}}}}},\"terms\":{\"template\":\"Terms\",\"text_attribute\":{\"font\":{\"font_weight\":1,\"font_class\":5},\"has_underline\":true,\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#E6FFFFFF\"}}},\"disclaimer_title\":{\"template\":\"About Pay in 4\"},\"disclaimer_contents\":[{\"template\":\"See payment terms at: {{klarna_us}} A higher initial payment may be required for some consumers. CA resident loans are made or arranged pursuant to a California Financing Law license. NMLS # 1353190.\",\"arguments\":{\"{{klarna_us}}\":{\"link_text_type\":0,\"text_attribute\":{\"text\":\"https://cdn.klarna.com/1.0/shared/content/legal/terms/0/en_us/sliceitinx\",\"link\":\"https://cdn.klarna.com/1.0/shared/content/legal/terms/0/en_us/sliceitinx\",\"has_underline\":true,\"font_color\":{\"color\":\"#0075DB\",\"dark_color\":\"#60B3FF\"}}}},\"text_attribute\":{\"font\":{\"font_weight\":1,\"font_class\":4},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#E6FFFFFF\"}}}]}",
                            "price_detail": "{\"price_desc_detail_items\":[{\"title\":\"\",\"sub_title\":{\"template\":\"Items on TikTok Shop may display a strikethrough price in search results and on product detail pages. TikTok Shop bases strikethrough savings off of a list price. The list price (also known as the manufacturer's suggested retail price, or MSRP) is the suggested retail price of a new product as provided by a manufacturer, supplier, or seller. List prices may not necessarily reflect the prevailing market price of a product.\",\"arguments\":{\"{{Terms}}\":{\"link_text_type\":0,\"text_attribute\":{\"text\":\"\",\"font\":{\"font_weight\":2,\"font_class\":5}}}},\"text_attribute\":{\"font\":{\"font_weight\":1,\"font_class\":4},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#FFF6F6F6\"}}}}],\"da_info\":\"{\\\"button_name\\\":\\\"item_price_info\\\",\\\"discount_percentage\\\":\\\"0.4\\\"}\"}",
                            "category_id": "700645",
                            "is_bundle": false,
                            "is_header_find_similar_hidden": false,
                            "is_gallery_find_similar_hidden": false
                          },
                          "sale_props": [
                            {
                              "prop_id": "6978684608401540870",
                              "prop_name": "Specification",
                              "has_image": false,
                              "sale_prop_values": [
                                {
                                  "prop_value_id": "6932748025291032321",
                                  "prop_value": "Default"
                                }
                              ],
                              "has_extended_images": false,
                              "available_prop_type_display": "1 options available",
                              "is_top_sku": false
                            }
                          ],
                          "skus": [
                            {
                              "sku_id": "1729587788239049223",
                              "sku_sale_props": [
                                {
                                  "prop_id": "6978684608401540870",
                                  "prop_name": "Specification",
                                  "prop_value_id": "6932748025291032321",
                                  "prop_value": "Default"
                                }
                              ],
                              "sale_prop_value_ids": "6932748025291032321",
                              "stock": 248214,
                              "purchase_limit": 20,
                              "price": {
                                "real_price": {
                                  "price_str": "$44.98",
                                  "price_val": "44.98",
                                  "currency": "USD"
                                },
                                "original_price": "$74.94",
                                "discount": "-40%",
                                "original_price_value": "74.94",
                                "need_icon": false
                              },
                              "need_icon": false,
                              "voucher_info": {
                                "best_voucher_type_ids": [
                                  "7631686706080663309",
                                  "7636872378869679886"
                                ],
                                "best_voucher_metas": [
                                  {
                                    "voucher_type_id": "7631686706080663309"
                                  },
                                  {
                                    "voucher_type_id": "7636872378869679886"
                                  }
                                ]
                              },
                              "add_to_cart_button": {
                                "status": 1,
                                "click_hint": "",
                                "available_count": 20
                              },
                              "warehouse_id": "7382962063776565034",
                              "quantity_property": {
                                "default_add_cart_quantity": 1,
                                "quantity_minus_support_edit": true
                              },
                              "buy_button": {
                                "desc": "Buy now",
                                "default_desc": "Buy now",
                                "sub_desc": "Free shipping",
                                "status": 1,
                                "da_info": "{\"campaign_type\":\"free_shipping\"}"
                              },
                              "minimum_buy_quantity": 0,
                              "promotion_limit_quantity": 0,
                              "deduction_text": "Extra 60% off (up to $15)",
                              "status": 1,
                              "pdp_button_area_id": "default",
                              "platform_promotion_id": "7636872378869679886",
                              "seller_promotion_id_list": [
                                "7631686706080663309"
                              ],
                              "need_refresh": true,
                              "price_desc_detail": {
                                "price_desc_detail_items": [
                                  {
                                    "title": "",
                                    "sub_title": {
                                      "template": "Items on TikTok Shop may display a strikethrough price in search results and on product detail pages. TikTok Shop bases strikethrough savings off of a list price. The list price (also known as the manufacturer's suggested retail price, or MSRP) is the suggested retail price of a new product as provided by a manufacturer, supplier, or seller. List prices may not necessarily reflect the prevailing market price of a product.",
                                      "arguments": {
                                        "{{Terms}}": {
                                          "link_text_type": 0,
                                          "text_attribute": {
                                            "text": "",
                                            "font": {
                                              "font_weight": 2,
                                              "font_class": 5
                                            }
                                          }
                                        }
                                      },
                                      "text_attribute": {
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 4
                                        },
                                        "font_color": {
                                          "color": "#FF000000",
                                          "dark_color": "#FFF6F6F6"
                                        }
                                      }
                                    }
                                  }
                                ],
                                "da_info": "{\"button_name\":\"item_price_info\",\"discount_percentage\":\"0.4\"}"
                              },
                              "bcm_standard_track": {
                                "track_param": {
                                  "bcm_multiverse_id": "20260517071640536908401005000000ec62f53706aade3f"
                                },
                                "chain_param": {
                                  "bcm_multiverse_id": "20260517071640536908401005000000ec62f53706aade3f"
                                }
                              },
                              "price_v2": [
                                {
                                  "price_type": 0,
                                  "min_price": {
                                    "sku_id": "1729587788239049223",
                                    "currency_name": "USD",
                                    "currency_symbol": "$",
                                    "symbol_position": 1,
                                    "sale_price_decimal": "44.98",
                                    "origin_price_decimal": "74.94",
                                    "sale_price_format": "44.98",
                                    "origin_price_format": "74.94",
                                    "discount_format": "40%",
                                    "discount_decimal": "0.4",
                                    "price_prefix": "",
                                    "reduce_price_format": "Saving $29.96",
                                    "single_product_price_format": "44.98",
                                    "single_product_price_decimal": "44.98",
                                    "show_currency_space": false,
                                    "currency_show_mode": 1,
                                    "unit_price_desc": "",
                                    "post_seller_pre_platform_coupon_price": "",
                                    "price_display_mode": 0,
                                    "sale_price_integer_part_format": "44",
                                    "sale_price_decimal_part_format": "98",
                                    "decimal_point_symbol": ".",
                                    "deposit_price_amount": "",
                                    "after_coupon_price_format": "",
                                    "after_coupon_price_decimal": "",
                                    "after_coupon_price_integer_part_format": "",
                                    "after_coupon_price_decimal_part_format": "",
                                    "price_serialized_extra": ""
                                  }
                                },
                                {
                                  "price_type": 1,
                                  "min_price": {
                                    "sku_id": "1729587788239049223",
                                    "currency_name": "USD",
                                    "currency_symbol": "$",
                                    "symbol_position": 1,
                                    "sale_price_decimal": "40.48",
                                    "origin_price_decimal": "74.94",
                                    "sale_price_format": "40.48",
                                    "origin_price_format": "74.94",
                                    "discount_format": "46%",
                                    "discount_decimal": "0.46",
                                    "price_prefix": "",
                                    "reduce_price_format": "Saving $34.46",
                                    "single_product_price_format": "40.48",
                                    "single_product_price_decimal": "40.48",
                                    "show_currency_space": false,
                                    "currency_show_mode": 1,
                                    "unit_price_desc": "",
                                    "post_seller_pre_platform_coupon_price": "",
                                    "price_display_mode": 0,
                                    "sale_price_integer_part_format": "40",
                                    "sale_price_decimal_part_format": "48",
                                    "decimal_point_symbol": ".",
                                    "deposit_price_amount": "",
                                    "after_coupon_price_format": "",
                                    "after_coupon_price_decimal": "",
                                    "after_coupon_price_integer_part_format": "",
                                    "after_coupon_price_decimal_part_format": "",
                                    "price_serialized_extra": ""
                                  }
                                }
                              ],
                              "pdp_button_area_id_v2": [
                                {
                                  "product_purchase_type": 0,
                                  "pdp_button_area_id": "default"
                                },
                                {
                                  "product_purchase_type": 1,
                                  "pdp_button_area_id": "subscribe_and_atc"
                                }
                              ],
                              "is_support_try_on": false,
                              "price_detail": "{\"price_desc_detail_items\":[{\"title\":\"\",\"sub_title\":{\"template\":\"Items on TikTok Shop may display a strikethrough price in search results and on product detail pages. TikTok Shop bases strikethrough savings off of a list price. The list price (also known as the manufacturer's suggested retail price, or MSRP) is the suggested retail price of a new product as provided by a manufacturer, supplier, or seller. List prices may not necessarily reflect the prevailing market price of a product.\",\"arguments\":{\"{{Terms}}\":{\"link_text_type\":0,\"text_attribute\":{\"text\":\"\",\"font\":{\"font_weight\":2,\"font_class\":5}}}},\"text_attribute\":{\"font\":{\"font_weight\":1,\"font_class\":4},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#FFF6F6F6\"}}}}],\"da_info\":\"{\\\"button_name\\\":\\\"item_price_info\\\",\\\"discount_percentage\\\":\\\"0.4\\\"}\"}",
                              "quantity_promotion_notice_info": {
                                "location": 0,
                                "da_info": "{\"has_promo_price_limit\":\"0\"}"
                              },
                              "da_info": "{\"delivery_flag_sku\":\"{\\\"sku_shipping_status\\\":\\\"1\\\",\\\"free_shipping_product_cnt\\\":\\\"1\\\"}\"}"
                            }
                          ],
                          "logistic": {
                            "delivery_option": 4,
                            "delivery_name": "Standard shipping",
                            "is_default": false,
                            "reachable": true,
                            "lead_time": "May 21 - May 24",
                            "shipping_fee": {
                              "price_str": "$0.00",
                              "price_val": "0",
                              "currency": "USD"
                            },
                            "free_shipping": true,
                            "logistic_text": {},
                            "logistics_service_id": "7129736060325594926",
                            "with_voucher": false,
                            "delivery_min_days": 4,
                            "delivery_max_days": 7,
                            "da_info": "{}",
                            "logistic_promotion": {},
                            "event_tracking": {
                              "delivery_type": "3pl",
                              "est_delivery_bday_min": "4",
                              "est_delivery_day_expected": "0",
                              "est_delivery_day_max": "7",
                              "est_delivery_day_min": "4",
                              "est_logistic_delivery_day_max": "0",
                              "est_logistic_delivery_day_min": "0",
                              "global_shipping": "0",
                              "is_1_day_shipping": "0",
                              "is_display_fastest": "0",
                              "is_instant_tag": "0",
                              "is_late_guarantee": "0",
                              "is_next_day_delivery": "0",
                              "is_ontime_compensation_show": "0",
                              "logistics_test_info_v2": "{\"e_l\":\"medium\",\"edt_before_strategy\":\"4-7\",\"g_id\":\"75646951\",\"s_i\":\"75646951\"}",
                              "select_service_id": "7129736060325594926",
                              "ship_from": "local",
                              "shipping_currency": "USD",
                              "shipping_price": "0",
                              "shipping_price_after_coupon": "0",
                              "shipping_price_origin": "7.95",
                              "shipping_type": "send_by_seller"
                            },
                            "original_shipping_val": "7.95",
                            "transit_delivery_min_days": 0,
                            "transit_delivery_max_days": 0,
                            "leadtime_display_strategy": {
                              "display_edt": true,
                              "display_tts_delivery": false
                            },
                            "cod_available": false,
                            "logistics_labels": [
                              {
                                "label_type": 4
                              }
                            ]
                          },
                          "product_detail_review": {
                            "product_rating": 4.7,
                            "review_count": 70843,
                            "review_items": [
                              {
                                "review": {
                                  "review_id": "7438637216936658730",
                                  "rating": 5,
                                  "display_text": "Love Ashwagandha and this 3 bundle deal! Am able to avoid that daily wired but tired feeling! Now, I can get going pretty easily or relax when I need to most! And, I couldn't be happier with these! They taste great, are easy to take daily and arrive in the mail quickly! Don't miss out on this deal!",
                                  "images": [
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    }
                                  ],
                                  "review_timestamp": "1731942708758",
                                  "has_origin_text": true,
                                  "display_review_text": [
                                    {
                                      "text_type": 1,
                                      "plain_text": "Love Ashwagandha and this 3 bundle deal! Am able to avoid that daily wired but tired feeling! Now, I can get going pretty easily or relax when I need to most! And, I couldn't be happier with these! They taste great, are easy to take daily and arrive in the mail quickly! Don't miss out on this deal!"
                                    }
                                  ],
                                  "media": [
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/55a24080eda248a89b23490c1fb527f2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fb3c12c7d0b4696b8616d3a94bf0f4b~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0e5bf4a986be4f5bbfa099167537d092~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/0c8a6b958e664052a3389de178e04ed8~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/2aa16d6c872942129f4e327cbb552a18~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/e6b4e024427c4be8adf6e0ad2acb2705~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    }
                                  ],
                                  "review_timestamp_fmt": "November 18, 2024",
                                  "main_review_title": ""
                                },
                                "sku_id": "1729587788239049223",
                                "sku_specification": "Item: Default",
                                "review_user": {
                                  "name": "Faith",
                                  "avatar": {
                                    "url_list": [
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/26185bdfbb70baa9563d2c8279ea8e6c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=c4fe31ee&x-expires=1779174000&x-signature=evFazaCsgzWOMQpxv3b3s3FYEtI%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/26185bdfbb70baa9563d2c8279ea8e6c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=2d7228e7&x-expires=1779174000&x-signature=tRYXgZzISrVvZ0e0UDgsni8DYR0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/26185bdfbb70baa9563d2c8279ea8e6c~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=9d37919a&x-expires=1779174000&x-signature=wZIvD%2FnW02STunoJo2TBrF6m2OE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                                    ]
                                  },
                                  "link": "aweme://user/profile/7038016370370741254?sec_uid=MS4wLjABAAAAVOWtDIljGPssMrxH3ryJDsV38k5qy9jkahojHt7V9vRIUZ-NqMV4BovNID2ivji0&from_scene=8"
                                },
                                "is_owner": false,
                                "is_anonymous": false,
                                "review_source_type": 0,
                                "review_source_name": "Purchased on TikTok",
                                "link": "",
                                "is_updated": false,
                                "third_party_popup_title": "",
                                "third_party_popup_content": "",
                                "third_party_popup_button_text": "",
                                "da_info": "{}"
                              },
                              {
                                "review": {
                                  "review_id": "7479007616362989354",
                                  "rating": 5,
                                  "display_text": "Performance: Works great I love this it helps with my stress it helps just with everyday things and knowing that I have it helps me not worry if that makes sense but it is wonderful and it tastes very good I can't wait to order more\nFlavor: The flavor is a great flavor whoever came up with it was amazing",
                                  "images": [
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    }
                                  ],
                                  "review_timestamp": "1741342210021",
                                  "has_origin_text": true,
                                  "display_review_text": [
                                    {
                                      "text_type": 2,
                                      "tag_key": "Performance",
                                      "tag_text": "Works great I love this it helps with my stress it helps just with everyday things and knowing that I have it helps me not worry if that makes sense but it is wonderful and it tastes very good I can't wait to order more"
                                    },
                                    {
                                      "text_type": 2,
                                      "tag_key": "Flavor",
                                      "tag_text": "The flavor is a great flavor whoever came up with it was amazing"
                                    }
                                  ],
                                  "media": [
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/cd04fb624c44484c87ea39bfcacef274~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/64872c8a56384a68a161d31cce0cc765~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/c680b8ca5ed043ce93c086770f4d2398~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/7fdc85afd7a94e25ba5029bd57a765c2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/8f9cdc483d0c49b285fa272f64696b7a~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    }
                                  ],
                                  "review_timestamp_fmt": "March 7, 2025",
                                  "main_review_title": ""
                                },
                                "sku_id": "1729587788239049223",
                                "sku_specification": "Item: Default",
                                "review_user": {
                                  "name": "MyGiirlGG",
                                  "avatar": {
                                    "url_list": [
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7344556050042847274~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=08286343&x-expires=1779174000&x-signature=De8zZwRavL5g5jLt7rnG8mS3Ap0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7344556050042847274~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=2fc17601&x-expires=1779174000&x-signature=y5%2F%2FPxR1W5Kv1%2B1rMtwBcYGkJfc%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7344556050042847274~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=edfdc677&x-expires=1779174000&x-signature=nNPnSdbwWsO4Py9aGUz5AOiRB5A%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                                    ]
                                  },
                                  "link": "aweme://user/profile/7344555394293957674?sec_uid=MS4wLjABAAAAzwcPLThezZVMbZcOAinyjIIxzoxvTgfX1lc2SsdZbBmHNmblDHTYOXoO_wY7NRXd&from_scene=8"
                                },
                                "is_owner": false,
                                "is_anonymous": false,
                                "review_source_type": 0,
                                "review_source_name": "Purchased on TikTok",
                                "link": "",
                                "is_updated": false,
                                "third_party_popup_title": "",
                                "third_party_popup_content": "",
                                "third_party_popup_button_text": "",
                                "da_info": "{}"
                              },
                              {
                                "review": {
                                  "review_id": "7440144419862644523",
                                  "rating": 5,
                                  "display_text": "Excellent my whole family is taking these! Must have! \nESP. Hashimoto’s \nTaste is very berry!\n10/10 recommendation! \n\nApproximately size of a nickel, berry lil tart taste, texture is gel but kinda creamy great combo.\nWe have been purchasing 3 packs.\nFlavor: Great!\nPerformance: As described! Great stuff!",
                                  "images": [
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    {
                                      "height": 1200,
                                      "width": 1200,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    }
                                  ],
                                  "review_timestamp": "1732293627942",
                                  "has_origin_text": true,
                                  "display_review_text": [
                                    {
                                      "text_type": 1,
                                      "plain_text": "Excellent my whole family is taking these! Must have! \nESP. Hashimoto’s \nTaste is very berry!\n10/10 recommendation! \n\nApproximately size of a nickel, berry lil tart taste, texture is gel but kinda creamy great combo.\nWe have been purchasing 3 packs."
                                    },
                                    {
                                      "text_type": 2,
                                      "tag_key": "Flavor",
                                      "tag_text": "Great!"
                                    },
                                    {
                                      "text_type": 2,
                                      "tag_key": "Performance",
                                      "tag_text": "As described! Great stuff!"
                                    }
                                  ],
                                  "media": [
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/01f47b8726044aa28ef6ff8a8057c319~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/6b0d5ebdea3248448f0a9bd58294fde2~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    },
                                    {
                                      "media_type": 1,
                                      "image": {
                                        "height": 1200,
                                        "width": 1200,
                                        "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901",
                                        "thumb_url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:350:350.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ],
                                        "uri": "tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901",
                                        "url_list": [
                                          "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                          "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/5f7423ba9e824e8a8d9a6ccecbe4d901~tplv-fhlh96nyum-resize-webp:1200:1200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                        ]
                                      }
                                    }
                                  ],
                                  "review_timestamp_fmt": "November 22, 2024",
                                  "main_review_title": ""
                                },
                                "sku_id": "1729587788239049223",
                                "sku_specification": "Item: Default",
                                "review_user": {
                                  "name": "DaniNay",
                                  "avatar": {
                                    "url_list": [
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/9e5de1cdc9992c29259ebb92330825c3~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=9ee2269d&x-expires=1779174000&x-signature=yK5Pm4H4XJC5yCRb8hGITa%2BsvfA%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/9e5de1cdc9992c29259ebb92330825c3~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=bde3b942&x-expires=1779174000&x-signature=%2BPdrAg8rP%2BgsFGg5UMDeJQzuF14%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
                                      "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/9e5de1cdc9992c29259ebb92330825c3~tplv-tiktokx-cropcenter:100:100.jpeg?dr=9640&refresh_token=ee92ed49&x-expires=1779174000&x-signature=FDI5Qt7u5OuK%2FzcRZPPDSs5dWrk%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                                    ]
                                  },
                                  "link": "aweme://user/profile/6806020539162690566?sec_uid=MS4wLjABAAAAsYkBtJ-pT5nzJT9YBeDxxNQIJKDfeDz0hovFWOBizSwxDh8O8oursR2IjAZ5RaLN&from_scene=8"
                                },
                                "is_owner": false,
                                "is_anonymous": false,
                                "review_source_type": 0,
                                "review_source_name": "Purchased on TikTok",
                                "link": "",
                                "is_updated": false,
                                "third_party_popup_title": "",
                                "third_party_popup_content": "",
                                "third_party_popup_button_text": "",
                                "da_info": "{}"
                              }
                            ],
                            "product_rating_str": "4.7",
                            "review_count_str": "70.8K",
                            "review_count_str_v2": "70,843",
                            "ratings_display_style": 0,
                            "da_info": "{\"review_cnt_with_logistic\":70843,\"rate\":4.7,\"rate_with_logistic\":4.7,\"review_cnt\":70843}",
                            "third_party_review_cnt": 0,
                            "review_page_request_params": "{\"category_id\":\"700645,700646,700650,1298960\"}"
                          },
                          "customer_service_schema": "aweme://ec/customer_support",
                          "promotion_logos": [
                            {
                              "image": {
                                "height": 80,
                                "width": 260,
                                "mimetype": "",
                                "uri": "tos-maliva-i-o3syd03w52-us/pdp_official_logo.png",
                                "url_list": [
                                  "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299",
                                  "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299"
                                ]
                              },
                              "promotion_id": "",
                              "dark_mode_image": {
                                "height": 80,
                                "width": 260,
                                "mimetype": "",
                                "uri": "tos-maliva-i-o3syd03w52-us/pdp_official_logo.png",
                                "url_list": [
                                  "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299",
                                  "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299"
                                ]
                              },
                              "promotionLogoType": 2,
                              "da_info": "{\"btm_unit_params\":{\"bcm_nova_delivery_id\":\"\"}}",
                              "bcm_nova_delivery_id": ""
                            }
                          ],
                          "chain_key": "",
                          "add_to_cart_button": {
                            "status": 1,
                            "click_hint": ""
                          },
                          "seller_id": "7495794203056835079",
                          "extra": {
                            "smart_cropping_algo": "1"
                          },
                          "share_info": {
                            "can_share": true,
                            "share_deep_link": "https://www.tiktok.com/view/product/1729587769570529799?encode_params=MIIBUwQM5ivItdaAslvSN8hvBIIBL0jUr8N7J-QoMIj1bY3Ppk4cK25inhMJOpXGWnhrV4YrKRhj-hTknhuw45x1XRfJCZcjCqlIumKDxxr3j4z53MGmRAD8FIEnRAx5qWI-LkPQSLlADu38ddzH-_gykLBgs1-ts4EZuD5W23MFdDjBkw4CKVS8Oe__gpE3kZYNEEauSacvUGAl0Up7gcxH3qCwNXMhiFhbV8iv2hZ-XXWjGa9dodqj01tDEg8qwpgYmqm3zw6mctZ-42Q8mgCcExr6P-MVYF-m7BDjhkmDq0et18VXCLcau-Oio7wReX-4WuOgSX_9JtWaLqf2dTfjFAHsxLYT-TiFrVu8QliXlJ__9qxqn-A8clt8YuO80_3vd6sOOCtNADrRm9rfv_ueanf1EjJ_HVwZKWrQrASdb2RVBQQQS_2OWk6etxMRyu8xveSqYQ%3D%3D",
                            "share_cover": {
                              "height": 260,
                              "width": 260,
                              "uri": "tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6",
                              "url_list": [
                                "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-resize-webp:260:260.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b0d9acd7ae184c8d89e2e498941485b6~tplv-fhlh96nyum-resize-webp:260:260.webp?dr=12185&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                              ]
                            }
                          },
                          "buy_button": {
                            "desc": "Buy now",
                            "default_desc": "Buy now",
                            "sub_desc": "Free shipping",
                            "da_info": "{\"campaign_type\":\"free_shipping\"}"
                          },
                          "product_type": 0,
                          "default_address_id": "0",
                          "save_status": 2,
                          "template": 0,
                          "marketing_config": {
                            "remove_price_str": false
                          },
                          "sku_common_config": {
                            "sku_common_texts": [
                              {
                                "sku_common_text_type": 1,
                                "desc": "Min {$quantity} per order",
                                "toast": "Min. order quantity: {$quantity}"
                              },
                              {
                                "sku_common_text_type": 2,
                                "desc": "Discount limited to {$quantity} items",
                                "toast": "Up to {$quantity} items can be discounted. You will pay original price for all items if you buy more items."
                              }
                            ],
                            "pdp_promotion_items": {
                              "7636872378869679886": {
                                "promotion_items": [
                                  {
                                    "id": "7636872378869679886",
                                    "name": "Extra 60% off",
                                    "style": 8,
                                    "type": 6,
                                    "status": 0,
                                    "voucher_id": "0",
                                    "log_extra": "{\"coupon_type\":\"1\",\"coupon_name\":\"60\",\"threshold_amount\":\"0\",\"coupon_type_info\":\"{\\\"cost_role\\\":\\\"platform\\\",\\\"business_type\\\":\\\"no_min_discount\\\",\\\"user_type\\\":\\\"all\\\",\\\"channel\\\":\\\"all\\\",\\\"task_type\\\":\\\"no\\\",\\\"use_channel\\\":\\\"all\\\",\\\"extra_info\\\":\\\"\\\",\\\"coupon_enhance_info\\\":\\\"\\\"}\",\"coupon_cost_role\":\"platform\",\"coupon_style\":\"\",\"shop_id\":\"\",\"available_limit\":\"\",\"coupon_id\":\"-1\",\"coupon_type_id\":\"7636872378869679886\",\"task_type\":\"no\",\"residual_claim_quantity\":\"19983844\",\"unusable_reason_type\":\"\",\"is_from_cashback\":0,\"promotion_label_level\":\"2\",\"promotion_code\":\"\",\"dmp_set_id\":\"un00535326\",\"product_scope\":0,\"rights_cnt\":0,\"rights_content\":\"\",\"source_key\":\"\",\"template_key\":\"\",\"coupon_enhance_info\":\"\",\"promotion_container_type\":\"commodity_coupons\",\"coupon_amount_value\":\"15\",\"coupon_threshold_value\":\"0\",\"valid_time_start\":0,\"valid_time_end\":0,\"benefit_type\":\"\",\"coupon_logo_type\":null,\"instance_key\":\"\",\"product_id\":\"\"}"
                                  }
                                ]
                              },
                              "free_return_item_style": {
                                "promotion_items": [
                                  {
                                    "name": "Free shipping",
                                    "icon": {
                                      "height": 48,
                                      "width": 48,
                                      "uri": "tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light.png",
                                      "url_list": [
                                        "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    },
                                    "style": 10,
                                    "dark_icon": {
                                      "height": 48,
                                      "width": 48,
                                      "uri": "tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light_dark.png",
                                      "url_list": [
                                        "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                        "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-5i1jvf5urr-us/free_shipping_medium_light_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            "unavailable_info_list": [
                              {
                                "unavailable_info_id": 203,
                                "unavailable_info": {
                                  "reason": 1,
                                  "text": "This item not currently eligible to ship",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 204,
                                "unavailable_info": {
                                  "reason": 2,
                                  "text": "This item cannot be shipped to your selected address",
                                  "link_schema": "aweme://ec/address/edit",
                                  "action": 2,
                                  "action_text": "Change",
                                  "action_redirect_type": 1
                                }
                              },
                              {
                                "unavailable_info_id": 101,
                                "unavailable_info": {
                                  "reason": 3,
                                  "text": "This item is out of stock",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 102,
                                "unavailable_info": {
                                  "reason": 4,
                                  "text": "This item has been removed",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 1999,
                                "unavailable_info": {
                                  "reason": 5,
                                  "text": "Retry or come back later",
                                  "action": 3,
                                  "action_text": "Retry"
                                }
                              },
                              {
                                "unavailable_info_id": 107,
                                "unavailable_info": {
                                  "reason": 9,
                                  "text": "LIVE exclusive sale coming soon",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 402,
                                "unavailable_info": {
                                  "reason": 3,
                                  "text": "Item unavailable for exchange",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 106,
                                "unavailable_info": {
                                  "reason": 8,
                                  "text": "LIVE flash sale starts soon",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 401,
                                "unavailable_info": {
                                  "reason": 11,
                                  "text": "Not eligible to purchase due to age restriction",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 103,
                                "unavailable_info": {
                                  "reason": 3,
                                  "text": "This item is out of stock, select another option.",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 202,
                                "unavailable_info": {
                                  "reason": 2,
                                  "text": "The product cannot be delivered to your region",
                                  "link_schema": "aweme://ec/address/edit",
                                  "action": 2,
                                  "action_text": "Change",
                                  "action_redirect_type": 1
                                }
                              },
                              {
                                "unavailable_info_id": 201,
                                "unavailable_info": {
                                  "reason": 2,
                                  "text": "This item cannot be shipped to your selected address",
                                  "link_schema": "aweme://ec/address/list?is_select_mode=1",
                                  "action": 2,
                                  "action_text": "Change",
                                  "action_redirect_type": 2
                                }
                              },
                              {
                                "unavailable_info_id": 104,
                                "unavailable_info": {
                                  "reason": 3,
                                  "text": "This item is not available for purchase",
                                  "action": 1
                                }
                              },
                              {
                                "unavailable_info_id": 105,
                                "unavailable_info": {
                                  "reason": 2,
                                  "text": "This item is not available for delivery to your selected address",
                                  "link_schema": "aweme://ec/address/list?is_select_mode=1",
                                  "action": 2,
                                  "action_text": "Change",
                                  "action_redirect_type": 2
                                }
                              },
                              {
                                "unavailable_info_id": 301,
                                "unavailable_info": {
                                  "reason": 6,
                                  "text": "This seller is currently on vacation. Save the product to Favorites and buy when the seller is back.",
                                  "action": 1
                                }
                              }
                            ],
                            "sale_prop_unavailable_info_id": 101,
                            "is_with_default_sku": true,
                            "pdp_button_area_id": "sold_out",
                            "is_use_new_component": false
                          },
                          "shop_review_entry": {
                            "review_count": 380800,
                            "review_count_str": "380.8K",
                            "review_filters": [
                              {
                                "filter_id": "102",
                                "name": "Includes visuals",
                                "count_str": "(21.5K)",
                                "type": 1,
                                "name_en": "ec_shop_review_pdp__detail_filter_media",
                                "count": 21478
                              },
                              {
                                "filter_id": "5",
                                "name": "5",
                                "count_str": "(310.1K)",
                                "type": 2,
                                "name_en": "5",
                                "count": 310101
                              },
                              {
                                "filter_id": "4",
                                "name": "4",
                                "count_str": "(28.7K)",
                                "type": 2,
                                "name_en": "4",
                                "count": 28712
                              },
                              {
                                "filter_id": "3",
                                "name": "3",
                                "count_str": "(13.6K)",
                                "type": 2,
                                "name_en": "3",
                                "count": 13639
                              }
                            ],
                            "shop_schema": "aweme://ec/store?sellerId=7495794203056835079&shop_active_tab_type=5&store_page_version=2&url_maker=shop_schema_sdk",
                            "third_party_review_count": 0
                          },
                          "with_coupon": true,
                          "promotion_reform": true,
                          "shipping": {
                            "logistics": [
                              {
                                "delivery_option": 4,
                                "delivery_name": "Standard shipping",
                                "is_default": false,
                                "reachable": true,
                                "lead_time": "May 21 - May 24",
                                "shipping_fee": {
                                  "price_str": "$0.00",
                                  "price_val": "0",
                                  "currency": "USD"
                                },
                                "free_shipping": true,
                                "logistic_text": {},
                                "logistics_service_id": "7129736060325594926",
                                "with_voucher": false,
                                "delivery_min_days": 4,
                                "delivery_max_days": 7,
                                "da_info": "{}",
                                "logistic_promotion": {},
                                "event_tracking": {
                                  "delivery_type": "3pl",
                                  "est_delivery_bday_min": "4",
                                  "est_delivery_day_expected": "0",
                                  "est_delivery_day_max": "7",
                                  "est_delivery_day_min": "4",
                                  "est_logistic_delivery_day_max": "0",
                                  "est_logistic_delivery_day_min": "0",
                                  "global_shipping": "0",
                                  "is_1_day_shipping": "0",
                                  "is_display_fastest": "0",
                                  "is_instant_tag": "0",
                                  "is_late_guarantee": "0",
                                  "is_next_day_delivery": "0",
                                  "is_ontime_compensation_show": "0",
                                  "logistics_test_info_v2": "{\"e_l\":\"medium\",\"edt_before_strategy\":\"4-7\",\"g_id\":\"75646951\",\"s_i\":\"75646951\"}",
                                  "select_service_id": "7129736060325594926",
                                  "ship_from": "local",
                                  "shipping_currency": "USD",
                                  "shipping_price": "0",
                                  "shipping_price_after_coupon": "0",
                                  "shipping_price_origin": "7.95",
                                  "shipping_type": "send_by_seller"
                                },
                                "original_shipping_val": "7.95",
                                "transit_delivery_min_days": 0,
                                "transit_delivery_max_days": 0,
                                "leadtime_display_strategy": {
                                  "display_edt": true,
                                  "display_tts_delivery": false
                                },
                                "cod_available": false,
                                "logistics_labels": [
                                  {
                                    "label_type": 4
                                  }
                                ]
                              }
                            ],
                            "shipping_to_address_info": {
                              "no_ship_to_addr": true,
                              "ship_to_button_text": "Select",
                              "ship_to_address_brief": "Choose shipping address"
                            },
                            "ship_from_info": {}
                          },
                          "sku_style": 1,
                          "biz_code": 0,
                          "bill_info_server_params": "{\"GiftInfo\":{\"HitGift\":false,\"SkuActivityInfoMap\":null,\"SkuInfoV2\":null,\"SkuInfo\":null,\"GiftProductMeta\":null,\"HasGiftInfo\":true,\"GiftSourceInfo\":null,\"TsMs\":0},\"product_info\":{\"product_id\":1729587769570529799,\"seller_id\":7495794203056835079,\"sku_info_map\":{\"1729587788239049223\":{\"sku_id\":1729587788239049223,\"price\":{\"price_val\":\"44.98\",\"currency\":\"USD\"}}},\"eligible_activity_info\":{\"UnqualifiedActivities\":[{\"activity_id\":7487275875092694830,\"activity_scope\":0,\"promotion_template\":20000,\"eligible_product_scope\":2},{\"activity_id\":7450610225696311083,\"activity_scope\":0,\"promotion_template\":20000,\"eligible_product_scope\":1},{\"activity_id\":7487274861589628715,\"activity_scope\":0,\"promotion_template\":40070,\"eligible_product_scope\":2}],\"QualifiedActivities\":[{\"activity_id\":7449110646580315950,\"activity_scope\":0,\"promotion_template\":20000,\"eligible_product_scope\":2},{\"activity_id\":7618949941821556494,\"activity_scope\":0,\"promotion_template\":30000,\"eligible_product_scope\":4},{\"activity_id\":7475279850715252526,\"activity_scope\":0,\"promotion_template\":31000,\"eligible_product_scope\":1}]},\"logistic_recommend_activity_map\":{\"7129736060325594926\":{\"id\":7449110646580315950,\"campaign_type\":6,\"is_dmp\":false,\"activity_scope\":4,\"promotion_detail\":[{\"discount_type\":1,\"currency\":\"USD\"}],\"logistics_type\":3}}},\"cart_info\":null}",
                          "product_logo": [
                            {
                              "image": {
                                "height": 80,
                                "width": 260,
                                "mimetype": "",
                                "uri": "tos-maliva-i-o3syd03w52-us/pdp_official_logo.png",
                                "url_list": [
                                  "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299",
                                  "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299"
                                ]
                              },
                              "dark_mode_image": {
                                "height": 80,
                                "width": 260,
                                "mimetype": "",
                                "uri": "tos-maliva-i-o3syd03w52-us/pdp_official_logo.png",
                                "url_list": [
                                  "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299",
                                  "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp_official_logo.png~tplv-fhlh96nyum-origin-png.png?dr=12181&t=555f072d&ps=933b5bde&shp=cde50ccb&shcp=6ce186a1&idc=useast5&from=3454340299"
                                ]
                              },
                              "productLogoType": 3,
                              "promotion_id": ""
                            }
                          ],
                          "biz_type": 0,
                          "pdp_logistic_module": {
                            "module_id": "tts_us_v2",
                            "meta": {
                              "pdp_to_logistic_list_info": "{\"ship_from_info\":{},\"sku_info\":{\"product_id\":\"1729587769570529799\",\"sku_id\":\"1729587788239049223\",\"source_info\":\"{\\\"ec_head\\\":{\\\"extra\\\":{\\\"traffic_diversion_info\\\":\\\"{\\\\\\\"traffic_track_id\\\\\\\":\\\\\\\"1779002200003\\\\\\\",\\\\\\\"traffic_vt_scores\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_out_source\\\\\\\":\\\\\\\"homepage_bottom_2tab.in_app\\\\\\\",\\\\\\\"traffic_material_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_campaign_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"mall_btm\\\\\\\":\\\\\\\"a2270.b0482.c8938.d9932_i2\\\\\\\",\\\\\\\"mall_bcm\\\\\\\":\\\\\\\"7289278264324260098|||\\\\\\\"}\\\",\\\"feed_tab\\\":\\\"0|0\\\",\\\"prefix_ec_params_origin_is_mall_tab\\\":\\\"mall\\\",\\\"bcm_feed_tab\\\":\\\"0\\\",\\\"bcm_multiverse_id\\\":\\\"20260517071640403959371000000000a77c6264ccf29cc8\\\",\\\"ec_next_page_c_btm_code\\\":\\\"c8938\\\",\\\"ec_next_page_d_btm_code\\\":\\\"d9932_i2\\\"},\\\"page_name\\\":\\\"b0482\\\"},\\\"page_source_list\\\":[{\\\"extra\\\":{\\\"traffic_diversion_info\\\":\\\"{\\\\\\\"traffic_track_id\\\\\\\":\\\\\\\"1779002200003\\\\\\\",\\\\\\\"traffic_vt_scores\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_out_source\\\\\\\":\\\\\\\"homepage_bottom_2tab.in_app\\\\\\\",\\\\\\\"traffic_material_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_campaign_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"mall_btm\\\\\\\":\\\\\\\"a2270.b0482.c8938.d9932_i2\\\\\\\",\\\\\\\"mall_bcm\\\\\\\":\\\\\\\"7289278264324260098|||\\\\\\\"}\\\",\\\"feed_tab\\\":\\\"0|0\\\",\\\"prefix_ec_params_origin_is_mall_tab\\\":\\\"mall\\\",\\\"bcm_feed_tab\\\":\\\"0\\\",\\\"bcm_multiverse_id\\\":\\\"20260517071640403959371000000000a77c6264ccf29cc8\\\",\\\"ec_next_page_c_btm_code\\\":\\\"c8938\\\",\\\"ec_next_page_d_btm_code\\\":\\\"d9932_i2\\\"},\\\"page_name\\\":\\\"b0482\\\"},{\\\"page_name\\\":\\\"b6661\\\"}]}\",\"price_val\":\"44.98\",\"currency\":\"$\"},\"kol_id\":\"0\",\"pass_through_source_channel_info\":\"{\\\"source_info_type\\\":2,\\\"global_source_info\\\":{\\\"source_channel\\\":4,\\\"entrance_channels\\\":[4],\\\"source_channels\\\":[4]},\\\"is_source_effective\\\":true,\\\"diff_source_info\\\":{\\\"is_source_by_btm\\\":true}}\",\"pass_through_source_info\":\"{\\\"source_channel\\\":4,\\\"affiliate_creator_id\\\":0,\\\"is_follower\\\":false,\\\"entrance_channels\\\":[4],\\\"source_channels\\\":[4]}\",\"pass_through_page_source_info\":\"{\\\"ec_head\\\":{\\\"extra\\\":{\\\"traffic_diversion_info\\\":\\\"{\\\\\\\"traffic_track_id\\\\\\\":\\\\\\\"1779002200003\\\\\\\",\\\\\\\"traffic_vt_scores\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_out_source\\\\\\\":\\\\\\\"homepage_bottom_2tab.in_app\\\\\\\",\\\\\\\"traffic_material_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_campaign_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"mall_btm\\\\\\\":\\\\\\\"a2270.b0482.c8938.d9932_i2\\\\\\\",\\\\\\\"mall_bcm\\\\\\\":\\\\\\\"7289278264324260098|||\\\\\\\"}\\\",\\\"feed_tab\\\":\\\"0|0\\\",\\\"prefix_ec_params_origin_is_mall_tab\\\":\\\"mall\\\",\\\"bcm_feed_tab\\\":\\\"0\\\",\\\"bcm_multiverse_id\\\":\\\"20260517071640403959371000000000a77c6264ccf29cc8\\\",\\\"ec_next_page_c_btm_code\\\":\\\"c8938\\\",\\\"ec_next_page_d_btm_code\\\":\\\"d9932_i2\\\"},\\\"page_name\\\":\\\"b0482\\\"},\\\"page_source_list\\\":[{\\\"extra\\\":{\\\"traffic_diversion_info\\\":\\\"{\\\\\\\"traffic_track_id\\\\\\\":\\\\\\\"1779002200003\\\\\\\",\\\\\\\"traffic_vt_scores\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_out_source\\\\\\\":\\\\\\\"homepage_bottom_2tab.in_app\\\\\\\",\\\\\\\"traffic_material_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"traffic_campaign_id\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"mall_btm\\\\\\\":\\\\\\\"a2270.b0482.c8938.d9932_i2\\\\\\\",\\\\\\\"mall_bcm\\\\\\\":\\\\\\\"7289278264324260098|||\\\\\\\"}\\\",\\\"feed_tab\\\":\\\"0|0\\\",\\\"prefix_ec_params_origin_is_mall_tab\\\":\\\"mall\\\",\\\"bcm_feed_tab\\\":\\\"0\\\",\\\"bcm_multiverse_id\\\":\\\"20260517071640403959371000000000a77c6264ccf29cc8\\\",\\\"ec_next_page_c_btm_code\\\":\\\"c8938\\\",\\\"ec_next_page_d_btm_code\\\":\\\"d9932_i2\\\"},\\\"page_name\\\":\\\"b0482\\\"},{\\\"page_name\\\":\\\"b6661\\\"}]}\",\"biz_type\":0,\"seller_id\":\"7495794203056835079\",\"sku_additional_info_on_refresh\":[{\"SkuID\":\"1729587788239049223\",\"SkuPrice\":{\"real_price\":{\"price_str\":\"$44.98\",\"price_val\":\"44.98\",\"currency\":\"USD\"},\"original_price\":\"$74.94\",\"discount\":\"-40%\",\"original_price_value\":\"74.94\",\"need_icon\":false}}],\"pass_through_product_highlight\":{\"title\":{\"template\":\"Good to know\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":3},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#FFF6F6F6\"}}},\"items\":[\"Mixed Berry\",\"60 Count\",\"Stress Relief\"],\"da_info\":\"{\\\"module_element\\\":\\\"Mixed Berry,60 Count,Stress Relief\\\",\\\"feature_cnt\\\":\\\"3\\\",\\\"module_name\\\":\\\"CPV_Highlights\\\"}\"}}"
                            },
                            "module_title": "Shipping & returns",
                            "shipping_module": {
                              "description_list": [
                                {
                                  "template": "{{free_shipping}}",
                                  "arguments": {
                                    "{{free_shipping}}": {
                                      "text": "Free shipping",
                                      "link": "",
                                      "color": "#007B7B",
                                      "dark_color": "#00B8B9",
                                      "text_raw_color": {
                                        "color": "#007B7B",
                                        "dark_color": "#00B8B9"
                                      },
                                      "end_time": "",
                                      "text_font_type": 9
                                    }
                                  },
                                  "text_color": "#007B7B",
                                  "text_dark_color": "#00B8B9",
                                  "text_font_type": 9
                                },
                                {
                                  "template": "Estimated delivery {{lead_time}}",
                                  "arguments": {
                                    "{{lead_time}}": {
                                      "text": "May 21 – 24",
                                      "link": "",
                                      "color": "#000000",
                                      "dark_color": "#E6FFFFFF",
                                      "text_raw_color": {
                                        "color": "#000000",
                                        "dark_color": "#E6FFFFFF"
                                      },
                                      "end_time": "",
                                      "text_font_type": 2
                                    }
                                  },
                                  "text_color": "#000000",
                                  "text_dark_color": "#E6FFFFFF",
                                  "text_font_type": 1
                                },
                                {
                                  "template": "Shipping to {{ships_to}}",
                                  "arguments": {
                                    "{{ships_to}}": {
                                      "text": "Choose shipping address",
                                      "link": "",
                                      "color": "#99000000",
                                      "dark_color": "#E6FFFFFF",
                                      "text_raw_color": {
                                        "color": "#99000000",
                                        "dark_color": "#E6FFFFFF"
                                      },
                                      "end_time": "",
                                      "text_font_type": 3
                                    }
                                  },
                                  "text_color": "#99000000",
                                  "text_dark_color": "#E6FFFFFF",
                                  "text_font_type": 3
                                }
                              ],
                              "description_list_icon": {
                                "icon": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/truck_moving_ltr.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/truck_moving_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/truck_moving_ltr.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                },
                                "icon_dark": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/truck_moving_ltr_dark.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/truck_moving_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/truck_moving_ltr_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                }
                              },
                              "description_list_arrow": {
                                "icon": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/right_offset_new.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                },
                                "icon_dark": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                }
                              },
                              "appendix_list": [
                                {
                                  "rich_text": {
                                    "template": "Shipped by Goli Nutrition",
                                    "arguments": {
                                      "{{seller_name}}": {
                                        "text": "Goli Nutrition",
                                        "link": "",
                                        "color": "#FF000000",
                                        "dark_color": "#E0FFFFFF",
                                        "end_time": "",
                                        "text_font_type": 1
                                      }
                                    },
                                    "text_color": "#FF000000",
                                    "text_dark_color": "#E0FFFFFF",
                                    "text_font_type": 1
                                  }
                                }
                              ],
                              "meta": {
                                "delivery_info": "{\"est_delivery_day_max\":\"7\",\"shipping_currency\":\"USD\",\"shipping_price\":\"0\",\"shipping_type\":\"send_by_seller\",\"est_delivery_day_min\":\"4\"}",
                                "delivery_flag": "{\"is_display_shipping_out_time\":\"0\",\"shipping_type\":\"send_by_seller\",\"est_delivery_day_expected\":\"0\",\"is_display_est_shipping_day\":\"1\",\"is_back_order\":\"0\",\"shipping_price\":\"0\",\"is_3_day_delivery\":\"0\",\"logistics_test_info_v2\":\"{\\\"e_l\\\":\\\"medium\\\",\\\"edt_before_strategy\\\":\\\"4-7\\\",\\\"g_id\\\":\\\"75646951\\\",\\\"s_i\\\":\\\"75646951\\\"}\",\"select_service_id\":\"7129736060325594926\",\"global_shipping\":\"0\",\"is_ontime_compensation_show\":\"0\",\"ship_from\":\"local\",\"is_late_guarantee\":\"0\",\"is_delay_compensation_show\":\"0\",\"pdp_shipping_status\":\"1\",\"is_1_day_shipping\":\"0\",\"is_display_fastest\":\"0\",\"shipping_currency\":\"USD\",\"est_delivery_day_min\":\"4\",\"est_logistic_delivery_day_min\":\"0\",\"shipping_price_after_coupon\":\"0\",\"is_2_day_delivery\":\"0\",\"logistics_test_info\":\"\",\"est_delivery_day_max\":\"7\",\"est_delivery_bday_min\":\"4\",\"is_instant_tag\":\"0\",\"delivery_type\":\"3pl\",\"is_next_day_delivery\":\"0\",\"shipping_price_origin\":\"7.95\",\"est_logistic_delivery_day_max\":\"0\"}",
                                "edt_type": "lead_time"
                              },
                              "hit_min_order_logistic_hard_interception": false
                            },
                            "return_policy_module": {
                              "title": "Return policy",
                              "description_list_arrow": {
                                "icon": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/right_offset_new.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                },
                                "icon_dark": {
                                  "height": 48,
                                  "width": 48,
                                  "uri": "tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png",
                                  "url_list": [
                                    "https://p16-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042",
                                    "https://p19-oec-general.ttcdn-us.com/tos-maliva-i-acgf4d7es9-us/right_offset_new_dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042"
                                  ]
                                }
                              }
                            }
                          },
                          "button_area": {
                            "default_area_id": "default",
                            "area_elem_map": {
                              "add_disable": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "can_not_be_purchased": {
                                "status_notice": {
                                  "template": "This item is not available for purchase",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_type\":\"unable_to_checkout\",\"button_name\":\"buy_now\"}"
                                  }
                                ]
                              },
                              "can_not_be_ship": {
                                "status_notice": {
                                  "template": "This item not currently eligible to ship",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "close_pdp": {
                                "buttons": [
                                  {
                                    "desc": "Back to LIVE",
                                    "single_desc": "Back to LIVE",
                                    "action": 16,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_type\":\"able_to_return\",\"button_name\":\"back_to_live\"}"
                                  }
                                ]
                              },
                              "default": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "default_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "default_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "default_free_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "default_free_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "default_free_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "empty": {},
                              "find_similar": {
                                "status_notice": {
                                  "template": "This item is out of stock",
                                  "text_color": "#FFFE2C55",
                                  "text_dark_color": "#FFFF3B5C"
                                },
                                "buttons": [
                                  {
                                    "desc": "Find similar",
                                    "single_desc": "Find similar",
                                    "action": 9,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "gift": {
                                "status_notice": {
                                  "template": "This item is not available for purchase",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Find similar",
                                    "single_desc": "Find similar",
                                    "action": 9,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "go_to_cart": {
                                "buttons": [
                                  {
                                    "desc": "Go to cart",
                                    "single_desc": "Go to cart",
                                    "action": 2,
                                    "status": 1,
                                    "style": 5
                                  }
                                ]
                              },
                              "holiday_mode": {
                                "status_notice": {
                                  "template": "Shop is currently closed",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "status_sub_notice": {
                                  "template": "Add to Favorites and buy when the shop is open.",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Find similar",
                                    "single_desc": "Find similar",
                                    "action": 9,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "live_room_flash_sale_pre_heating": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "live_room_flash_sale_sold_out": {
                                "status_notice": {
                                  "template": "LIVE exclusive sale coming soon",
                                  "text_color": "#FFFE2C55",
                                  "text_dark_color": "#FFFF3B5C"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "not_purchasable_change_address": {
                                "status_notice": {
                                  "template": "This item cannot be shipped to your selected address",
                                  "text_color": "#7A000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Change address",
                                    "single_desc": "Change address",
                                    "link": "aweme://ec/address/edit",
                                    "action": 8,
                                    "status": 1,
                                    "style": 5
                                  }
                                ]
                              },
                              "one_click_pay": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_free_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_free_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_free_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Place order",
                                    "single_desc": "Place order",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "one_click_pay_sku": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 7,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "One click pay",
                                    "single_desc": "One click pay",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ],
                                "see_more": {
                                  "title": "One-click pay",
                                  "description": "By tapping Place order, the item(s) will not be added to your cart. We’ll charge you for the item(s) directly.\nWe’ll apply the best discounts you have available, and you can change the discounts by yourself. The total you pay will be the price after discounts and taxes.\nThe order will normally be paid with same payment method of your last order.\nAll the one-click pay orders enjoy free shipping benefits. The item(s) will be delivered to the same address of last order and normally will be delivered in same parcel(s) of the last order."
                                }
                              },
                              "po_box_no_delivery": {
                                "status_notice": {
                                  "template": "This item does not ship to P.O. Boxes.",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Change address",
                                    "single_desc": "Change address",
                                    "link": "aweme://ec/address/edit",
                                    "action": 8,
                                    "status": 1,
                                    "style": 5
                                  }
                                ]
                              },
                              "pre_order": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_type\":\"able_to_cart\",\"button_name\":\"add_to_cart\"}"
                                  },
                                  {
                                    "desc": "Preorder",
                                    "single_desc": "Preorder",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "pre_release_order": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Pre-order now",
                                    "single_desc": "Pre-order now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              },
                              "product_removed": {
                                "status_notice": {
                                  "template": "This item has been removed",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Find similar",
                                    "single_desc": "Find similar",
                                    "action": 9,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "region_not_for_sale": {
                                "status_notice": {
                                  "template": "This item cannot be shipped to your selected address",
                                  "text_color": "#7A000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Change address",
                                    "single_desc": "Change address",
                                    "link": "aweme://ec/address/edit",
                                    "action": 8,
                                    "status": 1,
                                    "style": 5
                                  }
                                ]
                              },
                              "skc_sold_out": {
                                "status_notice": {
                                  "template": "Color is out of stock",
                                  "text_color": "#FFFE2C55",
                                  "text_dark_color": "#FFFF3B5C"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "sold_out": {
                                "status_notice": {
                                  "template": "This item is out of stock",
                                  "text_color": "#FFFE2C55",
                                  "text_dark_color": "#FFFF3B5C"
                                },
                                "buttons": [
                                  {
                                    "desc": "Find similar",
                                    "single_desc": "Find similar",
                                    "action": 9,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc_free_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc_free_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_and_atc_free_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 17,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_free_2_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_free_3_day_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "subscribe_free_shipping": {
                                "buttons": [
                                  {
                                    "desc": "Subscribe",
                                    "single_desc": "Subscribe",
                                    "action": 15,
                                    "status": 1,
                                    "style": 6
                                  }
                                ]
                              },
                              "unexchangeable": {
                                "status_notice": {
                                  "template": "Item unavailable for exchange",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "status_sub_notice": {
                                  "template": "Select another item or choose a return or refund option",
                                  "text_color": "#8F000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "update_address": {
                                "status_notice": {
                                  "template": "This item cannot be shipped to your selected address",
                                  "text_color": "#7A000000",
                                  "text_dark_color": "#99FFFFFF"
                                },
                                "buttons": [
                                  {
                                    "desc": "Change address",
                                    "single_desc": "Change address",
                                    "link": "aweme://ec/address/edit",
                                    "action": 8,
                                    "status": 1,
                                    "style": 5
                                  }
                                ]
                              },
                              "user_underage": {
                                "status_notice": {
                                  "template": "Not eligible to purchase due to age restriction",
                                  "text_color": "FE2C55",
                                  "text_dark_color": "FE2C55"
                                },
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 2,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"unable_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 2,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"unable_to_checkout\"}"
                                  }
                                ]
                              },
                              "virtual_bundle_partial_sold_out": {
                                "buttons": [
                                  {
                                    "desc": "Add to cart",
                                    "single_desc": "Add to cart",
                                    "action": 4,
                                    "status": 1,
                                    "style": 5,
                                    "da_info": "{\"button_name\":\"add_to_cart\",\"button_type\":\"able_to_cart\"}"
                                  },
                                  {
                                    "desc": "Buy now",
                                    "single_desc": "Buy now",
                                    "action": 5,
                                    "status": 1,
                                    "style": 6,
                                    "da_info": "{\"button_name\":\"buy_now\",\"button_type\":\"able_to_checkout\"}"
                                  }
                                ]
                              }
                            },
                            "default_area_id_list": [
                              {
                                "product_purchase_type": 0,
                                "pdp_button_area_id": "default"
                              },
                              {
                                "product_purchase_type": 1,
                                "pdp_button_area_id": "subscribe_and_atc"
                              }
                            ],
                            "pdp_button_area_extra_info": {
                              "atc_same_fulfillment_version": 0,
                              "mute_same_fulfillment_feature": true
                            },
                            "unavailable_chain": [
                              "JudgeResult_Normal",
                              "default"
                            ]
                          },
                          "lazy_load_info": {},
                          "brand_info": {
                            "prefix": "Sold by Goli Nutrition",
                            "brand_labels": [
                              {
                                "official_label": {
                                  "label_type": 3,
                                  "label_type_str": "blue_v"
                                }
                              },
                              null
                            ]
                          },
                          "page_biz_list": [
                            {
                              "biz_line": "tts",
                              "region": "us",
                              "page_name": "product_review",
                              "template": 3
                            },
                            {
                              "biz_line": "tts",
                              "region": "us",
                              "page_name": "product_detail",
                              "template": 3
                            },
                            {
                              "biz_line": "tts",
                              "region": "us",
                              "page_name": "sku",
                              "template": 3
                            }
                          ],
                          "notice_msg": {
                            "title": {
                              "template": "Product safety information",
                              "text_attribute": {
                                "font": {
                                  "font_weight": 3,
                                  "font_class": 3
                                },
                                "font_color": {
                                  "color": "#FF000000",
                                  "dark_color": "#FFF6F6F6"
                                }
                              }
                            },
                            "content": {
                              "template": "{warning} {warningMessage}",
                              "arguments": {
                                "{warningMessage}": {
                                  "text_attribute": {
                                    "text": "Disclaimer",
                                    "font": {
                                      "font_weight": 1,
                                      "font_class": 5
                                    },
                                    "font_color": {
                                      "color": "#FF000000",
                                      "dark_color": "#FFFFFFFF"
                                    }
                                  }
                                },
                                "{warning}": {
                                  "text_attribute": {
                                    "text": "WARNING: ",
                                    "font": {
                                      "font_weight": 3,
                                      "font_class": 5
                                    },
                                    "font_color": {
                                      "color": "#FF000000",
                                      "dark_color": "#FFFFFFFF"
                                    }
                                  }
                                }
                              }
                            },
                            "notice_message_type": 0,
                            "basic_pop_up": {
                              "style": 2,
                              "title": {
                                "template": "Product safety information",
                                "text_attribute": {
                                  "text": "Product safety information",
                                  "font": {
                                    "font_weight": 3,
                                    "font_class": 2
                                  },
                                  "font_color": {
                                    "color": "#FF000000",
                                    "dark_color": "#FFF6F6F6"
                                  }
                                },
                                "text_alignment": 2
                              },
                              "is_dismissable": true,
                              "content": [
                                {
                                  "ec_rich_text": {
                                    "template": "Disclaimer",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 3,
                                        "font_class": 3
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "margin": {
                                    "top": 0,
                                    "bottom": 12
                                  }
                                },
                                {
                                  "ec_rich_text": {
                                    "template": "{warningMessage}",
                                    "arguments": {
                                      "{warningMessage}": {
                                        "text_attribute": {
                                          "text": "This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.",
                                          "font": {
                                            "font_weight": 1,
                                            "font_class": 5
                                          },
                                          "font_color": {
                                            "color": "#FF0A4151",
                                            "dark_color": "#FFF6F6F6"
                                          }
                                        }
                                      }
                                    }
                                  },
                                  "margin": {
                                    "bottom": 12
                                  }
                                }
                              ],
                              "page_padding": {
                                "start": 16,
                                "end": 16,
                                "top": 12,
                                "bottom": 89
                              },
                              "is_title_fixed_to_top": true
                            },
                            "ui_config": {
                              "lead_icon_alignment": 0,
                              "text_alignment": 0,
                              "leading_content_margin": 0,
                              "trailing_content_margin": 8,
                              "show_trailing_icon": true
                            }
                          },
                          "default_selection": {
                            "selected_props": [
                              "6932748025291032321"
                            ],
                            "image_is_preselected": true,
                            "default_pre_select_type": "low_price",
                            "sku_panel": true
                          },
                          "pop_up_triggers": [
                            {
                              "type": 1,
                              "delay_time_sec": 2,
                              "next_request_scene_key": 5
                            }
                          ],
                          "next_request_scene": [
                            {
                              "scene_key": 5,
                              "scene_value": "{\"sale_region\":\"US\",\"task_meta_type\":null,\"task_scene\":8,\"no_limit_query\":true,\"resource_place_key\":null,\"scene_key\":3,\"stock_voucher_type_ids\":[\"7631686706080663309\",\"7636872378869679886\"],\"stock_voucher_deduction_info\":\"{\\\"deduction_total_amount\\\":\\\"25\\\",\\\"currency_region\\\":\\\"US\\\"}\",\"SkuBestVouchers\":null,\"transparent_fields\":null,\"new_customer_offer_schema\":null,\"private_benefit_info\":\"{\\\"pdp.deals_panel\\\":{\\\"slot_key\\\":\\\"pdp.deals_panel\\\",\\\"benefit_data\\\":[{\\\"benefit_key\\\":\\\"qcpx_voucher\\\",\\\"data\\\":\\\"{\\\\\\\"vouchers\\\\\\\":[{\\\\\\\"voucher_type_id\\\\\\\":\\\\\\\"7636872378869679886\\\\\\\",\\\\\\\"status\\\\\\\":0,\\\\\\\"cost_type\\\\\\\":1,\\\\\\\"cost_role\\\\\\\":2,\\\\\\\"reduction_type\\\\\\\":2,\\\\\\\"claim_user_type\\\\\\\":1,\\\\\\\"use_limit_type\\\\\\\":2,\\\\\\\"claim_time\\\\\\\":0,\\\\\\\"usable_start_time\\\\\\\":0,\\\\\\\"usable_end_time\\\\\\\":0,\\\\\\\"voucher_business_type\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"cost_role_id\\\\\\\":\\\\\\\"6781718\\\\\\\",\\\\\\\"vap_schema_type\\\\\\\":1,\\\\\\\"product_scope\\\\\\\":2,\\\\\\\"seller_name\\\\\\\":\\\\\\\"TikTok Shop\\\\\\\",\\\\\\\"background_uri\\\\\\\":\\\\\\\"tos-alisg-i-aphluv4xwc-sg/5a2a729e32636788ea4ed9cc5a314e01.png\\\\\\\",\\\\\\\"seller_logo_uri\\\\\\\":\\\\\\\"tos-alisg-i-aphluv4xwc-sg/a953e0b544174583c08986096e8a8e0e.png\\\\\\\",\\\\\\\"voucher_ladders_info_list\\\\\\\":[{\\\\\\\"ladder_list\\\\\\\":[{\\\\\\\"face_value\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"required_amount\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"is_target_ladder\\\\\\\":false}]}],\\\\\\\"voucher_restriction\\\\\\\":{\\\\\\\"is_limited\\\\\\\":false},\\\\\\\"usable_duration\\\\\\\":14,\\\\\\\"face_value\\\\\\\":\\\\\\\"60\\\\\\\",\\\\\\\"is_voucher_limit_source_channel\\\\\\\":false,\\\\\\\"voucher_display_type\\\\\\\":1,\\\\\\\"discount_limit\\\\\\\":\\\\\\\"15\\\\\\\",\\\\\\\"discount_level\\\\\\\":0,\\\\\\\"usable_duration_unit\\\\\\\":1,\\\\\\\"limit_info\\\\\\\":{\\\\\\\"specific_scopes\\\\\\\":[{\\\\\\\"type\\\\\\\":2,\\\\\\\"type_ids\\\\\\\":[\\\\\\\"un00535326\\\\\\\"]}]},\\\\\\\"voucher_stock_info\\\\\\\":{\\\\\\\"total\\\\\\\":21000000,\\\\\\\"unclaimed\\\\\\\":19983831,\\\\\\\"used\\\\\\\":67336,\\\\\\\"reach_quota_limit_status\\\\\\\":0},\\\\\\\"threshold_info\\\\\\\":{\\\\\\\"threshold_type\\\\\\\":1,\\\\\\\"require_amount\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"require_quantity\\\\\\\":0},\\\\\\\"claimable_start_time_in_seconds\\\\\\\":1778040000,\\\\\\\"claimable_end_time_in_seconds\\\\\\\":1782878399,\\\\\\\"is_strategy\\\\\\\":false,\\\\\\\"region\\\\\\\":\\\\\\\"US\\\\\\\",\\\\\\\"business_tags\\\\\\\":[{\\\\\\\"tag_name\\\\\\\":1}],\\\\\\\"benefit_keys\\\\\\\":[\\\\\\\"qcpx_voucher\\\\\\\",\\\\\\\"common_voucher_package\\\\\\\"],\\\\\\\"benefit_ctx\\\\\\\":\\\\\\\"CiIyMDI2MDUxNzA3MTY0MDQ0NTZEQzE3QkM0QkVCNjE4QzQ1Eg9wZHAuZGVhbHNfcGFuZWwaDHFjcHhfdm91Y2hlclJGCkQIjo6UzPfe5/1pGAEiNjIwMjYwNTE3MDcxNjQwNDQ1NkRDMTdCQzRCRUI2MThDNDU6NzYzNjg3MjM3ODg2OTY3OTg4NqAG2Nal0AY=\\\\\\\",\\\\\\\"user_voucher_can_claim_count\\\\\\\":1,\\\\\\\"unclaimed_count\\\\\\\":19983831,\\\\\\\"selected\\\\\\\":false,\\\\\\\"promotion_id\\\\\\\":\\\\\\\"7636872378869679886\\\\\\\",\\\\\\\"is_best\\\\\\\":false,\\\\\\\"selectable\\\\\\\":true,\\\\\\\"terms_apply\\\\\\\":{\\\\\\\"terms_apply_text\\\\\\\":\\\\\\\"Terms apply\\\\\\\",\\\\\\\"full_terms_apply_schema\\\\\\\":\\\\\\\"aweme://webview?url=https%3A%2F%2Flf16-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ffe_tiktok_ecommerce_tc_page%2Findex.html%3Fis_full_screen%3D1%26__pia_manifest__%3D%257B%2522worker%2522%253Atrue%252C%2522page_name%2522%253A%2522index%2522%252C%2522public_path%2522%253A%2522https%253A%252F%252Flf16-gecko-source.tiktokcdn.com%252Fobj%252Fbyte-gurd-source-sg%252Ftiktok%252Ffe%252Flive%252Ffe_tiktok_ecommerce_tc_page%252F%2522%257D&use_forest=1&hide_nav_bar=1&trans_status_bar=1&use_spark=1&voucher_type_id=7636872378869679886\\\\\\\",\\\\\\\"half_terms_apply_schema\\\\\\\":\\\\\\\"aweme://webview_popup?use_forest=1&use_spark=1&height=73%25&gravity=bottom&transition_animation=bottom&show_mask=1&mask_bg_color=0000007F&radius=8&disable_bounces=1&url=https%3A%2F%2Flf16-gecko-source.tiktokcdn.com%2Fobj%2Fbyte-gurd-source-sg%2Ftiktok%2Ffe%2Flive%2Ffe_tiktok_ecommerce_tc_page%2Findex.html%3Fis_full_screen%3D0%26__pia_manifest__%3D%257B%2522worker%2522%253Atrue%252C%2522page_name%2522%253A%2522index%2522%252C%2522public_path%2522%253A%2522https%253A%252F%252Flf16-gecko-source.tiktokcdn.com%252Fobj%252Fbyte-gurd-source-sg%252Ftiktok%252Ffe%252Flive%252Ffe_tiktok_ecommerce_tc_page%252F%2522%257D%26voucher_type_id%3D7636872378869679886\\\\\\\",\\\\\\\"short_terms_text\\\\\\\":\\\\\\\"Terms\\\\\\\"},\\\\\\\"status_text\\\\\\\":\\\\\\\"Claim\\\\\\\",\\\\\\\"cost_role_text\\\\\\\":\\\\\\\"From TikTok Shop\\\\\\\",\\\\\\\"discount_text\\\\\\\":\\\\\\\"60% off\\\\\\\",\\\\\\\"threshold_text\\\\\\\":\\\\\\\"No min. spend\\\\\\\",\\\\\\\"use_limit_text\\\\\\\":\\\\\\\"For eligible products.\\\\\\\",\\\\\\\"currency_symbol\\\\\\\":\\\\\\\"$\\\\\\\",\\\\\\\"button_text\\\\\\\":\\\\\\\"Claim\\\\\\\",\\\\\\\"valid_time_text\\\\\\\":\\\\\\\"Valid for 14 days after claiming\\\\\\\",\\\\\\\"vap_schema\\\\\\\":\\\\\\\"aweme://roma_redirect/?roma_group_key=roma_schema_group_add_on_item&roma_page_key=roma_schema_page_add_on_item&voucher_type_id=7636872378869679886&biz_code=0&bcm_coupon_id=4708d394cc3f4ddb794b6b3e40d145e8&benefit_keys=qcpx_voucher,common_voucher_package\\\\\\\",\\\\\\\"valid_time_text_style\\\\\\\":0,\\\\\\\"claim_limit_text\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"full_vap_schema\\\\\\\":\\\\\\\"aweme://roma_redirect/?roma_group_key=roma_schema_group_add_on_item&roma_page_key=roma_schema_page_add_on_item&voucher_type_id=7636872378869679886&biz_code=0&bcm_coupon_id=4708d394cc3f4ddb794b6b3e40d145e8&benefit_keys=qcpx_voucher,common_voucher_package\\\\\\\",\\\\\\\"discount_limit_text\\\\\\\":\\\\\\\"max $15 off\\\\\\\",\\\\\\\"template_key\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"face_value_format_text\\\\\\\":\\\\\\\"60%\\\\\\\",\\\\\\\"discount_value_format_text\\\\\\\":\\\\\\\"$15\\\\\\\",\\\\\\\"tc_lines\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"Coupon details\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"<p>60% off</p><p>No min. spend, max $15 off</p><p>From TikTok Shop</p>\\\\\\\",\\\\\\\"type\\\\\\\":9,\\\\\\\"is_from_tc_data\\\\\\\":false},{\\\\\\\"key\\\\\\\":\\\\\\\"Valid through\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"Valid for 14 days after claiming\\\\\\\",\\\\\\\"type\\\\\\\":9,\\\\\\\"is_from_tc_data\\\\\\\":false},{\\\\\\\"key\\\\\\\":\\\\\\\"Limitations\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"For eligible products.\\\\\\\",\\\\\\\"type\\\\\\\":9,\\\\\\\"is_from_tc_data\\\\\\\":false},{\\\\\\\"key\\\\\\\":\\\\\\\"Terms and conditions\\\\\\\",\\\\\\\"value\\\\\\\":\\\\\\\"tc_platform\\\\\\\",\\\\\\\"type\\\\\\\":9,\\\\\\\"is_from_tc_data\\\\\\\":true}],\\\\\\\"da_info\\\\\\\":\\\\\\\"{\\\\\\\\\\\\\\\"coupon_type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_name\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"60\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"threshold_amount\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_type_info\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"{\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"task_type\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"no\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"cost_role\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"platform\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"coupon_enhance_info\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"benefit_key\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"qcpx_voucher\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"business_type\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"no_min_discount\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"extra_info\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"user_type\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"all\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"channel\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"all\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"use_channel\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"all\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"slot_key\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"pdp.deals_panel\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"data_source\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"ugbenefit\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"}\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_cost_role\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"platform\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_style\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"normal\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"shop_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"available_limit\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"-1\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_type_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"7636872378869679886\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"task_type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"no\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"residual_claim_quantity\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"19983831\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"is_coupon_usable\\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\\"unusable_reason_type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"is_from_cashback\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"promotion_label_level\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"promotion_code\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"dmp_set_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"un00535326\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"product_scope\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"rights_cnt\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"rights_content\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"source_key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"template_key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_enhance_info\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"promotion_container_type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"commodity_coupons\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_amount_value\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"15\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_threshold_value\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"valid_time_start\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"valid_time_end\\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\\"benefit_type\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"coupon_logo_type\\\\\\\\\\\\\\\":null,\\\\\\\\\\\\\\\"instance_key\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\",\\\\\\\\\\\\\\\"product_id\\\\\\\\\\\\\\\":\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"}\\\\\\\",\\\\\\\"bcm_standard_track\\\\\\\":{\\\\\\\"track_param\\\\\\\":{\\\\\\\"bcm_coupon_id\\\\\\\":\\\\\\\"4708d394cc3f4ddb794b6b3e40d145e8\\\\\\\"},\\\\\\\"chain_param\\\\\\\":null},\\\\\\\"explore_eligible_products\\\\\\\":\\\\\\\"See eligible products\\\\\\\"}]}\\\",\\\"benefit_type\\\":1,\\\"benefit_ctx\\\":\\\"CiIyMDI2MDUxNzA3MTY0MDQ0NTZEQzE3QkM0QkVCNjE4QzQ1Eg9wZHAuZGVhbHNfcGFuZWwaDHFjcHhfdm91Y2hlclJGCkQIjo6UzPfe5/1pGAEiNjIwMjYwNTE3MDcxNjQwNDQ1NkRDMTdCQzRCRUI2MThDNDU6NzYzNjg3MjM3ODg2OTY3OTg4NqAG2Nal0AY=\\\",\\\"bcm_standard_track\\\":{\\\"track_param\\\":{\\\"data_source\\\":\\\"ugbenefit\\\",\\\"slot_key\\\":\\\"pdp.deals_panel\\\",\\\"benefit_key\\\":\\\"qcpx_voucher\\\"},\\\"chain_param\\\":null}}],\\\"slot_template_key\\\":\\\"pdp.pure_qcpx_module\\\",\\\"custom_property\\\":\\\"\\\"}}\",\"traffic_source_list\":[6],\"best_voucher_metas\":[{\"voucher_type_id\":7631686706080663309},{\"voucher_type_id\":7636872378869679886}]}"
                            },
                            {
                              "scene_key": 8,
                              "scene_value": "{\"log_id\":\"202605170716404456DC17BC4BEB618C45\"}"
                            },
                            {
                              "scene_key": 7,
                              "scene_value": "{\"biz_type\":0,\"category_id_list\":[\"700645\",\"700646\",\"700650\"],\"sku_single_prices\":{\"1729587788239049223\":{\"price_val\":\"44.98\",\"currency\":\"USD\"}}}"
                            }
                          ],
                          "user_rights_module": {
                            "module_type": 3,
                            "protection_module": {
                              "title": {
                                "template": "TikTok Shop protections",
                                "text_attribute": {
                                  "font": {
                                    "font_weight": 3,
                                    "font_class": 2
                                  },
                                  "font_color": {
                                    "color": "#FF000000",
                                    "dark_color": "#FFF6F6F6"
                                  }
                                }
                              },
                              "position": 2,
                              "content": [
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-fhlh96nyum-tx/Bank_Card_Arrow_Top_Left.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "Payment assurance",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "payment_assurance"
                                },
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/data_privacy.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/data_privacy.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/data_privacy.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/data_privacy.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/data_privacy.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "Data privacy",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "data_privacy"
                                },
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png",
                                      "thumb_url_list": [
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/buyer_protection.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "Money-back guarantee",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "money-back_guarantee"
                                },
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/auto_refund.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/auto_refund.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/auto_refund.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/auto_refund.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/auto_refund.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "Lost/damaged auto-refund",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "lost/damaged_auto-refund"
                                },
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/24_7_support.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/24_7_support.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/24_7_support.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/24_7_support.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/24_7_support.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "24/7 support",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "24/7_support"
                                },
                                {
                                  "icon": {
                                    "icon": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/secure_payments.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/secure_payments.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    },
                                    "icon_dark": {
                                      "height": 180,
                                      "width": 180,
                                      "thumb_uri": "tos-useast5-i-omjb5zjo8w-tx/secure_payments.png",
                                      "thumb_url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:200:200.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ],
                                      "uri": "tos-useast5-i-omjb5zjo8w-tx/secure_payments.png",
                                      "url_list": [
                                        "https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186",
                                        "https://p19-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/secure_payments.png~tplv-fhlh96nyum-resize-webp:180:180.webp?dr=12185&t=555f072d&ps=933b5bde&shp=9137dc42&shcp=6ce186a1&idc=useast5&from=2436357186"
                                      ]
                                    }
                                  },
                                  "text": {
                                    "template": "Secure payments",
                                    "text_attribute": {
                                      "font": {
                                        "font_weight": 1,
                                        "font_class": 6
                                      },
                                      "font_color": {
                                        "color": "#FF000000",
                                        "dark_color": "#FFF6F6F6"
                                      }
                                    }
                                  },
                                  "da_info": "secure_payments"
                                }
                              ],
                              "detail_page_link": "aweme://lynxview_popup?surl=https%3A%2F%2Flf-main-gecko-source.tiktokcdn.com%2Fobj%2Ftiktok-teko-source-sg%2Ftiktok%2Ffe%2Flive%2Ftiktok_ecommerce_user_rights%2Fpages%2Fuser-rights%2Ftemplate.js&hide_nav_bar=true&trans_status_bar=1&page_type=popup&height=90%25&show_mask=1&mask_bg_color=00000080&use_spark=1&radius=12&transition_animation=bottom&enable_pull_down_close=1&request=%7B%22scene%22%3A1%2C%22right_ids%22%3A%5B35%2C17%2C1%2C2030%2C16%2C15%2C2050%2C2020%2C14%2C13%2C12%2C2041%5D%2C%22platform_level1%22%3A0%2C%22sale_region%22%3A%22US%22%2C%22base_params%22%3A%7B%22app_id%22%3A1233%2C%22region%22%3A%22%22%2C%22locale%22%3A%22%22%2C%22user_id%22%3A0%2C%22oec_user_id%22%3A0%2C%22device_id%22%3A7558726243370190349%2C%22version_code%22%3A400703%2C%22device_platform%22%3A%22android%22%2C%22priority_region%22%3A%22us%22%2C%22channel%22%3A%22googleplay%22%7D%2C%22biz_key%22%3A%22tts%22%2C%22user_benefit_drawer_variant%22%3A1%2C%22extra%22%3A%7B%22has_compensation%22%3A%22false%22%2C%22has_premium%22%3A%22false%22%2C%22has_3dd_compensation%22%3A%22false%22%2C%22has_new_landing_page%22%3A%22true%22%7D%7D",
                              "da_info": "{\"rights_content\":\"payment_assurance,data_privacy,money-back_guarantee,lost/damaged_auto-refund,24/7_support,secure_payments\"}"
                            }
                          },
                          "default_sku_id": "1729587788239049223",
                          "is_platform_product": false,
                          "lock_up_static_selling_point": "{\"selling_point_list\":[{\"background_color\":{\"color\":\"#33FFC122\",\"dark_color\":\"#52FFC122\"},\"label_color\":{\"color\":\"#33FFC122\",\"dark_color\":\"#52FFC122\"},\"selling_point_data\":{\"template\":\"Most Loved\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":4},\"font_color\":{\"color\":\"#FFB67A06\",\"dark_color\":\"#FFFFC644\"}}},\"da_info\":\"{\\\"seller_channel\\\":\\\"most_loved\\\",\\\"actionsheet_name\\\":\\\"most_loved\\\",\\\"page_name\\\":\\\"product_detail\\\",\\\"button_type\\\":\\\"most_loved\\\"}\",\"style\":1,\"tag_type\":4,\"lockup_badge_ui\":{\"type\":2,\"sheet\":{\"title\":\"Most Loved\",\"contents\":[{\"template\":\"This badge is only awarded to the most loved products that receive a combination of highest ratings, lowest return rates, on-time shipping, and excellent customer service.\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":5},\"font_color\":{\"color\":\"#FF000000\",\"dark_color\":\"#FFF6F6F6\"}}}]}}},{\"background_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\",\"token\":\"tux://color?token=ECNeutralTag&from=ecommerce_sku_selling_points\"},\"label_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\"},\"selling_point_data\":{\"template\":\"Mixed Berry\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":4},\"font_color\":{\"color\":\"#FF6B6B6B\",\"dark_color\":\"#FFDDDDDD\"}}},\"da_info\":\"{\\\"button_type\\\":\\\"good_to_know\\\"}\",\"style\":1,\"tag_type\":9},{\"background_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\",\"token\":\"tux://color?token=ECNeutralTag&from=ecommerce_sku_selling_points\"},\"label_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\"},\"selling_point_data\":{\"template\":\"60 Count\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":4},\"font_color\":{\"color\":\"#FF6B6B6B\",\"dark_color\":\"#FFDDDDDD\"}}},\"da_info\":\"{\\\"button_type\\\":\\\"good_to_know\\\"}\",\"style\":1,\"tag_type\":9},{\"background_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\",\"token\":\"tux://color?token=ECNeutralTag&from=ecommerce_sku_selling_points\"},\"label_color\":{\"color\":\"#0D000000\",\"dark_color\":\"#33FFFFFF\"},\"selling_point_data\":{\"template\":\"Stress Relief\",\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":4},\"font_color\":{\"color\":\"#FF6B6B6B\",\"dark_color\":\"#FFDDDDDD\"}}},\"da_info\":\"{\\\"button_type\\\":\\\"good_to_know\\\"}\",\"style\":1,\"tag_type\":9}],\"position\":1}",
                          "lock_up_shipping": "{\"selling_point_list\":[{\"description\":\"Enjoy free shipping on this purchase! Shipping discounts are applied at checkout and are subject to conditions such as cart total or item count.\",\"selling_point_data\":{\"template\":\"{{ShippingIcon}} Free shipping\",\"arguments\":{\"{{ShippingIcon}}\":{\"link_text_type\":1,\"icon_attribute\":{\"size\":{\"width\":13,\"height\":13},\"icon\":{\"icon\":{\"height\":48,\"width\":48,\"uri\":\"tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-light.png\",\"url_list\":[\"https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-light.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042\",\"https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-light.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042\"]},\"icon_dark\":{\"height\":48,\"width\":48,\"uri\":\"tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-dark.png\",\"url_list\":[\"https://p16-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042\",\"https://p19-oec-general.ttcdn-us.com/tos-maliva-i-o3syd03w52-us/pdp-lockup-free-shipping-dark.png~tplv-fhlh96nyum-resize-png:48:48.png?dr=12184&t=555f072d&ps=933b5bde&shp=7745054a&shcp=9b759fb9&idc=useast5&from=2001012042\"]}}}}},\"text_attribute\":{\"font\":{\"font_weight\":2,\"font_class\":4},\"font_color\":{\"color\":\"#FF007B7B\",\"dark_color\":\"#FFA8E7E7\"}}},\"da_info\":\"{\\\"button_type\\\":\\\"FreeShippingTagType\\\"}\",\"tag_type\":1}]}",
                          "promotion_label_info": {
                            "promotion_labels": [
                              {
                                "id": 7636872378869680000,
                                "type": 6,
                                "text": "Extra 60% off",
                                "default_style": 8,
                                "schema": "aweme://roma_redirect/?spark_page=roma_schema_pdp_coupon_panel&roma_group_key=spark_page_roma_schema_pdp_coupon_panel&roma_page_key=p&coupon_ui_style=2&list_ui_style=2&product_id=1729587769570529799&panel_scene=1",
                                "id_str": "7636872378869679886",
                                "da_info": "{\"module_name\":\"discount_reminder\",\"module_type\":\"marketing_label\",\"product_id\":\"1729587769570529799\",\"activity_name\":\"VOUCHER\",\"product_promotion_tag\":\"{\\\"coupon_type_info\\\":\\\"{\\\\\\\"business_type\\\\\\\":\\\\\\\"no_min_discount\\\\\\\"}\\\",\\\"placement\\\":\\\"PDP_PROMOTION_REMINDER\\\",\\\"has_icon\\\":\\\"false\\\",\\\"coupon_cost_role\\\":\\\"platform\\\",\\\"promotion_id\\\":\\\"7636872378869679886\\\",\\\"ranking\\\":\\\"1\\\",\\\"label_type\\\":\\\"VOUCHER\\\",\\\"activity_name\\\":\\\"6\\\"}\",\"page_name\":\"product_detail\"}",
                                "feature": [
                                  {
                                    "property_name": "discount_rate",
                                    "property_value": "33.34815473543797"
                                  },
                                  {
                                    "property_name": "metric_custom",
                                    "property_value": "short_text"
                                  }
                                ]
                              }
                            ],
                            "placement_labels": [
                              {
                                "placement": 106,
                                "labels": [
                                  {
                                    "id": "7636872378869679886",
                                    "type": 6,
                                    "text": "Extra 60% off",
                                    "default_style": 8,
                                    "schema": "aweme://roma_redirect/?spark_page=roma_schema_pdp_coupon_panel&roma_group_key=spark_page_roma_schema_pdp_coupon_panel&roma_page_key=p&coupon_ui_style=2&list_ui_style=2&product_id=1729587769570529799&panel_scene=1",
                                    "da_info": "{\"coupon_type_info\":\"{\\\"business_type\\\":\\\"no_min_discount\\\"}\",\"placement\":\"PDP_PROMOTION_REMINDER\",\"has_icon\":\"false\",\"coupon_cost_role\":\"platform\",\"promotion_id\":\"7636872378869679886\",\"ranking\":\"1\",\"label_type\":\"VOUCHER\",\"activity_name\":\"6\"}",
                                    "feature": [
                                      {
                                        "property_name": "discount_rate",
                                        "property_value": "33.34815473543797"
                                      },
                                      {
                                        "property_name": "metric_custom",
                                        "property_value": "short_text"
                                      }
                                    ]
                                  }
                                ]
                              }
                            ],
                            "promotion_placement": 106
                          },
                          "purchase_method_info": {
                            "title": "Purchase options",
                            "item_list": [
                              {
                                "title": {
                                  "template": "One-time purchase",
                                  "text_attribute": {
                                    "font": {
                                      "font_weight": 1,
                                      "font_class": 5
                                    },
                                    "font_color": {
                                      "color": "#FF000000",
                                      "dark_color": "#FFF6F6F6"
                                    }
                                  }
                                },
                                "purchase_method_type": 0
                              },
                              {
                                "title": {
                                  "template": "{{subscribe_text}}",
                                  "arguments": {
                                    "{{subscribe_text}}": {
                                      "text_attribute": {
                                        "text": "Subscribe ",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 5
                                        },
                                        "font_color": {
                                          "color": "#FF000000",
                                          "dark_color": "#FFF6F6F6"
                                        }
                                      }
                                    }
                                  }
                                },
                                "expand_subtitle": {
                                  "template": "• {{discount_first_sentence}} {{discount_following_sentence}}\n• {{line_1}}\n• {{line_2}}\n• {{line_3}} {{link}}",
                                  "arguments": {
                                    "{{discount_first_sentence}}": {
                                      "text_attribute": {
                                        "text": "10% off your 1st order",
                                        "font": {
                                          "font_weight": 2,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#FFE10543",
                                          "dark_color": "#FFFF576F"
                                        }
                                      }
                                    },
                                    "{{discount_following_sentence}}": {
                                      "text_attribute": {
                                        "text": "and 5% off orders after that",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{line_1}}": {
                                      "text_attribute": {
                                        "text": "Free shipping",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{line_2}}": {
                                      "text_attribute": {
                                        "text": "Skip, change, or cancel anytime",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{line_3}}": {
                                      "text_attribute": {
                                        "text": "Repeated delivery on your schedule",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{link}}": {
                                      "link_text_type": 0,
                                      "text_attribute": {
                                        "text": "Terms",
                                        "link": "aweme://webview_popup?url=https%3A%2F%2Fsf-mis.ttwstatic.com%2Fobj%2Fmis-draft-sg%2Fsns%2F328c736e-9f16-48d0-be08-55a94de1ac3a.html&height=73%25&use_spark=1&show_mask=1&mask_bg_color=aeaaac30&transition_animation=bottom&container_bg_color=ffffff&loading_bg_color=ffffff",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#FF2B5DB9",
                                          "dark_color": "#FF60B3FF"
                                        }
                                      }
                                    }
                                  },
                                  "text_attribute": {
                                    "font": {
                                      "font_weight": 1,
                                      "font_class": 6
                                    },
                                    "font_color": {
                                      "color": "#FF000000",
                                      "dark_color": "#FFF6F6F6"
                                    }
                                  }
                                },
                                "collapse_subtitle": {
                                  "template": "• {{discount_first_sentence}} {{discount_following_sentence}} ...{{link}}",
                                  "arguments": {
                                    "{{discount_first_sentence}}": {
                                      "text_attribute": {
                                        "text": "10% off your 1st order",
                                        "font": {
                                          "font_weight": 2,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#FFE10543",
                                          "dark_color": "#FFFF576F"
                                        }
                                      }
                                    },
                                    "{{discount_following_sentence}}": {
                                      "text_attribute": {
                                        "text": "and 5% off orders after that",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{line_1}}": {
                                      "text_attribute": {
                                        "text": "Free shipping",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#A6000000",
                                          "dark_color": "#E1FFFFFF"
                                        }
                                      }
                                    },
                                    "{{link}}": {
                                      "link_text_type": 0,
                                      "text_attribute": {
                                        "text": "Learn more",
                                        "link": "aweme://webview_popup?url=https%3A%2F%2Fsf-mis.ttwstatic.com%2Fobj%2Fmis-draft-sg%2Fsns%2F328c736e-9f16-48d0-be08-55a94de1ac3a.html&height=73%25&use_spark=1&show_mask=1&mask_bg_color=aeaaac30&transition_animation=bottom&container_bg_color=ffffff&loading_bg_color=ffffff",
                                        "font": {
                                          "font_weight": 1,
                                          "font_class": 6
                                        },
                                        "font_color": {
                                          "color": "#FF2B5DB9",
                                          "dark_color": "#FF60B3FF"
                                        }
                                      }
                                    }
                                  },
                                  "text_attribute": {
                                    "font": {
                                      "font_weight": 1,
                                      "font_class": 6
                                    },
                                    "font_color": {
                                      "color": "#FF000000",
                                      "dark_color": "#FFF6F6F6"
                                    }
                                  }
                                },
                                "purchase_method_type": 1,
                                "period_info": {
                                  "supported_period_info": [
                                    {
                                      "period": 1,
                                      "period_unit": 1,
                                      "period_text": "1 week"
                                    },
                                    {
                                      "period": 2,
                                      "period_unit": 1,
                                      "period_text": "2 weeks"
                                    },
                                    {
                                      "period": 3,
                                      "period_unit": 1,
                                      "period_text": "3 weeks"
                                    },
                                    {
                                      "period": 4,
                                      "period_unit": 1,
                                      "period_text": "4 weeks"
                                    },
                                    {
                                      "period": 6,
                                      "period_unit": 1,
                                      "period_text": "6 weeks"
                                    },
                                    {
                                      "period": 8,
                                      "period_unit": 1,
                                      "period_text": "8 weeks"
                                    },
                                    {
                                      "period": 3,
                                      "period_unit": 2,
                                      "period_text": "3 months (most common)"
                                    },
                                    {
                                      "period": 4,
                                      "period_unit": 2,
                                      "period_text": "4 months"
                                    },
                                    {
                                      "period": 5,
                                      "period_unit": 2,
                                      "period_text": "5 months"
                                    },
                                    {
                                      "period": 6,
                                      "period_unit": 2,
                                      "period_text": "6 months"
                                    }
                                  ],
                                  "default_selected_period_text": "3 months (most common)"
                                },
                                "discount_percentage": 10,
                                "hide_original_price": false
                              }
                            ]
                          },
                          "is_auction": false,
                          "product_interlink": {
                            "property_name": "More choices",
                            "property_values": [
                              {
                                "value_name": "6 Bottles",
                                "pdp_jump_schema": "aweme://ec/pdp?biz_type=0&fullScreen=true&orderRequestParams=%7B%7D&requestParams=%7B%22product_id%22%3A%5B%221729998779766575623%22%5D%2C%22traffic_signature%22%3A%22%7B%5C%22scene%5C%22%3A%5C%22Default%5C%22%7D%22%7D&visitReportParams=%7B%22chain_key%22%3A%22%22%2C%22material_id%22%3Anull%2C%22material_type%22%3Anull%2C%22seller_id%22%3Anull%7D",
                                "da_info": "{\"option_name\":\"6 Bottles\",\"module_name\":\"product_more_options\",\"button_area\":\"below_attr\",\"button_name\":\"product_more_options\",\"button_type\":\"select_attr\",\"product_id\":\"1729998779766575623\"}",
                                "module_da_info": "{\"module_name\":\"product_more_options\",\"product_id\":\"1729998779766575623\",\"option_name\":\"\"}",
                                "product_da_info": "{\"entrance_form\":\"pdp_link\",\"product_id\":\"1729998779766575623\",\"source_page_type\":\"pdp_linkage_product\"}"
                              }
                            ],
                            "module_da_info": "{\"module_name\":\"product_more_options\",\"product_id\":\"1729587769570529799\",\"option_name\":\"\"}"
                          },
                          "sku_panel_data": {},
                          "sku_panel_open": false,
                          "sea_core_biz_da_info": "{\"has_live_replay\":\"0\",\"rate\":4.7,\"review_cnt\":70843,\"3p_review_cnt\":0,\"delivery_info_list\":[{\"service_id\":\"7129736060325594926\",\"delivery_type_tab\":\"home_delivery\",\"est_delivery_day_max\":\"7\",\"est_delivery_day_min\":\"4\",\"is_cod_available\":\"false\",\"is_default_shipping_type_method\":\"true\",\"is_default_speed_type_method\":\"true\",\"main_order_id\":\"1729587788239049223\",\"rank\":\"0\",\"shipping_price\":\"0\",\"shipping_price_origin\":\"7.95\",\"shipping_type_method\":\"send_by_seller\",\"speed_type_method\":\"other\"}],\"first_product_category\":\"Health\",\"first_category_id\":\"700645\",\"review_cnt_with_logistic\":70843,\"rate_with_logistic\":4.7,\"is_bcp\":\"0\",\"is_algo_cut\":0,\"head_pic_cnt\":6}",
                          "sku_select_experiment_value": 4,
                          "da_info": "{\"user_type\":\"new_user\",\"button_area\":\"page_footer\",\"is_digital_delivery\":\"0\",\"bundle_item_cnt\":0,\"is_platform_product\":\"0\",\"sale_modes\":[13],\"is_bid_product\":\"0\",\"selling_points\":\"FreeShippingTagType/ProductTrustTagType/ProductHighlightTagType/\",\"platform_extension\":\"{\\\"level1\\\":\\\"0\\\"}\",\"volume\":853864,\"volume_type\":\"sold\",\"seller_logo_type\":\"blue_v,seller_logo,\",\"has_buy_now\":1,\"selling_points_cnt\":5,\"sku_selling_points\":\"\",\"is_bundle\":\"0\",\"marketing_stock_cnt\":0,\"open_stock_cnt\":248214}",
                          "bcm_standard_track": {
                            "track_param": {
                              "bcm_multiverse_id": "2026051707164054980840100500000062ccb04a01796957"
                            },
                            "chain_param": {
                              "bcm_multiverse_id": "2026051707164054980840100500000062ccb04a01796957"
                            }
                          },
                          "related_videos": [
                            {
                              "item_id": "7419446014324624686",
                              "height": 1920,
                              "width": 1080,
                              "duration": 132100,
                              "author_id": "6596631738335674373",
                              "play_count": "8413206",
                              "like_count": "506091",
                              "upload_time": "1727474395",
                              "expiration_time": "1779023932",
                              "title": "Las gomitas de ashwagandha de goli me han ayudado muchisimo. Antes andaba muy estresado y cansado todo el dia. Pero ahora me siento mas tranquilo y con mas energia. Son tan buenas que hasta a Belcast le gustan!!! #ashwagandha #cortisol #goli #resultsmayvary #tiktok_usa #salud #usa_tiktok ",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/164460b7868841e69123f80edc1c4ca5_1727474398~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=f3e0b4c2&x-expires=1779087600&x-signature=oREMB9q1hAZlAqx6QS5k%2BtjK7XM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/1365b63e35a1fe4a22556788070bb5b6/6a09c03c/video/tos/useast5/tos-useast5-pve-0068-tx/oo5z3AE5ySgz5EImf9FfDBgwEKiFhMQCRkDsEa/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=1119&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NjdnNTg0PDtnZTk0OmdoN0BpMzVscXA5cnBsdTMzZzczNEBgMy0yMl4tNS4xMzAwMjEuYSMwMTQtMmRrZG9gLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00090000",
                              "author_name": "Gonzalo",
                              "author_avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/c36c5f50c93c5e6e07c288f810d49e6f~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=09a238b1&x-expires=1779087600&x-signature=4kabblixzHqx%2Fm8xQXTiRap7W0E%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@6596631738335674373/video/7419446014324624686",
                              "author_url": "https://www.tiktok.com/@6596631738335674373"
                            },
                            {
                              "item_id": "7417976259684093230",
                              "height": 1920,
                              "width": 1080,
                              "duration": 138434,
                              "author_id": "6945331551248876549",
                              "play_count": "8407788",
                              "like_count": "420418",
                              "upload_time": "1727132192",
                              "expiration_time": "1779023938",
                              "title": "Si tu cortisøl esta bien tu estas bien. #suplementosnaturales #goli #ashwagandha #sleep #cortisol  ",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/dc5b0146edda4fc39a281b8378d13364_1727132194~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=6392052a&x-expires=1779087600&x-signature=ArZbGZZrSUF3jgozxGCB1TmP1lY%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/c6f83a136a1b03753bde52d6698e6748/6a09c042/video/tos/useast5/tos-useast5-pve-0068-tx/oYBvv00ZAwQ8d17JBqIZdgknUE1UikRQ4xEHi/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=974&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NGg2Nzc0ZTc5OTZmZWg6M0Bpam9rc245cnd5dTMzZzczNEBiXzUyXjYzNl4xLjUzX2FhYSNxNjMxMmRrLWxgLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00090000",
                              "author_name": "Fernando.Shop.777",
                              "author_avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/38425c97764ee9dc428686d7f97ac463~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=60851e29&x-expires=1779087600&x-signature=iS1peKcQnDLbGe6QUAR5ZoYXvdQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@6945331551248876549/video/7417976259684093230",
                              "author_url": "https://www.tiktok.com/@6945331551248876549"
                            },
                            {
                              "item_id": "7456963275415211295",
                              "height": 1920,
                              "width": 1080,
                              "duration": 134267,
                              "author_id": "7229125262020969514",
                              "play_count": "5764299",
                              "like_count": "367969",
                              "upload_time": "1736209574",
                              "expiration_time": "1779023934",
                              "title": "This is getting DARK!! #luigi#luigimangione#healthcare#medicare#healthinsurance#2025#health#remedies#naturalremedies#ashwagandha#ashwagandhabenefits#stress#cortisol#cortisollevels#goli",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/osV8iiAibId6lIAARiCvnjIjV3dIBfrAqKVzv8~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=b3c6acbe&x-expires=1779087600&x-signature=dXZXPHnSIlJ4lVwIVfs9h0UPixc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/0de01cf306002a9a2f93eb813e603dca/6a09c03e/video/tos/useast8/tos-useast8-ve-0068c004-tx2/okV8InAvfAItNjtuQBIzvPA3diiqiC0bRjMEZ6/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=782&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NGRlNTlpZjM8ZzZkNWg4NUBpajpvdXQ5cjc6dzMzaTczNEBiMGIxLWAvX2MxYV41YGNgYSNva241MmRjMHJgLS1kMTJzcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00088000",
                              "author_name": "sidneystea",
                              "author_avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6e03110af05c205be8888012127d8ad7~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=cd5c193d&x-expires=1779087600&x-signature=HqXNlw2fjKuVvBrxULMgpySHTPM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@7229125262020969514/video/7456963275415211295",
                              "author_url": "https://www.tiktok.com/@7229125262020969514"
                            },
                            {
                              "item_id": "7420133066892479774",
                              "height": 1920,
                              "width": 1080,
                              "duration": 136600,
                              "author_id": "7394760365320864810",
                              "play_count": "21449099",
                              "like_count": "310497",
                              "upload_time": "1727634378",
                              "expiration_time": "1779023937",
                              "title": "Was not planned #ashwagandha #stress #joerogan #resultsmayvary ",
                              "cover_image_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/27cd43e4966a4a71826770d714f3090b_1727634381~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=6d443070&x-expires=1779087600&x-signature=bjsF6xe75jUOGPS2crcw8%2FBKTSg%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/850fb612af3ee4f7e57df74f7d56ce91/6a09c040/video/tos/useast8/tos-useast8-pve-0068-tx2/oQRVnMW6BEnGM56wAdiQVkRUDBfJmREIibA9Ef/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=1036&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=aDdoOTY8ZTVmaTQ0Ozs4OEBpMzZvaXQ5cmRzdTMzaTczNEBjLjAtNWNeXzExYDEyNTJiYSMzbl5xMmRjZHBgLS1kMTJzcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00088000",
                              "author_name": "Wellnessishealth",
                              "author_avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/24986111b61ffa349887e6c80939f978~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=089a548b&x-expires=1779087600&x-signature=JOrCMstrtPkdXuh2HBE%2BdvwwFyk%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@7394760365320864810/video/7420133066892479774",
                              "author_url": "https://www.tiktok.com/@7394760365320864810"
                            },
                            {
                              "item_id": "7430954875363675435",
                              "height": 1920,
                              "width": 1080,
                              "duration": 139234,
                              "author_id": "7229125262020969514",
                              "play_count": "14518047",
                              "like_count": "296339",
                              "upload_time": "1730154013",
                              "expiration_time": "1779023939",
                              "title": "its actually terrifying🫢🫢🫢#greenscreen#ashwagandha#cortisol#cortisollevels#cortisolimbalance#stress#ashwagandhabenefits#health#remedies#naturalremedy#naturalremedies#goli",
                              "cover_image_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/6ddbbffda5fc46b788ddb993d446d7b8_1730154015~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=aa280dbf&x-expires=1779087600&x-signature=KTihG%2FcSZfmHGu89M4dG8mn8tG0%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/88d0817f973471c5e2bb7974c91fcd50/6a09c043/video/tos/useast5/tos-useast5-ve-0068c003-tx/o4rgSXgEEFDAISvFAiBzgnD3uPXDREQmIOuefi/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=917&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NzQ7PGYzOjY5Z2k7NTgzNkBpM3hpeHE5cmszdjMzZzczNEAuMzZjMC81NV4xXi9jMmMuYSM2L2EyMmRjb2RgLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00090000",
                              "author_name": "sidneystea",
                              "author_avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/6e03110af05c205be8888012127d8ad7~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=cd5c193d&x-expires=1779087600&x-signature=HqXNlw2fjKuVvBrxULMgpySHTPM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@7229125262020969514/video/7430954875363675435",
                              "author_url": "https://www.tiktok.com/@7229125262020969514"
                            },
                            {
                              "item_id": "7425730851566046495",
                              "height": 1920,
                              "width": 1080,
                              "duration": 43908,
                              "author_id": "6903940950084649989",
                              "play_count": "7641148",
                              "like_count": "276345",
                              "upload_time": "1728937710",
                              "expiration_time": "1779023844",
                              "title": "you can thank me later… #ashwagandha #ashwagandhagummies #ashwagandhasupplements #goli #GoliSuperBrandDay #superbrandday ",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/8dfe397c2d714995a7fda44f5bf65349_1728937713~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=34dea17b&x-expires=1779087600&x-signature=5dy83SK2ZH3faukAyMp%2B1XT7KiA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/e7b5f23a7a02cb3df8d0d8021b168f0d/6a09bfe3/video/tos/useast8/tos-useast8-ve-0068c003-tx2/ooIWUOvCfO2IITLjTLIggcAqJfAekr4aYYGQwG/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=1901&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NjRmZGlmNGg6OTdmZjs3OUBpMzhsdHg5cm9xdjMzaTczNEA0YS1hXzQ1XzQxYDItX2M2YSNtYmw0MmRjcTNgLS1kMTJzcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00088000",
                              "author_name": "Top Deals Only",
                              "author_avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/222b49255fe73e204d0f3420b884f110~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=e3a56a44&x-expires=1779087600&x-signature=xDYEokNYEQSpgHCB%2F8QgcEWC%2BxI%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@6903940950084649989/video/7425730851566046495",
                              "author_url": "https://www.tiktok.com/@6903940950084649989"
                            },
                            {
                              "item_id": "7447034459062455598",
                              "height": 1920,
                              "width": 1080,
                              "duration": 28072,
                              "author_id": "7434398960219309102",
                              "play_count": "4823182",
                              "like_count": "194572",
                              "upload_time": "1733897837",
                              "expiration_time": "1779023828",
                              "title": "Aint no way they pulling this on us 😭  #giftideas #spotlightfinds #treasurefinds #tiktokshop #tiktokmademebuyit #christmas #christmasgiftideas #tiktokshopcreatorpicks Stress & Energy & Happiness & Mens supplement & Womens supplement & Health & wellness & work & focus & brain boost & holistic & digestion & gut health & discount & christmas gift & TikTok Deal & TikTok Flash Sale",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/og4mRBnuZ1Emst0ZgMIUzAiLkvgEIIX5ziB4B~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=fed8f6cd&x-expires=1779087600&x-signature=qfYacpT4vudfDDT4w5ao2RXSvWE%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/120facbd992631ae726c0fdc0f0add0d/6a09bfd4/video/tos/useast5/tos-useast5-pve-0068-tx/ooEAJE45XEBtkbnURHQ4BIZzLJZs7gminui1v/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=2166&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NDRkODc8OTlkPGY0O2Y4O0Bpamh0a3M5cnFsdzMzZzczNEBfYjAtX19iXzUxLl81Xy5jYSNtbTFnMmRrbmBgLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e000b8000",
                              "author_name": "koreanshopoffers",
                              "author_avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/1159a684e5af4aa3e65ed0eaae986efe~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=a93cc38a&x-expires=1779087600&x-signature=fbiHGYrPKhvob%2BIHG9BfOdhyp3g%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@7434398960219309102/video/7447034459062455598",
                              "author_url": "https://www.tiktok.com/@7434398960219309102"
                            },
                            {
                              "item_id": "7436931841631833387",
                              "height": 1920,
                              "width": 1080,
                              "duration": 26354,
                              "author_id": "6622034452262895622",
                              "play_count": "6927657",
                              "like_count": "191234",
                              "upload_time": "1731545631",
                              "expiration_time": "1779023826",
                              "title": "This is the cheapest they have ever been. Flash sale ends tonight so make sure to act quick. #ashwagandha #goli #blackfridaydeals #cybermondaydeals #flashsale #fyp  ",
                              "cover_image_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/16c0a9288a7149e59f6380ad2bc75bf8_1731545633~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=f53859e2&x-expires=1779087600&x-signature=M1qwAgH5%2FGHL0tCRZkU78EAzhiA%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/76a6330ca89ca66aa7eddb09a188c120/6a09bfd2/video/tos/useast5/tos-useast5-pve-0068-tx/o4fnjdRAEJDNb1aEqSFoXIAjDeGGEgBsUTQSwA/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=1865&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NTU1NWg7Z2c0Njk2ZmVlPEBpMzxwM3A5cjhudjMzZzczNEA2NDUxLTUvNjUxMGAvMzYxYSNzcW1gMmRzaG5gLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e000b8000",
                              "author_name": "NEW FINDS EVERYDAY",
                              "author_avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/eef6fe553181665624b33abecc27dd44~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=4f38ec13&x-expires=1779087600&x-signature=5KCQxdaHEhmk7QIt6vhq%2BT3rutQ%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@6622034452262895622/video/7436931841631833387",
                              "author_url": "https://www.tiktok.com/@6622034452262895622"
                            },
                            {
                              "item_id": "7433327954723228958",
                              "height": 1920,
                              "width": 1080,
                              "duration": 34067,
                              "author_id": "7371724883640108074",
                              "play_count": "17248930",
                              "like_count": "179481",
                              "upload_time": "1730706594",
                              "expiration_time": "1779023834",
                              "title": "These Goli Ashwagandha gummies have helped me so much! I can relax more, sleep better and chill more! #goli #ashwagandha #cortisol #resultsmayvary ",
                              "cover_image_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-p-0068-tx2/e2134b83fb8547dc8957f84b656549e7_1730706597~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=79ad99e5&x-expires=1779087600&x-signature=bweATmNyee17r52dIkNV8T0TB%2Bs%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/853818cfc7ea9e3ef9d694652955cd74/6a09bfda/video/tos/useast8/tos-useast8-ve-0068c004-tx2/oMAEgLlQCdnIfBCJ6JDH5QO5VKfRExFAX78EIk/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=1125&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=NWQ1ZTY6NTQ8OGY6ZzQ6O0BpM2xzZnc5cm06djMzaTczNEBeMl8vYTYwNTExYWNjYWJiYSNmbWc0MmRrbGhgLS1kMTJzcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00088000",
                              "author_name": "healthynaturalways",
                              "author_avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/f3d7b363f476c4dfe5ee4edf8bb97ecf~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=0e0857d5&x-expires=1779087600&x-signature=VEOoZsRdeHY0yQHh8E%2FDrCyrPCw%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@7371724883640108074/video/7433327954723228958",
                              "author_url": "https://www.tiktok.com/@7371724883640108074"
                            },
                            {
                              "item_id": "7480400296061996334",
                              "height": 1920,
                              "width": 1080,
                              "duration": 70400,
                              "author_id": "6774955120881075205",
                              "play_count": "12171552",
                              "like_count": "176469",
                              "upload_time": "1741666449",
                              "expiration_time": "1779023870",
                              "title": "This is a LIFESAVER!! #stress #anxiety #ashwaganda #calm ",
                              "cover_image_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oILPecuiJjIoAIMIrAizAurBw1p82BIJP95Ciy~tplv-tiktokx-360p.jpeg?dr=9616&refresh_token=fe2ef6a1&x-expires=1779087600&x-signature=8MSVoC8U0iVCLY597x%2B0SWSlVdc%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8&s=TTEC_PDP_WEB&ftpl=1",
                              "content_url": "https://v16m-default.tiktokcdn-us.com/ac587ba3eec06524532455da86e6200e/6a09bffe/video/tos/useast5/tos-useast5-ve-0068c004-tx/owLPecuiZjIoQEuIGAizAuTBw1pFHB1KP95Ciy/?a=0&bti=MzV2KXVmcnZmd0BqOjo2QDI6bWJsK2IrYnFgIzE0M2A%3D&&bt=860&ft=LlnQ7z4HhWH6BZNpqKLo0PD1&mime_type=video_mp4&rc=M2lnZjRmNTQ2PDdkaTM4Z0BpamU1O2w5cnh1eTMzZzczNEAuLy1gLmAxNS4xXjRgMWAxYSNuMXFiMmQ0YjRgLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071640CDAEC4CB222C79822424&btag=e00090000",
                              "author_name": "Jin",
                              "author_avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/23da7b06d72e1f49cb723e0855f07f61~tplv-tiktokx-cropcenter:100:100.webp?dr=9640&refresh_token=fff51267&x-expires=1779087600&x-signature=fLtYCJGiCMU5oz8iiNfhbs4DsS4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=useast8",
                              "bc_ad_label_text": "Creator earns commission",
                              "url": "https://www.tiktok.com/@6774955120881075205/video/7480400296061996334",
                              "author_url": "https://www.tiktok.com/@6774955120881075205"
                            }
                          ]
                        }
                      },
                      "meta": {
                        "requestId": "req_2d80a7fe-3102-40ef-86b1-2d310c50c23c",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "minimal_keys": {
                    "value": {
                      "data": {
                        "product": {
                          "product_id": "1729587769570529799"
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_tiktok_product_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/products/reviews": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok Shop product reviews",
        "description": "Get buyer reviews for a TikTok Shop product.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Public TikTok Shop product detail page URL for the product whose reviews should be listed."
            },
            "required": false,
            "description": "Public TikTok Shop product detail page URL for the product whose reviews should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "TikTok Shop product identifier. Provide this instead of `url` when you already know the product id."
            },
            "required": false,
            "description": "TikTok Shop product identifier. Provide this instead of `url` when you already know the product id.",
            "name": "productId",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "US",
                "GB",
                "DE",
                "FR",
                "IT",
                "ID",
                "MY",
                "MX",
                "PH",
                "SG",
                "ES",
                "TH",
                "VN",
                "BR",
                "JP",
                "IE"
              ],
              "description": "Optional country or region code for the product review catalog. When omitted, the default catalog region applies."
            },
            "required": false,
            "description": "Optional country or region code for the product review catalog. When omitted, the default catalog region applies.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ],
              "description": "1-based review page number. Omit to request the first page."
            },
            "required": false,
            "description": "1-based review page number. Omit to request the first page.",
            "name": "page",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Product reviews for the requested page. `lookupStatus` is `not_found` when the product cannot be resolved.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the product could be resolved for this request."
                        },
                        "reviews": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable id for the review when available."
                              },
                              "productId": {
                                "type": "string",
                                "minLength": 1,
                                "description": "TikTok Shop product id for this review."
                              },
                              "skuId": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Sku id for the purchased variant, when available."
                              },
                              "rating": {
                                "type": "integer",
                                "minimum": 1,
                                "maximum": 5,
                                "description": "Star rating for the review (1-5)."
                              },
                              "text": {
                                "type": "string",
                                "nullable": true,
                                "description": "Review body text, when available."
                              },
                              "createdAt": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "ISO-8601 timestamp for when the review was posted, when available."
                              },
                              "verifiedPurchase": {
                                "type": "boolean",
                                "nullable": true,
                                "description": "Whether the review is from a verified purchase, when available."
                              },
                              "incentivized": {
                                "type": "boolean",
                                "nullable": true,
                                "description": "Whether the review is marked as incentivized, when available."
                              },
                              "reviewer": {
                                "type": "object",
                                "properties": {
                                  "id": {
                                    "type": "string",
                                    "nullable": true,
                                    "minLength": 1,
                                    "description": "Reviewer id when available."
                                  },
                                  "name": {
                                    "type": "string",
                                    "nullable": true,
                                    "minLength": 1,
                                    "description": "Display name when available."
                                  },
                                  "avatarUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "minLength": 1,
                                    "description": "Profile image URL when available."
                                  }
                                },
                                "required": [
                                  "id",
                                  "name",
                                  "avatarUrl"
                                ],
                                "description": "Reviewer display information."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "displayImageUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "minLength": 1,
                                    "description": "Primary image attached to the review, when available."
                                  },
                                  "imageUrls": {
                                    "type": "array",
                                    "items": {
                                      "type": "string",
                                      "minLength": 1
                                    },
                                    "description": "Additional image URLs for the review when available."
                                  }
                                },
                                "required": [
                                  "displayImageUrl",
                                  "imageUrls"
                                ],
                                "description": "Media attached to a review."
                              },
                              "variant": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Human-readable label for the purchased variant, when available."
                              },
                              "country": {
                                "type": "string",
                                "nullable": true,
                                "minLength": 1,
                                "description": "Country code associated with the review, when available."
                              }
                            },
                            "required": [
                              "id",
                              "productId",
                              "skuId",
                              "rating",
                              "text",
                              "createdAt",
                              "verifiedPurchase",
                              "incentivized",
                              "reviewer",
                              "media",
                              "variant",
                              "country"
                            ],
                            "description": "A single customer review for a TikTok Shop product."
                          },
                          "description": "Customer reviews for the product on this page."
                        },
                        "summary": {
                          "type": "object",
                          "properties": {
                            "totalReviews": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Total number of reviews reported for the product, when available."
                            },
                            "averageRating": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Average star rating, when available."
                            },
                            "ratingDistribution": {
                              "type": "object",
                              "properties": {
                                "oneStar": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Count of 1-star ratings, when available."
                                },
                                "twoStar": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Count of 2-star ratings, when available."
                                },
                                "threeStar": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Count of 3-star ratings, when available."
                                },
                                "fourStar": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Count of 4-star ratings, when available."
                                },
                                "fiveStar": {
                                  "type": "integer",
                                  "nullable": true,
                                  "minimum": 0,
                                  "description": "Count of 5-star ratings, when available."
                                }
                              },
                              "required": [
                                "oneStar",
                                "twoStar",
                                "threeStar",
                                "fourStar",
                                "fiveStar"
                              ],
                              "description": "Breakdown of reviews by star rating, when available."
                            }
                          },
                          "required": [
                            "totalReviews",
                            "averageRating",
                            "ratingDistribution"
                          ],
                          "description": "Summary statistics for the product review set."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "currentPage": {
                              "type": "integer",
                              "minimum": 1,
                              "description": "1-based page number for this response."
                            },
                            "nextPage": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 1,
                              "description": "Next page number to request when more pages are available; otherwise null."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of reviews is available."
                            }
                          },
                          "required": [
                            "currentPage",
                            "nextPage",
                            "hasMore"
                          ],
                          "description": "Pagination information for the current response."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "reviews",
                        "summary",
                        "page"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "reviews": [
                          {
                            "id": "7622319630677198606",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Flavor: Taste so good\nPerformance: Absolutely worked 100% never disappoint",
                            "createdAt": "2026-03-28T14:53:23.817Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": null,
                              "name": "T**🦋",
                              "avatarUrl": null
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7570853413647599373",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Weight loss. Better moods. Less anxiety\nTaste: Yummy",
                            "createdAt": "2025-11-09T22:18:30.235Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7144870759459030062",
                              "name": "clarissa",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/6e50f48064599fca8dc2a7d63fe34aa4~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=66fc7d99&x-expires=1779174000&x-signature=gUlEkg1vTW9EnNjBOO84HMzEECo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7491833552251209514",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Taste great and really helps with high stress situations",
                            "createdAt": "2025-04-10T23:40:35.453Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7020797926936282117",
                              "name": "Adam Raybuck",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7329734418737758214~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=2257665a&x-expires=1779174000&x-signature=8xF%2Bvt4RK75ZK9k146NBSGfl46I%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7459056216946313002",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "My anxiety has lessened. Love Goli products\nFlavor: Tastes good",
                            "createdAt": "2025-01-12T15:47:56.247Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "6806819123273499654",
                              "name": "All About Ollie",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4fef62585898a57cb8aa997a8e112c8b~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=96c3d23a&x-expires=1779174000&x-signature=IwKNROGrMT7yhd4%2FjSrCo1ZJHl0%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7427371300689200938",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Love them\nFlavor: Awesome\nPerformance: Lots of energy",
                            "createdAt": "2024-10-19T06:34:04.077Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7164353946700809258",
                              "name": "beckygreathouse3",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/53e5539ef11ac68f9ad3bb801de9afe5~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=df47f9a3&x-expires=1779174000&x-signature=5T0DIA41VzNm37%2B0%2BsAQpZbWI5c%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7430210166844835627",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Absolutely cuts my cravings. Almost unbelievable how tasty they are.",
                            "createdAt": "2024-10-26T22:10:24.798Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7271823142785483822",
                              "name": "All The Above Custom Designs",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/4576a84e8c6a1449786281d1148ece27~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=86553050&x-expires=1779174000&x-signature=lLygJ%2Bh7%2Fkq4w49tSyj2dqHgSls%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7592321499026179854",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Love the flavor and helps me to sleep well.",
                            "createdAt": "2026-01-06T18:45:12.375Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7164182948740023338",
                              "name": "Ani | Skincare y Bienestar",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e680068833fc1aaa5aa1a72aeb42dd2c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=61b0c639&x-expires=1779174000&x-signature=xvZ7pg2DEjzmJYEcL2cEhQdi9oM%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7567802575395768078",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Love these.\nFlavor: Taste alright\nPerformance: Works great 👍",
                            "createdAt": "2025-11-01T16:59:14.726Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "6809672493410894853",
                              "name": "Shavon McWilliams",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7347908882338938923~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=e7f70bd0&x-expires=1779174000&x-signature=PplaRFtofHLbhftrUNo7IwnBbd4%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7559296073739716366",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "Taste great and I feel like it works wonders",
                            "createdAt": "2025-10-09T18:49:57.298Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "7035882631456932869",
                              "name": "🏋️‍♀️💪Kristy Lynn💪🏋️‍♀️",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/b4c77e5fa2f7eb8dd7d618b27212a312~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=9d2c5ee3&x-expires=1779174000&x-signature=4zVBLJXn1cBeqVwuJ%2Bdmp8M5VWE%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          },
                          {
                            "id": "7556583574862989069",
                            "productId": "1729587769570529799",
                            "skuId": null,
                            "rating": 5,
                            "text": "These gummies actually work and they taste really good.",
                            "createdAt": "2025-10-02T11:23:55.894Z",
                            "verifiedPurchase": true,
                            "incentivized": false,
                            "reviewer": {
                              "id": "6905254379047257094",
                              "name": "Aldina- 🦋WFH Mom🦋",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/f2220ab6fa5f390c19ba4e29eae661df~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=c4517376&x-expires=1779174000&x-signature=sxrxaOGpWFN683HwGnXUDmk8LCw%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5"
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          }
                        ],
                        "summary": {
                          "totalReviews": 58896,
                          "averageRating": 4.8,
                          "ratingDistribution": {
                            "oneStar": null,
                            "twoStar": null,
                            "threeStar": null,
                            "fourStar": null,
                            "fiveStar": null
                          }
                        },
                        "page": {
                          "currentPage": 1,
                          "nextPage": 2,
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_6df340a0-92e9-4243-83ac-b109576d8c65",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "empty": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "reviews": [],
                        "summary": {
                          "totalReviews": 0,
                          "averageRating": null,
                          "ratingDistribution": {
                            "oneStar": null,
                            "twoStar": null,
                            "threeStar": null,
                            "fourStar": null,
                            "fiveStar": null
                          }
                        },
                        "page": {
                          "currentPage": 1,
                          "nextPage": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_tiktok_product_reviews_empty",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "reviews": [],
                        "summary": {
                          "totalReviews": null,
                          "averageRating": null,
                          "ratingDistribution": {
                            "oneStar": null,
                            "twoStar": null,
                            "threeStar": null,
                            "fourStar": null,
                            "fiveStar": null
                          }
                        },
                        "page": {
                          "currentPage": 1,
                          "nextPage": null,
                          "hasMore": false
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_tiktok_product_reviews_not_found",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "sparse": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "reviews": [
                          {
                            "id": "7620000000000000001",
                            "productId": "1731578642912612516",
                            "skuId": null,
                            "rating": 4,
                            "text": "Good.",
                            "createdAt": "2025-12-20T10:00:00.000Z",
                            "verifiedPurchase": true,
                            "incentivized": null,
                            "reviewer": {
                              "id": null,
                              "name": "A**1",
                              "avatarUrl": null
                            },
                            "media": {
                              "displayImageUrl": null,
                              "imageUrls": []
                            },
                            "variant": "Item: Default",
                            "country": "US"
                          }
                        ],
                        "summary": {
                          "totalReviews": 100,
                          "averageRating": 4.4,
                          "ratingDistribution": {
                            "oneStar": 2,
                            "twoStar": 1,
                            "threeStar": 5,
                            "fourStar": 10,
                            "fiveStar": 20
                          }
                        },
                        "page": {
                          "currentPage": 2,
                          "nextPage": 3,
                          "hasMore": true
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_tiktok_product_reviews_sparse",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid query parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/videos": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok video",
        "description": "Get a single TikTok video.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [
            {
              "queryParam": "downloadMedia",
              "credits": 10,
              "when": "boolean_true",
              "label": "Hosted media download"
            }
          ],
          "maxCredits": 11,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit base, +10 with `downloadMedia`. Up to 11 credits max.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Link to the video or photo post."
            },
            "required": true,
            "description": "Link to the video or photo post.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "description": "Optional ISO 3166-1 country code used to route the request when needed."
            },
            "required": false,
            "description": "Optional ISO 3166-1 country code used to route the request when needed.",
            "name": "region",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, returns a smaller response with fewer fields."
            },
            "required": false,
            "description": "When true, returns a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, includes hosted CDN URLs in `downloads` when available. Adds 10 credits (11 total with the base lookup) on successful lookups, even if `downloads` is empty."
            },
            "required": false,
            "description": "When true, includes hosted CDN URLs in `downloads` when available. Adds 10 credits (11 total with the base lookup) on successful lookups, even if `downloads` is empty.",
            "name": "downloadMedia",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, includes the video transcript (WEBVTT) in `transcript` when one is available."
            },
            "required": false,
            "description": "When true, includes the video transcript (WEBVTT) in `transcript` when one is available.",
            "name": "getTranscript",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Video metadata (found or not found in body).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the video was resolved."
                        },
                        "video": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "id": {
                              "type": "string",
                              "minLength": 1,
                              "description": "TikTok video id."
                            },
                            "url": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public TikTok URL for this video."
                            },
                            "caption": {
                              "type": "string",
                              "nullable": true,
                              "description": "Caption text."
                            },
                            "createdAt": {
                              "type": "string",
                              "nullable": true,
                              "description": "ISO-8601 timestamp when the video was posted."
                            },
                            "region": {
                              "type": "string",
                              "nullable": true,
                              "description": "Video region (two-letter country code)."
                            },
                            "durationMs": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Video duration in milliseconds."
                            },
                            "mediaType": {
                              "type": "string",
                              "enum": [
                                "video",
                                "slideshow"
                              ],
                              "description": "Whether the post is a video or a photo slideshow."
                            },
                            "isAd": {
                              "type": "boolean",
                              "description": "Whether TikTok marks the post as an ad."
                            }
                          },
                          "required": [
                            "id",
                            "url",
                            "caption",
                            "createdAt",
                            "durationMs",
                            "mediaType",
                            "isAd"
                          ],
                          "description": "Video details when found."
                        },
                        "author": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platformUserId": {
                              "type": "string",
                              "description": "Numeric user id."
                            },
                            "secUid": {
                              "type": "string",
                              "description": "Stable opaque user id."
                            },
                            "handle": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Public username without a leading @."
                            },
                            "nickname": {
                              "type": "string",
                              "nullable": true,
                              "description": "Display name."
                            },
                            "verified": {
                              "type": "boolean",
                              "description": "Whether the account is verified."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Profile picture URL."
                            },
                            "signature": {
                              "type": "string",
                              "nullable": true,
                              "description": "Profile bio text."
                            },
                            "region": {
                              "type": "string",
                              "nullable": true,
                              "description": "Two-letter country code when available."
                            },
                            "privateAccount": {
                              "type": "boolean",
                              "description": "Whether the account is private."
                            }
                          },
                          "required": [
                            "handle",
                            "verified"
                          ],
                          "description": "Author when found."
                        },
                        "music": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "id": {
                              "type": "string",
                              "nullable": true,
                              "description": "Music or sound id."
                            },
                            "title": {
                              "type": "string",
                              "nullable": true,
                              "description": "Music title."
                            },
                            "author": {
                              "type": "string",
                              "nullable": true,
                              "description": "Music author."
                            },
                            "playUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Music playable URL."
                            },
                            "coverUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Music cover image URL."
                            },
                            "durationSec": {
                              "type": "number",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Music duration in seconds."
                            },
                            "isOriginal": {
                              "type": "boolean",
                              "description": "Whether the sound is marked as original."
                            }
                          },
                          "description": "Music or sound when found."
                        },
                        "metrics": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "views": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Play count."
                            },
                            "likes": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Like count."
                            },
                            "comments": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Comment count."
                            },
                            "shares": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Share count."
                            },
                            "saves": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Save or collection count."
                            }
                          },
                          "description": "Engagement metrics for the video."
                        },
                        "media": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "downloadUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available video URL (typically watermarked)."
                            },
                            "downloadWithoutWatermarkUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available video URL without watermark."
                            },
                            "thumbnailUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Thumbnail or cover image URL."
                            },
                            "dimensions": {
                              "type": "object",
                              "properties": {
                                "width": {
                                  "type": "integer",
                                  "minimum": 0
                                },
                                "height": {
                                  "type": "integer",
                                  "minimum": 0
                                }
                              },
                              "required": [
                                "width",
                                "height"
                              ],
                              "description": "Pixel dimensions."
                            },
                            "slideshowImages": {
                              "type": "array",
                              "items": {
                                "type": "string"
                              },
                              "description": "Ordered image URLs when the post is a photo slideshow."
                            }
                          },
                          "required": [
                            "downloadUrl",
                            "downloadWithoutWatermarkUrl",
                            "thumbnailUrl"
                          ],
                          "description": "Primary playable media payload for the video."
                        },
                        "transcript": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "format": {
                              "type": "string",
                              "enum": [
                                "webvtt"
                              ],
                              "description": "Transcript format."
                            },
                            "content": {
                              "type": "string",
                              "description": "Raw transcript text."
                            }
                          },
                          "required": [
                            "format",
                            "content"
                          ],
                          "description": "Populated only when `getTranscript=true` was passed and a transcript was available."
                        },
                        "downloads": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "postId": {
                                "type": "string",
                                "description": "Video id from the post."
                              },
                              "originalUrl": {
                                "type": "string",
                                "description": "Source media URL."
                              },
                              "cdnUrl": {
                                "type": "string",
                                "description": "Permanent hosted URL."
                              },
                              "type": {
                                "type": "string",
                                "enum": [
                                  "video",
                                  "image"
                                ],
                                "description": "Asset type."
                              }
                            },
                            "required": [
                              "originalUrl",
                              "cdnUrl",
                              "type"
                            ],
                            "description": "A hosted media asset."
                          },
                          "description": "Populated only when `downloadMedia=true` was passed and media was available."
                        },
                        "details": {
                          "type": "object",
                          "properties": {},
                          "additionalProperties": {
                            "nullable": true
                          },
                          "description": "Additional TikTok-native fields from the post (author, music, video, etc.), minus keys already promoted above."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "video",
                        "author",
                        "music",
                        "metrics",
                        "media",
                        "transcript",
                        "downloads"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7587811642650545421",
                          "url": "https://www.tiktok.com/@nike/video/7587811642650545421",
                          "caption": "@Caitlin Clark is proof that you can make it From Anywhere",
                          "createdAt": "2025-12-25T15:05:14.000Z",
                          "region": "US",
                          "durationMs": 46315,
                          "mediaType": "video",
                          "isAd": false
                        },
                        "author": {
                          "platformUserId": "208464585232822272",
                          "secUid": "MS4wLjABAAAA_3ndMt8d_tECTdpKgCxcx238tOnQZX-20wqN01aMui5zQ7hsqSdff-jC5qYC-Cl_",
                          "handle": "nike",
                          "nickname": "Nike",
                          "verified": false,
                          "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=8837&idc=useast5&ps=87d6e48a&refresh_token=7b90b175&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=MEX%2BaGmkI%2Bgd4RzcFryKKULfa3A%3D",
                          "signature": "Just Do It.",
                          "region": "US"
                        },
                        "music": {
                          "id": "7587811690868263694",
                          "title": "original sound - nike",
                          "author": "Nike",
                          "playUrl": "https://v19.tiktokcdn-us.com/7919e2c1bcc56089cb2a3f50ad5cd14d/6a12a658/video/tos/useast5/tos-useast5-v-27dcd7-tx/o8HF6UBGIOJSJKUtPff3NMVypriUEDA6TLEgCD/?a=1233&bti=OUBzOTg7QGo6OjZAL3AjLTAzYCMxNDNg&&bt=125&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=audio_mpeg&rc=ZDhoNjpkOzYzNzhpMzpmOUBpMzo7a3k5cmVvODMzZzU8NEA1YDA2YWAtNjUxNDFfYDMzYSNxYDNvMmRjMjNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e000c8000&shp=d05b14bd&shcp=-",
                          "coverUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=8837&idc=useast5&ps=87d6e48a&refresh_token=5327d970&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=9COP%2B7hP86AAFX8eMcb6bjNErgk%3D",
                          "durationSec": 46,
                          "isOriginal": true
                        },
                        "metrics": {
                          "views": 15662726,
                          "likes": 21974,
                          "comments": 271,
                          "shares": 949,
                          "saves": 1172
                        },
                        "media": {
                          "downloadUrl": "https://v16m.tiktokcdn-us.com/d17ffdeb2711328b4a6588b383f41de7/6a09c00a/video/tos/useast5/tos-useast5-ve-0068c003-tx/osADQr7NuWpEfB2Gf9DVEIxQSTUREBFgDu1Eg9/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=1072&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=aTw3OjNnaGhnZTw4O2Q3N0BpM3VuaXk5cnZvODMzZzczNEBhMV4vXjMzXl4xY15gY2I1YSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00088000",
                          "downloadWithoutWatermarkUrl": "https://v16m.tiktokcdn-us.com/a15d0a56961ebf9f9fd162da49d97c17/6a09c00a/video/tos/useast5/tos-useast5-ve-0068c002-tx/o4fpjERxEGDT1NPEkUFBxImrDgG9EgBfV7QSWA/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=1168&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=PDg0ZmdnOTc8OWhoOGY0O0BpM3VuaXk5cnZvODMzZzczNEBgMzMuYmAyNjQxM142L14xYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00088000",
                          "thumbnailUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/ogEOGpIgSRAFYEVpCKR00TfMAKDeDCAQaAVpRa~tplv-tiktokx-cropcenter-q:300:400:q70.heic?dr=8596&refresh_token=23deffe0&x-expires=1779087600&x-signature=d2vQ66p3xsPw0xaJvTCi1%2Bz3%2FWw%3D&t=bacd0480&ps=933b5bde&shp=d05b14bd&shcp=1d1a97fc&idc=useast5&biz_tag=tt_video&s=AWEME_DETAIL&sc=cover",
                          "dimensions": {
                            "width": 720,
                            "height": 1280
                          }
                        },
                        "transcript": null,
                        "downloads": [],
                        "details": {
                          "ad_aweme_source": 1,
                          "added_sound_music_info": {
                            "album": "",
                            "allow_offline_music_to_detail_page": false,
                            "artists": [],
                            "audition_duration": 46,
                            "author": "Nike",
                            "author_deleted": false,
                            "author_position": null,
                            "avatar_medium": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c",
                              "url_list": [
                                "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=445263dc&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=CWSz6OFJPixsDwuKXKL8cApsWFk%3D",
                                "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=78fff387&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=c1Y95DZk98qtNx%2FroMRsQiMJ1sM%3D"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "avatar_thumb": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c",
                              "url_list": [
                                "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=8835&idc=useast5&ps=87d6e48a&refresh_token=4b919ae7&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=rhlS%2FdSN2EUQUoyvgFE1oYumj3g%3D",
                                "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=8835&idc=useast5&ps=87d6e48a&refresh_token=b2dee050&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=KV9iWSnSA91xxhH%2FoDBqnV936Nc%3D"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "binded_challenge_id": 0,
                            "can_be_stitched": true,
                            "can_not_reuse": false,
                            "collect_stat": 0,
                            "commercial_right_type": 2,
                            "cover_large": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c",
                              "url_list": [
                                "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=8837&idc=useast5&ps=87d6e48a&refresh_token=5327d970&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=9COP%2B7hP86AAFX8eMcb6bjNErgk%3D",
                                "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:1080:1080:q70.heic?dr=8837&idc=useast5&ps=87d6e48a&refresh_token=7b90b175&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=MEX%2BaGmkI%2Bgd4RzcFryKKULfa3A%3D"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "cover_medium": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c",
                              "url_list": [
                                "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=445263dc&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=CWSz6OFJPixsDwuKXKL8cApsWFk%3D",
                                "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:720:720:q70.heic?dr=8836&idc=useast5&ps=87d6e48a&refresh_token=78fff387&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=c1Y95DZk98qtNx%2FroMRsQiMJ1sM%3D"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "cover_thumb": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c",
                              "url_list": [
                                "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=8835&idc=useast5&ps=87d6e48a&refresh_token=4b919ae7&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=rhlS%2FdSN2EUQUoyvgFE1oYumj3g%3D",
                                "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/e0b0ac7b6ad6447a8e923fd1eb162f2c~tplv-tiktokx-cropcenter-q:100:100:q70.heic?dr=8835&idc=useast5&ps=87d6e48a&refresh_token=b2dee050&s=AWEME_DETAIL&sc=avatar&shcp=1d1a97fc&shp=d05b14bd&t=223449c4&x-expires=1779087600&x-signature=KV9iWSnSA91xxhH%2FoDBqnV936Nc%3D"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "create_time": 1766675121,
                            "dmv_auto_show": false,
                            "duration": 46,
                            "duration_high_precision": {
                              "audition_duration_precision": 46.367,
                              "duration_precision": 46.367,
                              "shoot_duration_precision": 46.367,
                              "video_duration_precision": 46.367
                            },
                            "external_song_info": [],
                            "extra": "{\"aed_music_dur\":2,\"amplitude_peak\":0,\"beats\":{},\"can_read\":true,\"can_reuse\":true,\"erase_type\":0,\"erase_uid\":0,\"extract_item_id\":7587811642650545421,\"from_user_id\":7577545167848014903,\"full_song_beat_info\":{},\"full_song_beats\":{},\"has_edited\":0,\"is_batch_take_down_music\":false,\"is_ugc_mapping\":false,\"is_used\":1,\"loudness_lufs\":0,\"music_vid\":\"v12942gd0000d56l5bfog65vrh68c7t0\",\"owner_id\":208464585232822272,\"resource_status\":0,\"review_unshelve_reason\":0,\"reviewed\":0,\"schedule_search_time\":0}",
                            "has_commerce_right": true,
                            "has_commerce_right_strict": true,
                            "has_human_voice": true,
                            "id": 7587811690868264000,
                            "id_str": "7587811690868263694",
                            "is_audio_url_with_cookie": false,
                            "is_author_artist": false,
                            "is_commerce_music": true,
                            "is_commerce_music_strict": true,
                            "is_matched_metadata": false,
                            "is_original": false,
                            "is_original_sound": true,
                            "is_pgc": false,
                            "is_play_music": false,
                            "is_shooting_allow": true,
                            "log_extra": "{\"meta_song_matched_type\":\"not_found\",\"ttm_matched_type\":\"\",\"ttm_track_id\":\"\",\"matched_meta_song_id\":\"\",\"vid\":\"\",\"owner_id\":\"\"}",
                            "lyric_short_position": null,
                            "meme_song_info": {},
                            "mid": "7587811690868263694",
                            "multi_bit_rate_play_info": null,
                            "music_group_use_count": 0,
                            "music_ugid": 7587811690868264000,
                            "music_ugid_use_count": 0,
                            "mute_share": false,
                            "offline_desc": "",
                            "owner_handle": "nike",
                            "owner_id": "208464585232822272",
                            "owner_nickname": "Nike",
                            "play_url": {
                              "data_size": 0,
                              "height": 720,
                              "uri": "https://v19.tiktokcdn-us.com/7919e2c1bcc56089cb2a3f50ad5cd14d/6a12a658/video/tos/useast5/tos-useast5-v-27dcd7-tx/o8HF6UBGIOJSJKUtPff3NMVypriUEDA6TLEgCD/?a=1233&bti=OUBzOTg7QGo6OjZAL3AjLTAzYCMxNDNg&&bt=125&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=audio_mpeg&rc=ZDhoNjpkOzYzNzhpMzpmOUBpMzo7a3k5cmVvODMzZzU8NEA1YDA2YWAtNjUxNDFfYDMzYSNxYDNvMmRjMjNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e000c8000&shp=d05b14bd&shcp=-",
                              "url_key": "666cc7b04f7544809308cad7933ec58a",
                              "url_list": [
                                "https://v19.tiktokcdn-us.com/7919e2c1bcc56089cb2a3f50ad5cd14d/6a12a658/video/tos/useast5/tos-useast5-v-27dcd7-tx/o8HF6UBGIOJSJKUtPff3NMVypriUEDA6TLEgCD/?a=1233&bti=OUBzOTg7QGo6OjZAL3AjLTAzYCMxNDNg&&bt=125&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=audio_mpeg&rc=ZDhoNjpkOzYzNzhpMzpmOUBpMzo7a3k5cmVvODMzZzU8NEA1YDA2YWAtNjUxNDFfYDMzYSNxYDNvMmRjMjNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e000c8000&shp=d05b14bd&shcp=-",
                                "https://v16m.tiktokcdn-us.com/331b57f430d0bec7ea605be072aa5e2c/6a12a658/video/tos/useast5/tos-useast5-v-27dcd7-tx/o8HF6UBGIOJSJKUtPff3NMVypriUEDA6TLEgCD/?a=1233&bti=OUBzOTg7QGo6OjZAL3AjLTAzYCMxNDNg&&bt=125&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=audio_mpeg&rc=ZDhoNjpkOzYzNzhpMzpmOUBpMzo7a3k5cmVvODMzZzU8NEA1YDA2YWAtNjUxNDFfYDMzYSNxYDNvMmRjMjNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e000c8000&shp=d05b14bd&shcp=-",
                                "https://api16-normal-useast5.tiktokv.us/aweme/v1/play/?video_id=v12942gd0000d56l5bfog65vrh68c7t0&line=0&is_play_url=1&source=AWEME_DETAIL&file_id=666cc7b04f7544809308cad7933ec58a&item_id=7587811690868263694&signaturev3=dmlkZW9faWQ7ZmlsZV9pZDtpdGVtX2lkLmNhM2M4Yzc3MDhlMTQ3NWVkMzg3NzA3MjUzYjZmNjU5&shp=d05b14bd&shcp=-"
                              ],
                              "url_prefix": null,
                              "width": 720
                            },
                            "position": null,
                            "prevent_download": false,
                            "preview_end_time": 0,
                            "preview_start_time": 0,
                            "recommend_status": 100,
                            "search_highlight": null,
                            "sec_uid": "MS4wLjABAAAA_3ndMt8d_tECTdpKgCxcx238tOnQZX-20wqN01aMui5zQ7hsqSdff-jC5qYC-Cl_",
                            "shoot_duration": 46,
                            "source_platform": 72,
                            "status": 1,
                            "tag_list": null,
                            "tag_list_v2": null,
                            "title": "original sound - nike",
                            "tt_to_dsp_song_infos": [],
                            "uncert_artists": null,
                            "user_count": 0,
                            "video_duration": 46
                          },
                          "ai_remix_info": {
                            "has_entrance": false
                          },
                          "aigc_info": {
                            "aigc_label_type": 0,
                            "created_by_ai": false
                          },
                          "anchors": null,
                          "anchors_extras": "",
                          "animated_image_info": {
                            "effect": 0,
                            "type": 0
                          },
                          "audio": {
                            "TtsInfos": [
                              {
                                "bit_rate": 32953,
                                "format": "mp4",
                                "lang": "cmn-Hans-CN",
                                "language_code": "zh-Hans",
                                "language_id": 1,
                                "play_addr": {
                                  "file_hash": "c85ca86d9994d0a5f034333addc2ed15",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/1bc7b41e621c4318bd215e83077203b8",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/719372525d1dfc96b0401dd19bbcbde6/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/1bc7b41e621c4318bd215e83077203b8/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/aeeac2254e19d585c252854e09ca0684/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/1bc7b41e621c4318bd215e83077203b8/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-15.9,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 65085,
                                "format": "mp4",
                                "lang": "cmn-Hans-CN",
                                "language_code": "zh-Hans",
                                "language_id": 1,
                                "play_addr": {
                                  "file_hash": "3c322ffb6624e7b9c8ceb4992ad75870",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/d1898ac7f4bb4ca6b809cb50844912bf",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/5db441c1f198f7fd6feba4ec122cef6a/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/d1898ac7f4bb4ca6b809cb50844912bf/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/845d364f7c9e4a8b5586fabbaeadeef4/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/d1898ac7f4bb4ca6b809cb50844912bf/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-15.9,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 24920,
                                "format": "mp4",
                                "lang": "cmn-Hans-CN",
                                "language_code": "zh-Hans",
                                "language_id": 1,
                                "play_addr": {
                                  "file_hash": "aa65e4f0a4581f24ffc72adb0856b78e",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/7553ff1df2c34337a89e90d19c5bd029",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/a7cd4fdfe9469ef2891a687b20d82578/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/7553ff1df2c34337a89e90d19c5bd029/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/860c198989d46eeae11dff1eb391e657/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/7553ff1df2c34337a89e90d19c5bd029/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-15.9,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 65085,
                                "format": "mp4",
                                "lang": "spa-ES",
                                "language_code": "es",
                                "language_id": 9,
                                "play_addr": {
                                  "file_hash": "62070ae3d9bce32dd2e0d46b3ba953c1",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/1ea0b6f916354d258c8948da35d591f7",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/7da9a407234befb81a98c9866f980651/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/1ea0b6f916354d258c8948da35d591f7/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/d542160ef2d12488bc3c5f6b90023cae/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/1ea0b6f916354d258c8948da35d591f7/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 32953,
                                "format": "mp4",
                                "lang": "spa-ES",
                                "language_code": "es",
                                "language_id": 9,
                                "play_addr": {
                                  "file_hash": "f064b1ebe52dc4bd66e3205bc9e605e6",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/6e6a529c8b3f40e78f73ff78b5f4ac9b",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/08c726c3d1903fc77909db514e454560/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/6e6a529c8b3f40e78f73ff78b5f4ac9b/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/20583c2c0358ac7f4636c37b1cd3ca82/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/6e6a529c8b3f40e78f73ff78b5f4ac9b/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 24920,
                                "format": "mp4",
                                "lang": "spa-ES",
                                "language_code": "es",
                                "language_id": 9,
                                "play_addr": {
                                  "file_hash": "795061b99335ad3a0e76c80845a4513a",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/2299bd726e5b40349254174e59a4cf62",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/5c0fd184b726cfce963b4db5459c4560/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/2299bd726e5b40349254174e59a4cf62/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/0eb0f5e5585d30d2dcc626fba739f81a/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/2299bd726e5b40349254174e59a4cf62/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 24920,
                                "format": "mp4",
                                "lang": "deu-DE",
                                "language_code": "de",
                                "language_id": 20,
                                "play_addr": {
                                  "file_hash": "292dd66329c84723d7139a9bebd0a089",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/c074e7c787794a7c800762ac7d1b9031",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/0b84d2c100982d627e7498bdb655734e/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/c074e7c787794a7c800762ac7d1b9031/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/9e53d083aba929e79c114fd1aeba2a80/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/c074e7c787794a7c800762ac7d1b9031/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 32953,
                                "format": "mp4",
                                "lang": "deu-DE",
                                "language_code": "de",
                                "language_id": 20,
                                "play_addr": {
                                  "file_hash": "10c972570f281a2058027a62e324d684",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/db880dd5c7c24d6880774987789ec688",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/980cb61cbd2e2723c608cf07d3cd4490/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/db880dd5c7c24d6880774987789ec688/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/f11e9759094926aeb338c8f435f14223/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/db880dd5c7c24d6880774987789ec688/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 65085,
                                "format": "mp4",
                                "lang": "deu-DE",
                                "language_code": "de",
                                "language_id": 20,
                                "play_addr": {
                                  "file_hash": "ca0656f3280b4f875a0b51d752882ca5",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/2f1272e6144c47f48cc75edd4f164365",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/7cce785fcef006e95749f4a81699eac2/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/2f1272e6144c47f48cc75edd4f164365/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/378d15311dd192bd263bcea198f7cd61/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/2f1272e6144c47f48cc75edd4f164365/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 65085,
                                "format": "mp4",
                                "lang": "por-PT",
                                "language_code": "pt",
                                "language_id": 8,
                                "play_addr": {
                                  "file_hash": "046bcddc3b131fc78b0ea90dda451268",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/78bca85ce3b943388c0b4e83476fa233",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/b15a6f540f95fc90d66236984446057a/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/78bca85ce3b943388c0b4e83476fa233/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/015d781db6baf073f465461c60edaeb1/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/78bca85ce3b943388c0b4e83476fa233/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 24920,
                                "format": "mp4",
                                "lang": "por-PT",
                                "language_code": "pt",
                                "language_id": 8,
                                "play_addr": {
                                  "file_hash": "8c3a35d8ca4717c60fd8525d1d2ac658",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/5a68460eb7264852ab3dbc195eb5dca4",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/44f53cb6cb220498b3ad1c7546021a16/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/5a68460eb7264852ab3dbc195eb5dca4/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/cb579296571fe4d653c7b097f1979bde/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/5a68460eb7264852ab3dbc195eb5dca4/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              },
                              {
                                "bit_rate": 32953,
                                "format": "mp4",
                                "lang": "por-PT",
                                "language_code": "pt",
                                "language_id": 8,
                                "play_addr": {
                                  "file_hash": "b064ff30ed3b473b2f3c32e221399347",
                                  "height": 720,
                                  "uri": "tos-alisg-pve-0037c001/678d7766eb604996a8f7e4245b94d68c",
                                  "url_list": [
                                    "https://v16m.tiktokcdn-us.com/bcf01fcd52b03dbb90e7aff385d52ab4/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/678d7766eb604996a8f7e4245b94d68c/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000",
                                    "https://v19.tiktokcdn-us.com/96791806eb453cb63e4f7794c25c02ea/6a09c00a/video/tos/alisg/tos-alisg-pve-0037c001/678d7766eb604996a8f7e4245b94d68c/?a=1233&bti=OTg7QGo5QHM6OjZALTAzYCMvcCMxNDNg&&bt=10065&ft=WgSBMNl0VK6XUxbVKStG-XD5S0Kqc1PXtMNPakcyqF_4&mime_type=video_mp4&rc=M3VuaXk5cnZvODMzZzczNEBpM3VuaXk5cnZvODMzZzczNEBkNmJfMmRjLTNhLS1kMS9zYSNkNmJfMmRjLTNhLS1kMS9zcw%3D%3D&vvpl=1&l=20260517071716FB38D82DB82B1295463C&btag=e00048000"
                                  ],
                                  "url_prefix": null,
                                  "width": 720
                                },
                                "sub_info": "",
                                "voice_type": "Dubbing",
                                "volume_info": "{\"Loudness\":-16,\"Peak\":0.8414}"
                              }
                            ],
                            "original_sound_infos": null
                          },
                          "author_user_id": 208464585232822270,
                          "aweme_acl": {
                            "download_general": {
                              "code": 0,
                              "mute": false,
                              "show_type": 2,
                              "transcode": 3
                            },
                            "download_mask_panel": {
                              "code": 0,
                              "mute": false,
                              "show_type": 2,
                              "transcode": 3
                            },
                            "platform_list": null,
                            "press_action_list": null,
                            "share_action_list": null,
                            "share_general": {
                              "code": 0,
                              "mute": false,
                              "show_type": 2,
                              "transcode": 3
                            },
                            "share_list_status": 0
                          },
                          "aweme_type": 0,
                          "banners": [
                            {
                              "key": {
                                "component_key": "bottom_banner_search_rs"
                              }
                            }
                          ],
                          "behind_the_song_music_ids": null,
                          "behind_the_song_video_music_ids": null,
                          "bodydance_score": 0,
                          "bottom_products": null,
                          "branded_content_accounts": null,
                          "c2pa_info": {
                            "aigc_src": "",
                            "c2pa_extra_data": "{\"aigc_percentage_type\":0}",
                            "dedup_err": "",
                            "dedup_src": "",
                            "first_aigc_src": "",
                            "first_src": "",
                            "is_capcut": false,
                            "is_tiktok": false,
                            "last_aigc_src": "",
                            "last_src": "",
                            "total_audio": 0,
                            "total_err": 0,
                            "total_img": 0,
                            "total_src": 0,
                            "total_vid": 0,
                            "upload_dur": 0
                          },
                          "cc_template_info": {
                            "author_name": "",
                            "clip_count": 0,
                            "desc": "",
                            "duration_milliseconds": 0,
                            "related_music_id": "",
                            "template_id": ""
                          },
                          "cha_list": null,
                          "challenge_position": null,
                          "cmt_swt": false,
                          "collect_stat": 0,
                          "comment_at_tako_info": {
                            "show_tako_account": 0
                          },
                          "comment_config": {
                            "comment_panel_show_tab_config": {
                              "comment_tab_info_config": [
                                {
                                  "priority": 100,
                                  "tab_id": 2,
                                  "tab_name": "like_list"
                                },
                                {
                                  "priority": 101,
                                  "tab_id": 3,
                                  "tab_name": "view_list"
                                },
                                {
                                  "priority": -100,
                                  "tab_id": 4,
                                  "tab_name": "story2viewer_list"
                                },
                                {
                                  "priority": 102,
                                  "tab_id": 5,
                                  "tab_name": "video_auth_page"
                                },
                                {
                                  "priority": 11,
                                  "tab_id": 11,
                                  "tab_name": "ec_reviews_tab"
                                }
                              ],
                              "max_tab_count": 3
                            },
                            "comment_top_bar_component": [
                              {
                                "action": {
                                  "click_hot_area_type": 2,
                                  "schema": "//search"
                                },
                                "biz_id": "5737291420454221055",
                                "biz_type": 10,
                                "desc_prefix": {
                                  "content": "Search:"
                                },
                                "desc_suffix": {
                                  "content": "nike ad controversy caitlin clark"
                                },
                                "extra": "",
                                "name": "search_keywords",
                                "tail_icon": {
                                  "is_local": true,
                                  "local_type": 1
                                },
                                "template_type": 2,
                                "tracer_info": ""
                              }
                            ],
                            "emoji_recommend_list": null,
                            "has_visual_comment": true,
                            "long_press_recommend_list": null,
                            "preload": {
                              "preds": "{\"item_post_comment\":0.000017302224402061303}"
                            },
                            "quick_comment": {
                              "enabled": false,
                              "rec_level": 0
                            },
                            "quick_comment_emoji_recommend_list": null,
                            "social_quick_comment": {
                              "enabled": false,
                              "rec_metrics": {
                                "non_social_enabled": "false",
                                "p_comment": "0",
                                "p_skip": "0",
                                "p_stay_time": "0"
                              }
                            },
                            "zero_comment_button_config": {
                              "background_url": {
                                "url_list": [
                                  "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/gn6gf8xt1757574524464"
                                ],
                                "url_prefix": null
                              },
                              "background_url_for_black": {
                                "url_list": [
                                  "https://sf16-muse-va.ibytedtos.com/obj/search-static-maliva/maliva/x9tcc9941757574581693"
                                ],
                                "url_prefix": null
                              },
                              "image_type": 1,
                              "zero_comment_button_enable": true,
                              "zero_comment_button_main_text": "Start the conversation",
                              "zero_comment_button_text": "Comment"
                            }
                          },
                          "comment_topbar_info": null,
                          "commerce_config_data": null,
                          "commerce_info": {
                            "ad_source": 1,
                            "adv_promotable": true,
                            "auction_ad_invited": false,
                            "branded_content_type": 0,
                            "is_diversion_ad": 0,
                            "organic_log_extra": "{\"req_id\":\"20260517071716FB38D82DB82B1295463C\"}",
                            "with_comment_filter_words": false
                          },
                          "content_desc": "",
                          "content_desc_extra": [],
                          "content_level": 1,
                          "content_model": {
                            "custom_biz": {
                              "aweme_trace": "20260517071716FB38D82DB82B1295463C",
                              "high_quality_boost_info": {
                                "description": "",
                                "is_high_quality_post": false,
                                "link": ""
                              },
                              "high_quality_boost_info_v2": {}
                            },
                            "standard_biz": {
                              "ai_comment_photo": {
                                "enable_comment": true
                              },
                              "creator_analytics": {
                                "creator_analytics_entrance_status": 1
                              },
                              "e_commerce": {
                                "ttec_content_tag": {
                                  "recommendation_tag_consumer_str": "",
                                  "recommendation_tag_creator_str": ""
                                }
                              },
                              "local_alliance_info": {
                                "alliance_item_label_text": "",
                                "alliance_item_label_type": 0
                              },
                              "tts_voice_info": {
                                "tts_voice_attr": "[]",
                                "tts_voice_reuse_params": ""
                              },
                              "vc_filter_info": {
                                "vc_filter_attr": "[]"
                              }
                            }
                          },
                          "content_original_type": 1,
                          "content_size_type": 1,
                          "content_type": "video",
                          "cover_labels": null,
                          "creation_info": {
                            "creation_used_functions": [
                              "select_music",
                              "high_quality_upload"
                            ]
                          },
                          "creator_ai_comment": {
                            "eligible_video": false,
                            "has_ai_topic": false,
                            "not_eligible_reason": 213
                          },
                          "disable_search_trending_bar": false,
                          "distance": "",
                          "distribute_type": 1,
                          "ecosystem_perception_enhancement": null,
                          "follow_up_publish_from_id": -1,
                          "geofencing": null,
                          "geofencing_regions": null,
                          "green_screen_materials": null,
                          "group_id": "7587811642650545421",
                          "group_id_list": {
                            "GroupdIdList0": [
                              7587811642650545000
                            ],
                            "GroupdIdList1": [
                              7587811642650545000
                            ]
                          },
                          "has_danmaku": false,
                          "has_promote_entry": 1,
                          "has_vs_entry": false,
                          "have_dashboard": false,
                          "hybrid_label": null,
                          "image_infos": null,
                          "interact_permission": {
                            "allow_adding_as_post": {
                              "status": 0
                            },
                            "allow_adding_to_story": 0,
                            "allow_create_sticker": {
                              "status": 2
                            },
                            "allow_story_switch_to_post": {
                              "status": 1
                            },
                            "duet": 0,
                            "duet_privacy_setting": 0,
                            "stitch": 0,
                            "stitch_privacy_setting": 0,
                            "upvote": 0
                          },
                          "interaction_stickers": null,
                          "is_ads": false,
                          "is_description_translatable": true,
                          "is_hash_tag": 1,
                          "is_nff_or_nr": false,
                          "is_on_this_day": 0,
                          "is_paid_content": false,
                          "is_pgcshow": false,
                          "is_preview": 0,
                          "is_relieve": false,
                          "is_text_sticker_translatable": false,
                          "is_title_translatable": false,
                          "is_top": 0,
                          "is_vr": false,
                          "item_allow_ai_remix": 1,
                          "item_comment_settings": 0,
                          "item_duet": 0,
                          "item_react": 0,
                          "item_stitch": 0,
                          "label_top": {
                            "height": 720,
                            "uri": "tiktok-obj/1598708589477025.PNG",
                            "url_list": [
                              "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast5",
                              "https://p19-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.image?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast5",
                              "https://p16-common.tiktokcdn-us.com/tiktok-obj/1598708589477025.PNG~tplv-tiktokx-origin.jpeg?dr=9580&t=4d5b0474&ps=933b5bde&shp=d05b14bd&shcp=34ff8df6&idc=useast5"
                            ],
                            "url_prefix": null,
                            "width": 720
                          },
                          "label_top_text": null,
                          "long_video": null,
                          "main_arch_common": "",
                          "mask_infos": [],
                          "meme_reg_info": {},
                          "misc_info": "{}",
                          "muf_comment_info_v2": null,
                          "music_begin_time_in_ms": 0,
                          "music_end_time_in_ms": 46296,
                          "music_selected_from": "original",
                          "music_title_style": 1,
                          "music_volume": "0.000000",
                          "need_trim_step": false,
                          "need_vs_entry": false,
                          "nickname_position": null,
                          "no_selected_music": false,
                          "operator_boost_info": null,
                          "origin_comment_ids": null,
                          "origin_volume": "50.000000",
                          "original_client_text": {
                            "markup_text": "<m id=\"1412\">@Caitlin Clark</m> is proof that you can make it From Anywhere",
                            "text_extra": [
                              {
                                "sec_uid": "MS4wLjABAAAAs0xSQB8KPxcyzCB3Z17OWd6l7Kg7PI_gq3f-pJb5MI5K5TfA2vm3KJu3enCK7pGa",
                                "tag_id": "1412",
                                "type": 0,
                                "user_id": "6688434507391779845"
                              }
                            ]
                          },
                          "paid_content_info": {
                            "paid_collection_id": 0
                          },
                          "picked_users": [],
                          "playlist_blocked": false,
                          "poi_re_tag_signal": 0,
                          "position": null,
                          "prevent_download": false,
                          "products_info": null,
                          "promote": {
                            "extra": "{\"is_self_post\":false,\"page_source\":\"aweme_detail\",\"share_panel_icon_text_key\":\"\",\"store_country_code\":\"US\",\"traffic_level\":0}",
                            "is_show_video_view": false,
                            "promote_traffic_tag": {
                              "need_track": false,
                              "traffic_level": 0,
                              "version": "2025v1"
                            },
                            "video_view_count": 0,
                            "video_view_schema": ""
                          },
                          "promote_capcut_toggle": 0,
                          "promote_icon_text": "Promote",
                          "promote_toast": "",
                          "promote_toast_key": "",
                          "question_list": null,
                          "quick_reply_emojis": [
                            "😍",
                            "😂",
                            "😳"
                          ],
                          "rate": 12,
                          "reference_tts_voice_ids": null,
                          "reference_voice_filter_ids": null,
                          "retry_type": 0,
                          "right_products": null,
                          "risk_infos": {
                            "content": "",
                            "risk_sink": false,
                            "type": 0,
                            "vote": false,
                            "warn": false
                          },
                          "search_highlight": null,
                          "share_info": {
                            "bool_persist": 0,
                            "now_invitation_card_image_urls": null,
                            "share_desc": "Check out Nike's video! #TikTok",
                            "share_desc_info": "TikTok: Make Every Second CountCheck out Nike’s video! #TikTok > ",
                            "share_link_desc": "",
                            "share_quote": "",
                            "share_signature_desc": "",
                            "share_signature_url": "",
                            "share_title": "Check out Nike’s video! #TikTok > ",
                            "share_title_myself": "",
                            "share_title_other": "",
                            "share_url": "https://www.tiktok.com/@nike/video/7587811642650545421?_r=1&u_code=f0hj85k258fbke&preview_pb=0&sharer_language=en&_d=f3f194l8f4k9bb&share_item_id=7587811642650545421&source=h5_m",
                            "whatsapp_desc": "Download TikTok and watch more fun videos:"
                          },
                          "shoot_tab_name": "photo",
                          "smart_search_info": {
                            "ai_overview_intent_type": 0,
                            "ask_tako_intent_type": 0,
                            "find_similar_intent_type": 0,
                            "related_videos_intent_type": 0,
                            "title_smart_search_panel_type": 0
                          },
                          "social_interaction_blob": {
                            "auxiliary_model_content": "ChIKBPCfmI0KBPCfmIIKBPCfmLMaBAoAEgA="
                          },
                          "solaria_profile": {
                            "profile": "{\"PACK_VOD:audio_effect_info_ios\":\"{\\\"5\\\": 4.501185045441249, \\\"1\\\": 4.5011973321724215, \\\"0\\\": 4.50116089734851}\",\"PACK_VOD:audio_loudness_info_android\":\"{\\\"1\\\": -0.00028508950917391156, \\\"2\\\": -0.0005470030370858099, \\\"-1\\\": -0.00012301137033769263}\",\"PACK_VOD:audio_meta\":\"{\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\":{\\\"Md5\\\":\\\"ee01969e2ce192eac8b1c7c4cf4f2392\\\",\\\"normal\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.65],\\\"drr\\\":12.1,\\\"rcd\\\":[0.2],\\\"mp\\\":0.35,\\\"be\\\":[32.3,14438],\\\"ocf\\\":[-12.4976,-4.301,-5.4344,-8.5514,-10.5184,-14.1013,-18.2098,-24.6406,-34.3112,-47.4785],\\\"il\\\":-14.2}}},\\\"src\\\":{\\\"src\\\":{\\\"base_metrics\\\":{\\\"tacm\\\":[0.65],\\\"drr\\\":12.4,\\\"rcd\\\":[0.2],\\\"mp\\\":0.17,\\\"be\\\":[32.3,14766.4],\\\"ocf\\\":[-12.7298,-4.178,-5.5062,-8.6105,-10.525,-14.1295,-18.3921,-24.8655,-34.1176,-46.9011],\\\"il\\\":-14.1},\\\"ts\\\":[\\\"tag_03010309\\\",\\\"tag_01010226\\\",\\\"tag_02030105\\\",\\\"tag_00000317\\\",\\\"tag_02040437\\\"],\\\"trs\\\":[0.65,0.58,0.49,0.06,0.04]}}}\",\"PACK_VOD:vod_diversity_tier3\":\"10059\",\"PACK_VOD:vod_sr_class_v30_score\":\"51.361\",\"play_time_prob_dist\":\"[800,0.5408,4132.805]\"}"
                          },
                          "sort_label": "",
                          "standard_component_info": {
                            "banner_enabled": true
                          },
                          "status": {
                            "allow_comment": true,
                            "allow_share": true,
                            "aweme_id": "7587811642650545421",
                            "download_status": 0,
                            "in_reviewing": false,
                            "is_delete": false,
                            "is_prohibited": false,
                            "private_status": 0,
                            "review_result": {
                              "review_status": 0
                            },
                            "reviewed": 1,
                            "self_see": false
                          },
                          "suggest_words": {
                            "feed_query_enable_videosug": false,
                            "suggest_words": [
                              {
                                "hint_text": "Search:",
                                "qrec_virtual_enable": "",
                                "scene": "comment_top",
                                "words": [
                                  {
                                    "penetrate_info": "{\"direct_to_tako\":\"\",\"lvl3_cate_list\":\"\",\"words_type_to_voucher_ids\":\"\",\"sug_user_id\":\"\",\"visualize_sug_product_id\":\"\",\"generate_time\":\"0\",\"video_id\":\"\",\"recall_reason\":\"search_result_darwin_recall,video_sar_top_counter_passive_recall\",\"ecom_trigger_info_map\":\"\",\"poi_card_id_list\":\"\",\"is_ramandan_promotion\":\"\",\"ecom_trigger_info\":\"\",\"lvl1_category_id\":\"\",\"predict_ctr_score\":0.005311169733427204,\"hot_level\":\"0\",\"word_type_list\":\"\",\"words_type_to_dmp_list\":\"\",\"is_time_sensitive\":\"0\",\"word_type_version_map\":\"\",\"ecom_intent\":\"2\"}",
                                    "rich_sug_info": {
                                      "sug_icon_type": "",
                                      "sug_icon_uri": "",
                                      "sug_reason": "",
                                      "sug_reason_type": ""
                                    },
                                    "word": "nike ad controversy caitlin clark",
                                    "word_id": "5737291420454221055",
                                    "word_record": {
                                      "is_personalized": false,
                                      "qrec_json_info": "{\"is_sensitive_intent\":1}",
                                      "words_label": "",
                                      "words_lang": "en"
                                    }
                                  }
                                ]
                              },
                              {
                                "hint_text": "Search · ",
                                "qrec_virtual_enable": "",
                                "scene": "feed_bar",
                                "words": [
                                  {
                                    "penetrate_info": "{\"hot_level\":\"0\",\"video_id\":\"\",\"words_type_to_voucher_ids\":\"\",\"ecom_trigger_info\":\"\",\"ecom_trigger_info_map\":\"\",\"lvl1_category_id\":\"\",\"generate_time\":\"0\",\"words_type_to_dmp_list\":\"\",\"sug_user_id\":\"\",\"predict_ctr_score\":0.00369886492946928,\"recall_reason\":\"search_result_darwin_recall,video_sar_top_counter_passive_recall\",\"poi_card_id_list\":\"\",\"word_type_list\":\"\",\"direct_to_tako\":\"\",\"is_time_sensitive\":\"0\",\"lvl3_cate_list\":\"\",\"is_ramandan_promotion\":\"\",\"ecom_intent\":\"2\",\"word_type_version_map\":\"\",\"visualize_sug_product_id\":\"\"}",
                                    "rich_sug_info": {
                                      "sug_icon_type": "",
                                      "sug_icon_uri": "",
                                      "sug_reason": "",
                                      "sug_reason_type": ""
                                    },
                                    "word": "nike ad controversy caitlin clark",
                                    "word_id": "5737291420454221055",
                                    "word_record": {
                                      "is_personalized": false,
                                      "qrec_json_info": "{\"is_sensitive_intent\":1}",
                                      "words_label": "",
                                      "words_lang": "en"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          "support_danmaku": false,
                          "survey_info": null,
                          "tako_bubble_info": {
                            "tako_bubble_enable": false
                          },
                          "text_extra": [
                            {
                              "end": 14,
                              "sec_uid": "MS4wLjABAAAAs0xSQB8KPxcyzCB3Z17OWd6l7Kg7PI_gq3f-pJb5MI5K5TfA2vm3KJu3enCK7pGa",
                              "start": 0,
                              "tag_id": "1412",
                              "type": 0,
                              "user_id": "6688434507391779845"
                            }
                          ],
                          "text_sticker_major_lang": "un",
                          "title_language": "un",
                          "ttec_suggest_words": {
                            "ttec_suggest_words": null
                          },
                          "tts_voice_ids": null,
                          "ttt_product_recall_type": -2,
                          "uniqid_position": null,
                          "upvote_info": {
                            "friends_recall_info": "{}",
                            "repost_initiate_score": 0,
                            "user_upvoted": false
                          },
                          "upvote_preload": {
                            "need_pull_upvote_info": false
                          },
                          "used_full_song": false,
                          "user_digged": 0,
                          "video_control": {
                            "allow_download": false,
                            "allow_duet": true,
                            "allow_dynamic_wallpaper": true,
                            "allow_music": true,
                            "allow_react": true,
                            "allow_stitch": true,
                            "draft_progress_bar": 1,
                            "prevent_download_type": 2,
                            "share_type": 0,
                            "show_progress_bar": 1,
                            "timer_status": 1
                          },
                          "video_labels": [],
                          "video_text": [],
                          "visual_search_info": {
                            "fallback_vtag_enable": false,
                            "fallback_vtag_enable_type": 0,
                            "long_press_entrance_enable": false,
                            "long_press_entrance_enable_type": 0,
                            "screenshot_entrance_enable": 0,
                            "visual_search_intent_level": 0,
                            "vtag_enable": false,
                            "vtag_enable_type": 0
                          },
                          "voice_filter_ids": null,
                          "with_promotional_music": false,
                          "without_watermark": false,
                          "is_eligible_for_commission": false,
                          "is_paid_partnership": false,
                          "shop_product_url": null
                        }
                      },
                      "meta": {
                        "requestId": "req_de3872c9-39ac-49b9-acbc-1172949eebf9",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "video": null,
                        "author": null,
                        "music": null,
                        "metrics": null,
                        "media": null,
                        "transcript": null,
                        "downloads": []
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "download_media": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7587811642650545421",
                          "url": "https://www.tiktok.com/@nike/video/7587811642650545421",
                          "caption": "Example caption.",
                          "createdAt": "2025-12-25T12:00:00.000Z",
                          "region": "US",
                          "durationMs": 46315,
                          "mediaType": "video",
                          "isAd": false
                        },
                        "author": {
                          "handle": "nike",
                          "verified": true
                        },
                        "music": null,
                        "metrics": {
                          "views": 100,
                          "likes": 10,
                          "comments": 1,
                          "shares": 0,
                          "saves": 0
                        },
                        "media": {
                          "downloadUrl": "https://example.com/w.mp4",
                          "downloadWithoutWatermarkUrl": "https://example.com/nw.mp4",
                          "thumbnailUrl": "https://example.com/t.jpg"
                        },
                        "transcript": null,
                        "downloads": [
                          {
                            "postId": "7587811642650545421",
                            "originalUrl": "https://cdn.example.com/orig.mp4",
                            "cdnUrl": "https://cdn.example.com/hosted.mp4",
                            "type": "video"
                          }
                        ]
                      },
                      "meta": {
                        "requestId": "req_01example_dl",
                        "creditsCharged": 11,
                        "version": "v1"
                      }
                    }
                  },
                  "slideshow": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7628328815495744790",
                          "url": "https://www.tiktok.com/@user/photo/7628328815495744790",
                          "caption": null,
                          "createdAt": "2026-04-16T12:00:00.000Z",
                          "region": "GB",
                          "durationMs": null,
                          "mediaType": "slideshow",
                          "isAd": false
                        },
                        "author": {
                          "handle": "kelseycarlin1",
                          "verified": false
                        },
                        "music": null,
                        "metrics": null,
                        "media": {
                          "downloadUrl": null,
                          "downloadWithoutWatermarkUrl": null,
                          "thumbnailUrl": "https://example.com/cover.jpg",
                          "slideshowImages": [
                            "https://example.com/slide1.jpg",
                            "https://example.com/slide2.jpg"
                          ]
                        },
                        "transcript": null,
                        "downloads": []
                      },
                      "meta": {
                        "requestId": "req_01example_ss",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "transcript": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7587811642650545421",
                          "url": "https://www.tiktok.com/@nike/video/7587811642650545421",
                          "caption": "Example.",
                          "createdAt": "2025-12-25T12:00:00.000Z",
                          "region": "US",
                          "durationMs": 46315,
                          "mediaType": "video",
                          "isAd": false
                        },
                        "author": {
                          "handle": "nike",
                          "verified": true
                        },
                        "music": null,
                        "metrics": null,
                        "media": {
                          "downloadUrl": null,
                          "downloadWithoutWatermarkUrl": null,
                          "thumbnailUrl": null
                        },
                        "transcript": {
                          "format": "webvtt",
                          "content": "WEBVTT\n\n00:00:00.140 --> 00:00:04.020\nAll right. Pizza review time"
                        },
                        "downloads": []
                      },
                      "meta": {
                        "requestId": "req_01example_tr",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/videos/comments": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "List TikTok video comments",
        "description": "Get comments on a TikTok video.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "disambiguation": "Cursor pagination with variable page size — use `data.page.hasMore` and `data.page.nextCursor`; do not assume a fixed number of comments per page or loop on `totalComments` alone."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "description": "Link to the TikTok video whose comments should be listed."
            },
            "required": true,
            "description": "Link to the TikTok video whose comments should be listed.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "description": "Opaque cursor from a previous response to fetch the next page."
            },
            "required": false,
            "description": "Opaque cursor from a previous response to fetch the next page.",
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, returns a smaller response with fewer fields."
            },
            "required": false,
            "description": "When true, returns a smaller response with fewer fields.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Comment listing result. Check `data.lookupStatus` for `found` or `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the video was resolved for this request."
                        },
                        "comments": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Stable identifier for the comment when provided by TikTok; otherwise a deterministic placeholder derived from available fields."
                              },
                              "text": {
                                "type": "string",
                                "description": "Comment text."
                              },
                              "createdAt": {
                                "type": "string",
                                "description": "ISO-8601 timestamp when the comment was created."
                              },
                              "likes": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Like count on the comment."
                              },
                              "replyCount": {
                                "type": "integer",
                                "minimum": 0,
                                "description": "Direct reply count for the comment thread."
                              },
                              "language": {
                                "type": "string",
                                "description": "Reported language code for the comment text."
                              },
                              "author": {
                                "type": "object",
                                "properties": {
                                  "handle": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Public TikTok username without a leading @."
                                  },
                                  "displayName": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Display name shown on the commenter profile."
                                  },
                                  "avatarUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile image URL for the commenter when available."
                                  },
                                  "platformUserId": {
                                    "type": "string",
                                    "description": "Numeric user id for the commenter when available."
                                  },
                                  "secUid": {
                                    "type": "string",
                                    "description": "Opaque stable user identifier when available."
                                  }
                                },
                                "required": [
                                  "handle",
                                  "displayName",
                                  "avatarUrl"
                                ],
                                "description": "Comment author."
                              }
                            },
                            "required": [
                              "id",
                              "text",
                              "createdAt",
                              "likes",
                              "replyCount",
                              "language",
                              "author"
                            ],
                            "description": "A single top-level comment on a TikTok video."
                          },
                          "description": "Top-level comments for the resolved video."
                        },
                        "page": {
                          "type": "object",
                          "properties": {
                            "nextCursor": {
                              "type": "string",
                              "nullable": true,
                              "description": "Cursor to pass in the next request when more pages exist."
                            },
                            "hasMore": {
                              "type": "boolean",
                              "description": "Whether another page of comments is available."
                            }
                          },
                          "required": [
                            "nextCursor",
                            "hasMore"
                          ],
                          "description": "Pagination information for this response."
                        },
                        "totalComments": {
                          "type": "integer",
                          "nullable": true,
                          "minimum": 0,
                          "description": "Total comment count reported for the video when available; null when the video could not be resolved."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "comments",
                        "page",
                        "totalComments"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "comments": [
                          {
                            "id": "7587824764670083847",
                            "text": "People still compare this to angel Reese 🥀",
                            "createdAt": "2025-12-25T15:55:32.000Z",
                            "likes": 81,
                            "replyCount": 4,
                            "language": "en",
                            "author": {
                              "handle": "ben_archer5",
                              "displayName": "ben_archer",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/musically-maliva-obj/1594805258216454~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=98bf492e&x-expires=1779087600&x-signature=d%2FGlXazVIeu08MDw5WaeqAWxlkE%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7438969898733405239",
                              "secUid": "MS4wLjABAAAAHrPdcmOR158hjBDARhWeVXL36u-vVGVWtIv4sXC9djhb_RH8KQ8am13GmrWozQ8O"
                            }
                          },
                          {
                            "id": "7587820434877137695",
                            "text": "Holy moly! The best commercial! 🔥🔥🔥🔥",
                            "createdAt": "2025-12-25T15:39:39.000Z",
                            "likes": 263,
                            "replyCount": 1,
                            "language": "en",
                            "author": {
                              "handle": "leobenz74",
                              "displayName": "LeoBenz74",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/95271ec1ffdb3f120d967fe3c7978e01~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=91780a33&x-expires=1779087600&x-signature=R9aBxzyoV9JKgzGjjnv3CRFzuO4%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6811167406448296965",
                              "secUid": "MS4wLjABAAAAbxeNlS4ISo1JY3mq0qAg_WG-Ju9RrbMx0abQTmIPJLXQ8HsHp9M0RuOcUwFYxeej"
                            }
                          },
                          {
                            "id": "7587829762384773919",
                            "text": "It’s a Caitlin Clark Christmas ❤❤❤",
                            "createdAt": "2025-12-25T16:15:44.000Z",
                            "likes": 18,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "brbn4104",
                              "displayName": "Brbn4104",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8017813134a1a620986a9a9abda0540c~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=fd5c9784&x-expires=1779087600&x-signature=COdb0miNh59Lpw8h%2FuW%2Fp01X84M%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7189282401608516651",
                              "secUid": "MS4wLjABAAAAMDL-7-MNuhjwUcnFlRHDVk2Q2X_i7T7BznivWGdskKhcokI3PHyHN-Xw02mKHo2c"
                            }
                          },
                          {
                            "id": "7589150364390867742",
                            "text": "I'm not a big sports fan; but Caitlin Clark is such a great role model and representation of women in sports.",
                            "createdAt": "2025-12-29T05:40:29.000Z",
                            "likes": 11,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "michaelodonnell9049",
                              "displayName": "Michael",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/ded527dd05c9b553a8cbd8a64e1c32df~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=271df59a&x-expires=1779087600&x-signature=FJIqfdujWwihsuiMYQ0yLKKhgRk%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7530789534755570702",
                              "secUid": "MS4wLjABAAAAfuW8SscO0ZUu6k03lz9rEt-ITklVYZ0-66YPnKnEpSUnhMxYAAwGp_t920K2RDga"
                            }
                          },
                          {
                            "id": "7588200146938102541",
                            "text": "I love Caitlin Clark. Caitlin Clark makes the best commercials❤",
                            "createdAt": "2025-12-26T16:12:57.000Z",
                            "likes": 10,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "alanys1109",
                              "displayName": "Alanys🏀❤️🇵🇷🦂",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/39387f25d9c3fc5dd0c267d50dabb039~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=e65b1c70&x-expires=1779087600&x-signature=eU%2F9xAme%2FX5W5RdwfdkBwDRSzso%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7321129206791783467",
                              "secUid": "MS4wLjABAAAAXLxV8W17bMtvSHDs_NYEr15_mFIssFjZNTC8FOk794MrVqFOtsBJ_oD1sJ2rg6TR"
                            }
                          },
                          {
                            "id": "7587924720188687159",
                            "text": "Need a shirt… From AnyWhere",
                            "createdAt": "2025-12-25T22:23:43.000Z",
                            "likes": 29,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "buendialuis",
                              "displayName": "Luis B",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7333781446626770949~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=e6c15cd8&x-expires=1779087600&x-signature=rWoG04o8aTvtF4uCqBmZ5ueorb4%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6804616197553718278",
                              "secUid": "MS4wLjABAAAAlxW8AqM1RQlf3_W8kzAQ5rahBYAIYknSiXFcTlJ7UcFar-3Ru9DoMevffe5UEotE"
                            }
                          },
                          {
                            "id": "7593754566325453590",
                            "text": "Nike can u make these into shoes",
                            "createdAt": "2026-01-10T15:26:20.000Z",
                            "likes": 2,
                            "replyCount": 1,
                            "language": "en",
                            "author": {
                              "handle": "user.unknown2031",
                              "displayName": "backup.2",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/4e07c2223255c8caa93bbd12e437b824~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=fc942126&x-expires=1779087600&x-signature=ZfbNQA5zkolNVz9KflMUDb5OSDg%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7466608156317140001",
                              "secUid": "MS4wLjABAAAA0kO2UEqDTbNKqdrE_xzVfDyfGV6NEYDHr8h2HdefXtJpeWCrhT3bkhjcE9xJCbii"
                            }
                          },
                          {
                            "id": "7587955044395041591",
                            "text": "Kids need good role models now more than ever. Our future depends on it. Keep going Caitlin Clark - Just Do It - From Anywhere 🏀🏆🙌",
                            "createdAt": "2025-12-26T00:21:19.000Z",
                            "likes": 16,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "sanelatravels",
                              "displayName": "SanelaTravels☀️",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fa15f3864061b29a88cbcf313825dfe7~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=9f73fa4e&x-expires=1779087600&x-signature=kehtWENbPM%2FdOmkH9JvqjsJ1sHg%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6909787399166264325",
                              "secUid": "MS4wLjABAAAAhizdVDa5tB2dL11xDm_1qvXy9Zc1OFgoOxll8utZBPUi8OsNbFmSL_18NDmGELTu"
                            }
                          },
                          {
                            "id": "7587969754880819980",
                            "text": "The face of women’s sports rn💕",
                            "createdAt": "2025-12-26T01:18:28.000Z",
                            "likes": 64,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "queenmocha876",
                              "displayName": "Lauren  ☕️🌓",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/b982fdd63000f22c3526fb6997607121~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=c11f2ca5&x-expires=1779087600&x-signature=2TizdbA03iFfM12Hqxjh50lKj8I%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "12240834",
                              "secUid": "MS4wLjABAAAA7NuOVLDVoLS4t3srA9BcozLUOX2xvv4AK_037wBzgLM"
                            }
                          },
                          {
                            "id": "7587912302393819918",
                            "text": "THE BEST TO EVER DO IT!!!!!! 🐐🔥",
                            "createdAt": "2025-12-25T21:35:26.000Z",
                            "likes": 11,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "jayyandabby",
                              "displayName": "Jayy & Abby",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/8cfce1091364848d11a606c9a6fa6335~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b2e1c2c4&x-expires=1779087600&x-signature=K5KwXyXP8iL8cyQzmxbXZ%2FL3jtk%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6887744687752217606",
                              "secUid": "MS4wLjABAAAAO5d7e4XSQgUMJW8Roi2qWB46w5z7klEGn-GT9urY9Rwdqzobsr681FcJvFaTjONz"
                            }
                          },
                          {
                            "id": "7587910832425173780",
                            "text": "She is the best 🔥🔥🔥",
                            "createdAt": "2025-12-25T21:29:52.000Z",
                            "likes": 8,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "oskarsanchez425",
                              "displayName": "Oscar",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/5c049058968a903e48044ca1c87c69ae~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=b4bfcd7c&x-expires=1779087600&x-signature=%2F8ph8SRDyTQey1CDx6i1phXKURY%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7157415367097418757",
                              "secUid": "MS4wLjABAAAAtKoWWXB0le-2HVUGaSJ8PrNa1J6AX5E0QWR0DcvvUj4snDsZ6zyGrjUkcTYFIhFt"
                            }
                          },
                          {
                            "id": "7595215788719178514",
                            "text": "I just want one of her CC jackets🥰🥰🥰🥰",
                            "createdAt": "2026-01-14T13:56:26.000Z",
                            "likes": 1,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "jeestylz",
                              "displayName": "👣newrow🌺",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/cb0b59318eee55697f8111be0a30cc44~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=471188e8&x-expires=1779087600&x-signature=7JR7EFrIkIOF5d%2FuiR14oE6UFOM%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7566435968405652487",
                              "secUid": "MS4wLjABAAAArjmodTr0xiPl9LkaJGg5SPylphEqG-UVKqxr7YF1R14YILuMXtzQJL33cegx7NZ3"
                            }
                          },
                          {
                            "id": "7587864899629482807",
                            "text": "Thank you for the Christmas present Nike admins!!🫶😝",
                            "createdAt": "2025-12-25T18:31:56.000Z",
                            "likes": 10,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "ashley_henderson02",
                              "displayName": "Ashley Henderson",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/bc790f7e94f636069ee38492c19cbdce~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=8b672ba7&x-expires=1779087600&x-signature=Vc2sQMb3ZKe7H6apV%2Fihb3jh5nE%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6651011106314371077",
                              "secUid": "MS4wLjABAAAAg_yxzz9eG7icOrmmmFKyoxC4bgdUXfNyz7wrGldaQjH4WyXdzirBiso8Rouge4Fe"
                            }
                          },
                          {
                            "id": "7587964794771800887",
                            "text": "She shows these young girls what it takes to win your dreams and be good at it♥️♥️♥️",
                            "createdAt": "2025-12-26T00:59:39.000Z",
                            "likes": 5,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "carolyn.ann.fulle",
                              "displayName": "Carolyn Ann Fuller",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/124d209ff3e24962cc5b31ec18a5b839~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=cddeda33&x-expires=1779087600&x-signature=Ci9lsQfkHCDh%2Fls1HMDI2%2Fhr0pI%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7297733106951308334",
                              "secUid": "MS4wLjABAAAAP1tPZjn2jUhm2wdYxtv8aiom4IZDJhCny0EUDjhRCbOJ5AGclfRfgb-GKbAmkQhx"
                            }
                          },
                          {
                            "id": "7590610773442872072",
                            "text": "Even from mexico 🇲🇽 she's a legit baddie! 👸🏀💪😎",
                            "createdAt": "2026-01-02T04:06:43.000Z",
                            "likes": 3,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "fkn_chucky",
                              "displayName": "Fknchucky",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-maliva-avt-0068/7325198348590252037~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=9345355b&x-expires=1779087600&x-signature=Ft%2FXwBiFCzIV2yI5j5f2xF0bFvc%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6834221214254236677",
                              "secUid": "MS4wLjABAAAAsNP32xL5O2lBYYcswkkvnT45JQQhTs8Q8C2RwBqYv_BQSnw2fmU0qYF-kTNcKV_S"
                            }
                          },
                          {
                            "id": "7596099922454446903",
                            "text": "[ステッカー] yo is that ma boi ken",
                            "createdAt": "2026-01-16T23:07:32.000Z",
                            "likes": 1,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "gia_spammmm00",
                              "displayName": "gia2",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/697a5d818ea59f8311f744885a44c91e~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=184d01f5&x-expires=1779087600&x-signature=qKM%2BZ2YNCWum3Obk1hyJDjSETak%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7448008704514130990",
                              "secUid": "MS4wLjABAAAAatuSx-j0Vs6a0jQ9UUc5fdwtWd-1ppm6c32t3lp6SayOslhrUA3c5aj4mN1B-nYE"
                            }
                          },
                          {
                            "id": "7594887153655300884",
                            "text": "She's on fire 🔥",
                            "createdAt": "2026-01-13T16:41:18.000Z",
                            "likes": 3,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "its.dinero107",
                              "displayName": "dinero89",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/3a28b6a325ca7b4834deeb9c42d18d1e~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=22b813ef&x-expires=1779087600&x-signature=ipFD%2FJy2L%2FP5bzi0Hq5uO%2FyuftU%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7594877980834497557",
                              "secUid": "MS4wLjABAAAAD2J8CRgeCMz2vMqgeGtSbTTLbcC_shcGyRULOKN6oV6KeN3zeVKaG9GkJqSX3xEG"
                            }
                          },
                          {
                            "id": "7587921047217292045",
                            "text": "can’t wait for the shoes 🫡🫡🫡",
                            "createdAt": "2025-12-25T22:09:35.000Z",
                            "likes": 18,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "grandeslay2233",
                              "displayName": "🤠😎",
                              "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7348808485800247339~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=15a96ba5&x-expires=1779087600&x-signature=Zyj5Hv1h7TqCG9%2BsnmDsCOp%2FK%2BA%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "6719683477941437445",
                              "secUid": "MS4wLjABAAAAG8tRddPqMg9awcTeTLZSYY1AvQFhB2XZNakuWfIdNk15B2fLFeTbcLDlXm38Pjmz"
                            }
                          },
                          {
                            "id": "7589196888169186056",
                            "text": "I wish I could get a free pair of mercurials🥺🥺",
                            "createdAt": "2025-12-29T08:40:09.000Z",
                            "likes": 3,
                            "replyCount": 0,
                            "language": "en",
                            "author": {
                              "handle": "m_10479",
                              "displayName": "m_’10",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-alisg-avt-0068/8022a0969bfe390847e98c6f07e176b0~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=2e90f0a7&x-expires=1779087600&x-signature=hAQ3je5ZhvMqonltlajEzeAgzTU%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast5",
                              "platformUserId": "7516421495943578625",
                              "secUid": "MS4wLjABAAAA7Uk58nfkHY-QHFXpp5Sx0aCG3B_kyIybp1SjQTud39vEYijI1_sCvz3w-XWrpHz4"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": "20",
                          "hasMore": true
                        },
                        "totalComments": 271
                      },
                      "meta": {
                        "requestId": "req_06b2ef8c-b3de-49e1-abaf-f3aadb6738f1",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "no_comments": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "comments": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalComments": 0
                      },
                      "meta": {
                        "requestId": "req_01example_nc",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "comments": [],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalComments": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "trimmed": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "comments": [
                          {
                            "id": "7596851467001119502",
                            "text": "I did my worst i’m sorry for what I have done.",
                            "createdAt": "2026-01-18T23:44:02.000Z",
                            "likes": 38959,
                            "replyCount": 64,
                            "language": "en",
                            "author": {
                              "handle": "sackofpotatoes1738",
                              "displayName": "Damiendunkr",
                              "avatarUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/c6e908fa865b66074942e946b289fa36~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=29f4bd06&x-expires=1779084000&x-signature=P69QvSJa5r3%2F6kVM3SixfjJhvLM%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=useast8",
                              "platformUserId": "7161501050990986286",
                              "secUid": "MS4wLjABAAAAaVGKr8d81HzWeMuNwEilHkNywTzpk78ZfkqEgFOszPzT5dpFHzrGTKwD0HHBECor"
                            }
                          }
                        ],
                        "page": {
                          "nextCursor": null,
                          "hasMore": false
                        },
                        "totalComments": 8
                      },
                      "meta": {
                        "requestId": "req_01example_tr",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/tiktok/videos/transcript": {
      "get": {
        "tags": [
          "TikTok"
        ],
        "summary": "Get TikTok video transcript",
        "description": "Get the spoken transcript for a TikTok video.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [
            {
              "queryParam": "useAiFallback",
              "credits": 10,
              "when": "boolean_true",
              "label": "AI transcript fallback"
            }
          ],
          "maxCredits": 11,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit base, +10 with `useAiFallback`. Up to 11 credits max.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 4096,
              "pattern": "^https:\\/\\/",
              "description": "Link to the TikTok video whose transcript should be returned."
            },
            "required": true,
            "description": "Link to the TikTok video whose transcript should be returned.",
            "name": "url",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 2,
              "maxLength": 2,
              "description": "Optional two-letter language code to request a transcript in a specific language when available."
            },
            "required": false,
            "description": "Optional two-letter language code to request a transcript in a specific language when available.",
            "name": "language",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "boolean"
                }
              ],
              "description": "When true, uses Social Fetch's AI fallback when a transcript is not otherwise available. Adds 10 credits on completed lookups (11 total with the base lookup)."
            },
            "required": false,
            "description": "When true, uses Social Fetch's AI fallback when a transcript is not otherwise available. Adds 10 credits on completed lookups (11 total with the base lookup).",
            "name": "useAiFallback",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Transcript lookup result.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the transcript lookup resolved to a TikTok video."
                        },
                        "video": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "id": {
                              "type": "string",
                              "minLength": 1,
                              "description": "TikTok video id."
                            },
                            "url": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public TikTok URL for the video."
                            }
                          },
                          "required": [
                            "id",
                            "url"
                          ],
                          "description": "Video identity when the lookup resolved."
                        },
                        "transcript": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "format": {
                              "type": "string",
                              "enum": [
                                "webvtt"
                              ],
                              "description": "Transcript format."
                            },
                            "content": {
                              "type": "string",
                              "description": "Raw transcript text."
                            }
                          },
                          "required": [
                            "format",
                            "content"
                          ],
                          "description": "Transcript content when one is available for the resolved video."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "video",
                        "transcript"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7596844935442189598",
                          "url": "https://www.tiktok.com/@mrbeast/video/7596844935442189598"
                        },
                        "transcript": {
                          "format": "webvtt",
                          "content": "WEBVTT\n\n\n00:00:00.060 --> 00:00:03.100\nThis is the world's largest LED floor.\n\n00:00:03.101 --> 00:00:09.433\nAnd now it's the world's largest green screen. Internet, do your worst."
                        }
                      },
                      "meta": {
                        "requestId": "req_31ab053d-8f69-4968-b138-1dc3cbf6492b",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "video": null,
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_nf",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "no_transcript": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7579680153173822742",
                          "url": "https://www.tiktok.com/@dadusqooo.p/video/7579680153173822742"
                        },
                        "transcript": null
                      },
                      "meta": {
                        "requestId": "req_01example_null",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "ai_fallback": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "video": {
                          "id": "7628301471137664278",
                          "url": "https://www.tiktok.com/@maddysonm00/video/7628301471137664278"
                        },
                        "transcript": {
                          "format": "webvtt",
                          "content": "WEBVTT\n\n00:00:00.040 --> 00:00:01.080\nhey I'm Maddie"
                        }
                      },
                      "meta": {
                        "requestId": "req_01example_ai",
                        "creditsCharged": 11,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request or the URL is not a video (for example a photo post).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "anyOf": [
                            {
                              "type": "string",
                              "enum": [
                                "bad_request"
                              ]
                            },
                            {
                              "type": "string",
                              "enum": [
                                "transcript_target_not_video"
                              ]
                            }
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "examples": {
                  "bad_request": {
                    "value": {
                      "error": {
                        "code": "bad_request",
                        "message": "Example message.",
                        "requestId": "req_01example"
                      }
                    }
                  },
                  "transcript_target_not_video": {
                    "value": {
                      "error": {
                        "code": "transcript_target_not_video",
                        "message": "Example message.",
                        "requestId": "req_01example"
                      }
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/threads/profiles/{handle}": {
      "get": {
        "tags": [
          "Threads"
        ],
        "summary": "Get Threads profile",
        "description": "Get a Threads profile for a creator or account.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 64,
              "description": "Threads handle to look up, with or without a leading @."
            },
            "required": true,
            "description": "Threads handle to look up, with or without a leading @.",
            "name": "handle",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Lookup result. Check `data.lookupStatus` for `found`, `private`, or `not_found`.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "private",
                            "not_found"
                          ],
                          "description": "Whether the profile was resolved."
                        },
                        "profile": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "platform": {
                              "type": "string",
                              "enum": [
                                "threads"
                              ],
                              "description": "Social platform for this profile."
                            },
                            "handle": {
                              "type": "string",
                              "description": "Threads username without the leading @."
                            },
                            "displayName": {
                              "type": "string",
                              "nullable": true,
                              "description": "Public display name shown on the Threads profile."
                            },
                            "bio": {
                              "type": "string",
                              "nullable": true,
                              "description": "Profile biography text."
                            },
                            "avatarUrl": {
                              "type": "string",
                              "nullable": true,
                              "description": "Best available avatar image URL for the profile."
                            },
                            "verified": {
                              "type": "boolean",
                              "description": "Whether the profile is marked as verified."
                            },
                            "profileUrl": {
                              "type": "string",
                              "minLength": 1,
                              "description": "Canonical public Threads profile URL."
                            },
                            "privateAccount": {
                              "type": "boolean",
                              "description": "Whether the Threads account is private."
                            },
                            "platformUserId": {
                              "type": "string",
                              "description": "Threads profile id as a string when available."
                            },
                            "threadsOnlyUser": {
                              "type": "boolean",
                              "description": "Whether the account is marked as a Threads-only profile."
                            },
                            "bioLinks": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "url": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Destination URL for the profile link."
                                  },
                                  "verified": {
                                    "type": "boolean",
                                    "description": "Whether the profile link is marked as verified."
                                  },
                                  "id": {
                                    "type": "string",
                                    "description": "Stable link identifier when available."
                                  }
                                },
                                "required": [
                                  "url"
                                ],
                                "description": "A link from the Threads profile bio."
                              },
                              "description": "Structured bio links when available."
                            },
                            "avatarVersions": {
                              "type": "array",
                              "items": {
                                "type": "object",
                                "properties": {
                                  "url": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Avatar image URL."
                                  },
                                  "width": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Avatar image width in pixels when available."
                                  },
                                  "height": {
                                    "type": "integer",
                                    "nullable": true,
                                    "minimum": 0,
                                    "description": "Avatar image height in pixels when available."
                                  }
                                },
                                "required": [
                                  "url"
                                ],
                                "description": "An available avatar image version."
                              },
                              "description": "Avatar image versions when available."
                            }
                          },
                          "required": [
                            "platform",
                            "handle",
                            "displayName",
                            "bio",
                            "avatarUrl",
                            "verified",
                            "profileUrl"
                          ],
                          "description": "Profile details when available."
                        },
                        "metrics": {
                          "type": "object",
                          "nullable": true,
                          "properties": {
                            "followers": {
                              "type": "integer",
                              "nullable": true,
                              "minimum": 0,
                              "description": "Follower count for the profile when available."
                            }
                          },
                          "required": [
                            "followers"
                          ],
                          "description": "Profile metrics when available."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "profile",
                        "metrics"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "profile": {
                          "platform": "threads",
                          "handle": "trendspider",
                          "displayName": "TrendSpider",
                          "bio": "Award-Winning 🏆 All-in-One Trading Platform.\nCharts, scans, backtests, alerts, AI tools, data & more.",
                          "avatarUrl": "https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHpdFYfZGu5h0OiHlzJ_bZnHHC5j5R8nLI63GQdjahgsFe1AzbgNz7Ct4gdkhlSnXo&_nc_ohc=1LvGIHAbtwEQ7kNvwHaczPB&_nc_gid=mRoo8yBlzYYPOAY8N8RPRA&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7iWb45XrbaQQWE_Iswo3dPUXO8gYjVpE5as1aeauT3wA&oe=6A0F4F95&_nc_sid=10d13b",
                          "verified": false,
                          "profileUrl": "https://www.threads.net/@trendspider",
                          "privateAccount": false,
                          "platformUserId": "63069450921",
                          "bioLinks": [
                            {
                              "url": "http://trendspider.com/",
                              "verified": false,
                              "id": "18254716222286461"
                            }
                          ],
                          "avatarVersions": [
                            {
                              "url": "https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg?stp=dst-jpg_s320x320_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHpdFYfZGu5h0OiHlzJ_bZnHHC5j5R8nLI63GQdjahgsFe1AzbgNz7Ct4gdkhlSnXo&_nc_ohc=1LvGIHAbtwEQ7kNvwHaczPB&_nc_gid=mRoo8yBlzYYPOAY8N8RPRA&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af6bf3DDREAXLx0m6PFUvgMIfQj_QztozBDAfjaOd4xUVQ&oe=6A0F4F95&_nc_sid=10d13b",
                              "width": 320,
                              "height": 320
                            },
                            {
                              "url": "https://scontent-phl2-1.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg?efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40MDAuYzIifQ&_nc_ht=scontent-phl2-1.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gHpdFYfZGu5h0OiHlzJ_bZnHHC5j5R8nLI63GQdjahgsFe1AzbgNz7Ct4gdkhlSnXo&_nc_ohc=1LvGIHAbtwEQ7kNvwHaczPB&_nc_gid=mRoo8yBlzYYPOAY8N8RPRA&edm=APs17CUBAAAA&ccb=7-5&oh=00_Af7BSrBlggnRz1Q8hJMpzdvyXFP6wqaoaLtV8K9DCdPEAQ&oe=6A0F4F95&_nc_sid=10d13b",
                              "width": 640,
                              "height": 640
                            }
                          ]
                        },
                        "metrics": {
                          "followers": 59051
                        }
                      },
                      "meta": {
                        "requestId": "req_265a34c2-4109-446b-9261-e5786ee25bb5",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "private": {
                    "value": {
                      "data": {
                        "lookupStatus": "private",
                        "profile": {
                          "platform": "threads",
                          "handle": "privatecreator",
                          "displayName": "Private Creator",
                          "bio": null,
                          "avatarUrl": "https://example.com/private-avatar.jpg",
                          "verified": false,
                          "profileUrl": "https://www.threads.net/@privatecreator",
                          "privateAccount": true,
                          "platformUserId": "123456789",
                          "threadsOnlyUser": true
                        },
                        "metrics": {
                          "followers": null
                        }
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  },
                  "not_found": {
                    "value": {
                      "data": {
                        "lookupStatus": "not_found",
                        "profile": null,
                        "metrics": null
                      },
                      "meta": {
                        "requestId": "req_01example",
                        "creditsCharged": 1,
                        "version": "v1"
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid handle or bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "bad_request"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "bad_request",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid API key",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "unauthorized"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "402": {
            "description": "Insufficient credits",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "insufficient_credits"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "insufficient_credits",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected or billing error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "internal_error"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "502": {
            "description": "Lookup could not be completed from the response (unexpected or invalid data).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "lookup_failed"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "lookup_failed",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          },
          "503": {
            "description": "Service temporarily unavailable; safe to retry with backoff.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "string",
                          "enum": [
                            "temporarily_unavailable"
                          ],
                          "description": "Machine-readable error code for the failed request."
                        },
                        "message": {
                          "type": "string",
                          "description": "Human-readable error message. May change over time; do not parse it. Use `error.code` and the HTTP status for programmatic handling."
                        },
                        "requestId": {
                          "type": "string",
                          "description": "Unique request identifier for tracing the failed API call."
                        },
                        "checkoutUrl": {
                          "type": "string",
                          "format": "uri",
                          "description": "Optional one-click checkout URL when credits are exhausted and a conversion offer is available."
                        }
                      },
                      "required": [
                        "code",
                        "message",
                        "requestId"
                      ],
                      "description": "Error details for the failed request."
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "description": "Standard error response envelope."
                },
                "example": {
                  "error": {
                    "code": "temporarily_unavailable",
                    "message": "Example message.",
                    "requestId": "req_01example"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v1/threads/profiles/{handle}/posts": {
      "get": {
        "tags": [
          "Threads"
        ],
        "summary": "List Threads profile posts",
        "description": "Get posts from a specific Threads profile.",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "x-socialfetch-agent-hints": {
          "emptyResults": "An empty `data.posts` array can occur with `lookupStatus: \"found\"` (no posts in this response) or `lookupStatus: \"not_found\"` (handle did not resolve).",
          "disambiguation": "Call `GET /v1/threads/profiles/{handle}` when you must distinguish `private` from `not_found` before interpreting an empty post list."
        },
        "x-socialfetch-pricing": {
          "version": 1,
          "baseCredits": 1,
          "surcharges": [],
          "maxCredits": 1,
          "normalizationFailureCredits": 1
        },
        "x-socialfetch-credits-pricing": "1 credit per successful request.",
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 64,
              "description": "Threads handle whose posts should be listed."
            },
            "required": true,
            "description": "Threads handle whose posts should be listed.",
            "name": "handle",
            "in": "path"
          },
          {
            "schema": {
              "type": "boolean",
              "description": "When true, returns a smaller response with fewer post fields when available."
            },
            "required": false,
            "description": "When true, returns a smaller response with fewer post fields when available.",
            "name": "trim",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Posts for the requested profile. Use `data.lookupStatus`: `not_found` when the handle cannot be resolved; `found` when the handle resolves (check `data.posts`—it may be empty).",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "properties": {
                        "lookupStatus": {
                          "type": "string",
                          "enum": [
                            "found",
                            "not_found"
                          ],
                          "description": "Whether the handle resolved for this listing."
                        },
                        "posts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Threads post identifier."
                              },
                              "shortcode": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Public short code used in the Threads post URL."
                              },
                              "url": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Canonical public URL for this Threads post."
                              },
                              "caption": {
                                "type": "string",
                                "nullable": true,
                                "description": "Caption text when available."
                              },
                              "takenAt": {
                                "type": "integer",
                                "description": "When the post was published (Unix epoch seconds)."
                              },
                              "author": {
                                "type": "object",
                                "properties": {
                                  "platform": {
                                    "type": "string",
                                    "enum": [
                                      "threads"
                                    ],
                                    "description": "Social platform."
                                  },
                                  "handle": {
                                    "type": "string",
                                    "minLength": 1,
                                    "description": "Threads username without a leading @."
                                  },
                                  "platformUserId": {
                                    "type": "string",
                                    "description": "Numeric profile identifier when available."
                                  },
                                  "avatarUrl": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Profile image URL when available."
                                  },
                                  "verified": {
                                    "type": "boolean",
                                    "description": "Whether the profile is verified."
                                  },
                                  "privateAccount": {
                                    "type": "boolean",
                                    "description": "Whether the account is private."
                                  }
                                },
                                "required": [
                                  "platform",
                                  "handle",
                                  "verified"
                                ],
                                "description": "Author snapshot when available."
                              },
                              "metrics": {
                                "type": "object",
                                "properties": {
                                  "likes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Like count when exposed."
                                  },
                                  "replies": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Reply count when exposed."
                                  },
                                  "reposts": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Native repost count when exposed."
                                  },
                                  "reshares": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Share or reshare count when exposed."
                                  },
                                  "quotes": {
                                    "type": "integer",
                                    "minimum": 0,
                                    "description": "Quote post count when exposed."
                                  }
                                },
                                "description": "Engagement metrics when available."
                              },
                              "media": {
                                "type": "object",
                                "properties": {
                                  "images": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "url": {
                                          "type": "string",
                                          "minLength": 1,
                                          "description": "Image URL."
                                        },
                                        "width": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Width in pixels when available."
                                        },
                                        "height": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Height in pixels when available."
                                        }
                                      },
                                      "required": [
                                        "url"
                                      ],
                                      "description": "An image rendition for Threads media."
                                    },
                                    "description": "Primary image variants when present."
                                  },
                                  "videos": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "url": {
                                          "type": "string",
                                          "minLength": 1,
                                          "description": "Video URL."
                                        },
                                        "width": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Width in pixels when available."
                                        },
                                        "height": {
                                          "type": "integer",
                                          "minimum": 0,
                                          "description": "Height in pixels when available."
                                        },
                                        "type": {
                                          "type": "string",
                                          "minLength": 1,
                                          "description": "Media type label when exposed."
                                        }
                                      },
                                      "required": [
                                        "url"
                                      ],
                                      "description": "A video rendition for Threads media."
                                    },
                                    "description": "Playable video variants when present."
                                  },
                                  "carousel": {
                                    "type": "array",
                                    "items": {
                                      "type": "object",
                                      "properties": {
                                        "images": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "url": {
                                                "type": "string",
                                                "minLength": 1,
                                                "description": "Image URL."
                                              },
                                              "width": {
                                                "type": "integer",
                                                "minimum": 0,
                                                "description": "Width in pixels when available."
                                              },
                                              "height": {
                                                "type": "integer",
                                                "minimum": 0,
                                                "description": "Height in pixels when available."
                                              }
                                            },
                                            "required": [
                                              "url"
                                            ],
                                            "description": "An image rendition for Threads media."
                                          },
                                          "description": "Images in this carousel cell when present."
                                        },
                                        "videos": {
                                          "type": "array",
                                          "items": {
                                            "type": "object",
                                            "properties": {
                                              "url": {
                                                "type": "string",
                                                "minLength": 1,
                                                "description": "Video URL."
                                              },
                                              "width": {
                                                "type": "integer",
                                                "minimum": 0,
                                                "description": "Width in pixels when available."
                                              },
                                              "height": {
                                                "type": "integer",
                                                "minimum": 0,
                                                "description": "Height in pixels when available."
                                              },
                                              "type": {
                                                "type": "string",
                                                "minLength": 1,
                                                "description": "Media type label when exposed."
                                              }
                                            },
                                            "required": [
                                              "url"
                                            ],
                                            "description": "A video rendition for Threads media."
                                          },
                                          "description": "Videos in this carousel cell when present."
                                        }
                                      },
                                      "description": "One carousel item when a Threads post contains multiple media."
                                    },
                                    "description": "Carousel media items when present."
                                  }
                                },
                                "description": "Media payloads when resolved."
                              },
                              "pinned": {
                                "type": "boolean",
                                "description": "Whether the post is pinned on the profile when known."
                              },
                              "reply": {
                                "type": "boolean",
                                "description": "Whether this post is a reply when known."
                              }
                            },
                            "required": [
                              "id",
                              "shortcode",
                              "url",
                              "caption",
                              "takenAt",
                              "metrics"
                            ],
                            "description": "A single Threads post in a profile listing."
                          },
                          "description": "Threads posts returned for this request."
                        }
                      },
                      "required": [
                        "lookupStatus",
                        "posts"
                      ],
                      "description": "Endpoint-specific response payload."
                    },
                    "meta": {
                      "type": "object",
                      "properties": {
                        "requestId": {
                          "type": "string",
                          "minLength": 1,
                          "description": "Unique request identifier for tracing this API call."
                        },
                        "creditsCharged": {
                          "type": "integer",
                          "minimum": 0,
                          "description": "Credits charged for this request."
                        },
                        "version": {
                          "type": "string",
                          "enum": [
                            "v1"
                          ],
                          "description": "Public API version that served the response."
                        }
                      },
                      "required": [
                        "requestId",
                        "creditsCharged",
                        "version"
                      ],
                      "description": "Metadata describing the request and billing outcome."
                    }
                  },
                  "required": [
                    "data",
                    "meta"
                  ],
                  "description": "Standard success response envelope."
                },
                "examples": {
                  "found": {
                    "value": {
                      "data": {
                        "lookupStatus": "found",
                        "posts": [
                          {
                            "id": "3835328749664056914_63069450921",
                            "shortcode": "DU50y1okbZS",
                            "url": "https://www.threads.com/@trendspider/post/DU50y1okbZS",
                            "caption": "Make Your Portfolio Great Again.\n\nSave up to 40% + 1 Month Sidekick Basic on us.\n🇺🇸 trendspider.com",
                            "takenAt": 1771426843,
                            "author": {
                              "platform": "threads",
                              "handle": "trendspider",
                              "platformUserId": "63069450921",
                              "avatarUrl": "https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40MDAuYzEifQ&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gGgjUh-IJzjV1NttJAd_VhimETnRnjritZB7Gd99bGNl7cXPmcayaL0bqXX100UWOA&_nc_ohc=1LvGIHAbtwEQ7kNvwHSqmea&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&edm=AA3DLpEBAAAA&ccb=7-5&oh=00_Af5cC-FgCSq2kNl_ln1-VYFmpjI3yrvyl1o-IHYUh1XOHA&oe=6A0F4F95&_nc_sid=d92198",
                              "verified": false,
                              "privateAccount": false
                            },
                            "metrics": {
                              "likes": 13,
                              "replies": 0,
                              "reposts": 0,
                              "reshares": 2,
                              "quotes": 0
                            },
                            "media": {
                              "images": [
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6P5Lo7bZaBKOSEgFKMxNsz6vT4QfODyjp2grJItA88cQ&oe=6A0F2389",
                                  "width": 1440,
                                  "height": 807
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s1080x1080_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6uUb_7JgpMDGViB2YdD1n7UKq3RwOey-tOC6bIz0d3kQ&oe=6A0F2389",
                                  "width": 1080,
                                  "height": 605
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4QxVz9CnxmKnaPfdB66Yw_BlpM4hEyhgNNvI07znMBng&oe=6A0F2389",
                                  "width": 720,
                                  "height": 404
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af5pi1K2eZaE6YL1-FhJlYlW64dfC8EmaBRUNfjd-Hsq0Q&oe=6A0F2389",
                                  "width": 640,
                                  "height": 359
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s480x480_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6JWFLWmvqYqceZOCMoqeTG2GH9oyI30jTaNKcYy9bobQ&oe=6A0F2389",
                                  "width": 480,
                                  "height": 269
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s320x320_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7blaG7ROWLxAPioxRuu6oZqT2AgfwVPML7J-Ny-CzYMg&oe=6A0F2389",
                                  "width": 320,
                                  "height": 179
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=dst-jpg_e35_s240x240_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4i9y15nnnPpaas5Jhf0hOq-fZU07TehPIEPDxXfDFWjg&oe=6A0F2389",
                                  "width": 240,
                                  "height": 135
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s807x807_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7R-o5H47KmoVykLzYXHyQ_rBO37NM-7N8bKfT6jQ1B2w&oe=6A0F2389",
                                  "width": 807,
                                  "height": 807
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s750x750_sh2.08_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af53L-329NCxJSf8PsPDnHgu3i-7tMXyQMBCERXrxUutKg&oe=6A0F2389",
                                  "width": 750,
                                  "height": 750
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s640x640_sh2.08_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4aHsQNz-qI7rYLmyxYpFLL5hLE8OB9v-QScPjyiWf_OA&oe=6A0F2389",
                                  "width": 640,
                                  "height": 640
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s480x480_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af4Sn0SmM30gFuYcTzxgU_c7UTOGxmyOBvFzeN2tEakVcg&oe=6A0F2389",
                                  "width": 480,
                                  "height": 480
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s320x320_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6xa3DjYwjsh97kY7cv0WsDTXmYb2y7vl9gK6Sqw9oD4Q&oe=6A0F2389",
                                  "width": 320,
                                  "height": 320
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s240x240_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af66CuZDHCbdnJvnJiVMd6D1ayTEuSxQeiuGSIoVlltMZw&oe=6A0F2389",
                                  "width": 240,
                                  "height": 240
                                },
                                {
                                  "url": "https://scontent-iad3-2.cdninstagram.com/v/t51.82787-15/638862133_17949450771098922_7194976215858200343_n.jpg?stp=c316.0.807.807a_dst-jpg_e35_s150x150_tt6&_nc_cat=103&ig_cache_key=MzgzNTMyODc0OTY2NDA1NjkxNA%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTQ0MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=U6xiwH3LvtkQ7kNvwG-C9wX&_nc_oc=Adoym9Ys5Cgt057yhckVJifTvxlSVmJtokxTcLeqr5YcbBYqPxjdmuPi8XqiG0y_I3o&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af7buescVM537kve-_9vRyv9BMGQQ6twqCGW1KuyQLlggw&oe=6A0F2389",
                                  "width": 150,
                                  "height": 150
                                }
                              ]
                            },
                            "pinned": true,
                            "reply": false
                          },
                          {
                            "id": "3898746735926060109_63069450921",
                            "shortcode": "DYbIX_4FiRN",
                            "url": "https://www.threads.com/@trendspider/post/DYbIX_4FiRN",
                            "caption": "Which company will ultimately benefit the most from Trump's trip to China? \n🧠 trendspider.cc/SidekickAI",
                            "takenAt": 1778986854,
                            "author": {
                              "platform": "threads",
                              "handle": "trendspider",
                              "platformUserId": "63069450921",
                              "avatarUrl": "https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby40MDAuYzEifQ&_nc_ht=scontent-iad3-2.cdninstagram.com&_nc_cat=111&_nc_oc=Q6cZ2gGgjUh-IJzjV1NttJAd_VhimETnRnjritZB7Gd99bGNl7cXPmcayaL0bqXX100UWOA&_nc_ohc=1LvGIHAbtwEQ7kNvwHSqmea&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&edm=AA3DLpEBAAAA&ccb=7-5&oh=00_Af5cC-FgCSq2kNl_ln1-VYFmpjI3yrvyl1o-IHYUh1XOHA&oe=6A0F4F95&_nc_sid=d92198",
                              "verified": false,
                              "privateAccount": false
                            },
                            "metrics": {
                              "likes": 5,
                              "replies": 3,
                              "reposts": 0,
                              "quotes": 0
                            },
                            "media": {
                              "images": [
                                {
                                  "url": "https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=107&ig_cache_key=Mzg5ODc0NjczNTkyNjA2MDEwOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=Bsll5v8k3HMQ7kNvwH1-7Uu&_nc_oc=AdpKAZ0vKKr6ihX4F2QnSIDSVJH9-n_h5j2YUScrQw2wGsxmeA4PXiN1d5Lo69ohEqc&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af512QUGcY03llP_2BkJu7LWcQzB1Ze6MKTwtvYOmetKEw&oe=6A0F26AC",
                                  "width": 1080,
                                  "height": 724
                                },
                                {
                                  "url": "https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/702334332_17966858910098922_6220141465456093433_n.jpg?stp=dst-jpg_e35_s720x720_tt6&_nc_cat=107&ig_cache_key=Mzg5ODc0NjczNTkyNjA2MDEwOQ%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6IkZFRUQueHBpZHMuMTA4MC5zZHIucmVndWxhcl9waG90by5DMyJ9&_nc_ohc=Bsll5v8k3HMQ7kNvwH1-7Uu&_nc_oc=AdpKAZ0vKKr6ihX4F2QnSIDSVJH9-n_h5j2YUScrQw2wGsxmeA4PXiN1d5Lo69ohEqc&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-iad6-1.cdninstagram.com&_nc_gid=ImHQfxqwOE9YTQOjvTIWRA&_nc_ss=7a22e&oh=00_Af6Hv51n8rBq1P3xcIyl738wflK4E-OMvijs0ees_49mSg&oe=6A0F26AC",
                                  "width": 720,
                                  "height": 483
                                },
                                {
                                  "url": "https://scontent-iad6-1.cdninstagram.com/v/t51.82787-15/70